*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg: #F4F7F1;
  --bg-card: #fff;
  --bg-accent: #EBF1E6;
  --bg-accent-deep: #DDE8D5;
  --bg-mint: #9BD4A8;
  --bg-pill: #ECF1E6;
  --border: #BBCFB8;
  --border-accent: #6B9E72;
  --border-light: #DDE6D6;
  --border-input: #C5D6C0;
  --text-heading: #2D4A34;
  --text-body: #4A5B4A;
  --text-muted: #8A9A88;
  --text-nav: #3A4F3A;
  --text-link: #3D7A48;
  --text-cta: #264D2E;
  --green-primary: #7EC08E;
  --green-dark: #5A8A5E;
  --green-shadow: #B3D4B3;
  --green-deep: #4D8C56;
  --green-deeper: #3B6E42;
  --green-stat: #3D7A48;
  --green-check: #5DA66A;
  --amber: #C6A059;
  --amber-bg: #FCF3E0;
  --blue: #6C9CBD;
  --blue-bg: #E7F1F8;
  --radius-sm: 8px;
  --radius-md: 13px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --shadow: 6px 6px 0 rgba(90,138,94,.10);
  --shadow-accent: 6px 6px 0 #B3D4B3;
  --shadow-soft: 3px 3px 0 #B3D4B3;
  --font-display: 'Fustat', sans-serif;
  --font-body: 'Fustat', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 150px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection { background: var(--bg-mint); color: var(--text-cta); }

a { text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--text-link); }

.container { max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) !important;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .25s; }


/* NAV */
.nav { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { display: inline-flex; width: 38px; height: 38px; border-radius: 11px; background: var(--bg-mint); border: 2px solid var(--border-accent); align-items: center; justify-content: center; flex: none; }
.nav-name { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--text-heading); }
.nav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-primary); display: inline-block; position: relative; top: -2px; }
.nav-links { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav-link { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--text-nav); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-cta); background: var(--green-primary); border: 2px solid var(--border-accent); border-radius: var(--radius-md); padding: 9px 18px; box-shadow: var(--shadow-soft); transition: transform .12s ease, box-shadow .12s ease; cursor: pointer; }
.btn-primary:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--green-shadow); color: var(--text-cta); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-heading); background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-md); padding: 9px 18px; box-shadow: 3px 3px 0 rgba(107,174,137,.15); transition: transform .12s ease, box-shadow .12s ease; cursor: pointer; }
.btn-outline:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 rgba(107,174,137,.22); }
.btn-lg { font-size: 16px; padding: 13px 24px; border-radius: 14px; }
.btn-cta-dark { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: #fff; background: var(--green-deep); border: 2px solid var(--green-deeper); border-radius: 15px; padding: 14px 30px; box-shadow: 3px 3px 0 var(--green-deeper); transition: transform .12s ease, box-shadow .12s ease; cursor: pointer; }
.btn-cta-dark:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--green-deeper); color: #fff; }

/* HERO */
.hero { padding: 34px 0 68px; display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 52px; align-items: center; }
.hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5vw, 54px); line-height: 1.08; margin: 0 0 18px; color: var(--text-heading); letter-spacing: -0.02em; }
.hero-title span { 
  background: linear-gradient(90deg, var(--green-check) 0%, var(--green-check) 40%, #C4E3CA 50%, var(--green-check) 60%, var(--green-check) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero-sub { font-size: 17px; line-height: 1.6; margin: 0 0 28px; color: var(--text-body); max-width: 520px; font-weight: 400; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* Mock Window */
.mock-window { position: relative; }
.mock-frame { border: 2px solid #92BF96; border-radius: 16px; background: #fff; box-shadow: 10px 10px 0 rgba(107,174,137,.14); overflow: hidden; }
.mock-titlebar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--bg-accent); border-bottom: 2px solid #BBCFB8; }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-dot.red { background: #F4B0A4; border: 1.5px solid #D89A8E; }
.mock-dot.yellow { background: #F5DFA0; border: 1.5px solid #D8C084; }
.mock-dot.green { background: var(--bg-mint); border: 1.5px solid #6BA872; }
.mock-url { margin-left: 8px; font-family: var(--font-body); font-size: 12px; color: #6C7D71; background: #fff; border: 1.5px solid var(--border-input); border-radius: 8px; padding: 4px 12px; }
.mock-body { display: flex; min-height: 300px; }
.mock-sidebar { width: 56px; border-right: 2px solid #EDF2ED; padding: 14px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; background: #FBFDFA; }
.mock-sidebar-icon { border-radius: 7px; }
.mock-content { flex: 1; padding: 18px 20px; }
.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-row { display: flex; align-items: center; gap: 11px; border: 1.5px solid #E7EDE7; border-radius: 12px; padding: 11px 13px; margin-bottom: 10px; }
.mock-row-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex: none; }
.mock-row-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #33463A; }
.mock-row-sub { font-size: 12px; color: var(--text-muted); }
.mock-tag { font-family: var(--font-body); font-weight: 600; font-size: 10px; color: var(--green-stat); background: #E2EEE2; border-radius: 6px; padding: 3px 8px; }

/* Mascot Float */
.mascot-float { position: absolute; bottom: 14px; right: 14px; display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 2; }
.mascot-circle { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-mint); border: 2px solid var(--border-accent); display: flex; align-items: center; justify-content: center; box-shadow: 3px 3px 0 rgba(107,174,137,.12); }
.stat-float { position: absolute; bottom: -22px; left: -16px; display: flex; align-items: center; gap: 9px; background: #fff; border: 2px solid #92BF96; border-radius: 13px; padding: 9px 13px; box-shadow: 4px 4px 0 rgba(107,174,137,.14); }
.stat-float-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-accent-deep); display: flex; align-items: center; justify-content: center; flex: none; }
.stat-float-value { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-heading); line-height: 1; }
.stat-float-sub { font-size: 11px; color: var(--text-muted); }

/* Trust Strip */
.trust-strip { border-top: 2px solid var(--border-light); border-bottom: 2px solid var(--border-light); background: #fff; }
.trust-inner { padding: 22px 0; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--text-muted); }
.trust-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trust-tag { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--text-nav); background: var(--bg-pill); border-radius: var(--radius-full); padding: 6px 15px; }

/* Section */
.section { padding: 72px 0; }
.section-label { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--green-stat); margin-bottom: 10px; letter-spacing: .04em; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 42px); margin: 0 0 12px; color: var(--text-heading); letter-spacing: -0.01em; }
.section-sub { font-size: 17px; line-height: 1.6; margin: 0; color: var(--text-body); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.step-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow); transition: box-shadow .25s ease, border-color .25s ease; }
.step-card:hover { box-shadow: 6px 6px 0 rgba(107,174,137,.18); border-color: var(--border-accent); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.step-icon { width: 48px; height: 48px; border-radius: 13px; background: var(--bg-accent); border: 2px solid #AACFAA; display: flex; align-items: center; justify-content: center; }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: #DCE7D6; }
.step-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0 0 8px; color: var(--text-heading); }
.step-desc { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-body); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature-card { background: var(--bg-accent); border: 2px solid var(--border); border-radius: 20px; padding: 24px; transition: box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { box-shadow: 6px 6px 0 rgba(107,174,137,.16); border-color: var(--border-accent); }
.feature-icon { display: inline-flex; width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 2px solid #AACFAA; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 7px; color: var(--text-heading); }
.feature-desc { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-body); }

/* Stats Band */
.stats-band { background: var(--bg-accent-deep); border-top: 2px solid #BBCFB8; border-bottom: 2px solid #BBCFB8; }
.stats-grid { padding: 44px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; text-align: center; }
.stat-value { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--green-stat); line-height: 1; }
.stat-label { font-size: 14px; color: var(--text-body); margin-top: 6px; }

/* Testimonial (Mac Window) */
.mac-window { max-width: 1080px; margin: 0 auto; background: #fff; border: 2px solid #92BF96; border-radius: 16px; box-shadow: 10px 10px 0 rgba(107,174,137,.14); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s ease; }
.mac-window:hover { box-shadow: 12px 12px 0 rgba(107,174,137,.18); }
.mac-header { background: var(--bg-accent); border-bottom: 2px solid #BBCFB8; padding: 11px 14px; display: flex; align-items: center; gap: 7px; }
.mac-dots { display: flex; gap: 7px; }
.mac-dot { width: 11px; height: 11px; border-radius: 50%; }
.mac-dot.red { background: #F4B0A4; border: 1.5px solid #D89A8E; }
.mac-dot.yellow { background: #F5DFA0; border: 1.5px solid #D8C084; }
.mac-dot.green { background: var(--bg-mint); border: 1.5px solid #6BA872; }
.mac-url { margin-left: 8px; font-family: var(--font-body); font-size: 12px; color: #6C7D71; background: #fff; border: 1.5px solid var(--border-input); border-radius: 8px; padding: 4px 12px; }

.mac-body { padding: 40px 30px; position: relative; background: #F8FAF8; }
.testimonial-slider { position: relative; min-height: 250px; width: 100%; }

.testimonial-group { position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; }
.testimonial-group.active { opacity: 1; visibility: visible; }

.testimonial-card { background: #fff; border: 1.5px solid #EDF2ED; border-radius: 12px; padding: 24px; box-shadow: 0 4px 14px rgba(0,0,0,0.03); display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.testimonial-author { display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-bottom: 16px; }
.testimonial-avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; background: #C7E7D3; border: 2px solid #92BF96; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--green-stat); }
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--text-heading); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

.testimonial-text { font-family: var(--font-body); font-weight: 400; font-size: 15px; line-height: 1.55; margin: 0; color: var(--text-heading); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; align-items: start; }
.pricing-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.pricing-card:hover { transform: translateY(-3px); box-shadow: 8px 8px 0 rgba(107,174,137,.14); }
.pricing-card.featured { border-color: var(--border-accent); box-shadow: var(--shadow-accent); position: relative; }
.pricing-badge { position: absolute; top: -13px; left: 26px; font-family: var(--font-display); font-weight: 600; font-size: 12px; color: var(--text-cta); background: var(--bg-mint); border: 2px solid var(--border-accent); border-radius: var(--radius-full); padding: 4px 12px; }
.pricing-name { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--text-heading); margin-bottom: 6px; }
.pricing-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 22px; }
.pricing-amount { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--text-heading); line-height: 1; }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.pricing-feature { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-nav); }

/* CTA Final */
.cta-section { padding: 0 0 72px; }
.cta-box { background: var(--bg-mint); border: 2px solid var(--border-accent); border-radius: var(--radius-xl); padding: 56px 40px; text-align: center; box-shadow: 8px 8px 0 #C7E7D3; }
.cta-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; color: var(--text-cta); letter-spacing: -0.01em; }
.cta-sub { font-size: 17px; line-height: 1.6; margin: 0 auto 28px; color: var(--text-body); max-width: 520px; }

/* Lead Form */
.lead-form { max-width: 600px; margin: 0 auto; background: #ffffff; padding: 32px; border-radius: var(--radius-lg); border: 2px solid var(--border-accent); box-shadow: 4px 4px 0 rgba(107, 174, 137, 0.15); text-align: left; }
.lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; }
.form-input { font-family: var(--font-body); font-size: 15px; padding: 14px 16px; border-radius: var(--radius-md); border: 2px solid var(--border); background: var(--bg-body); color: var(--text-heading); transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; }
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--green-primary); background: #ffffff; box-shadow: 0 0 0 3px rgba(107, 174, 137, 0.15); }
@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-feedback { font-size: 14px; font-weight: 500; margin-bottom: 16px; text-align: center; min-height: 20px; display: none; }
.form-feedback.error { color: #d32f2f; display: block; animation: slideDownFade 0.5s ease forwards; }
.form-feedback.success { color: var(--green-primary); display: block; animation: slideDownFade 0.5s ease forwards; }
.lead-form .btn-cta-dark { width: 100%; border: none; font-size: 16px; padding: 14px; }
.btn-cta-dark:disabled { opacity: 0.6; cursor: not-allowed; }
.form-group { position: relative; }
.form-input.invalid { border-color: #D89A8E; background-color: #FDF5F3; }
.custom-tooltip { position: absolute; left: 0; background: #FDF5F3; color: #9A3927; border: 1.5px solid #D89A8E; padding: 6px 12px; border-radius: 8px; font-size: 13px; font-family: var(--font-body); font-weight: 600; box-shadow: 0 4px 12px rgba(216,154,142,0.15); z-index: 10; display: flex; align-items: center; gap: 6px; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; }

.custom-tooltip.bottom { top: 100%; bottom: auto; margin-top: 6px; margin-bottom: 0; transform: translateY(-5px); }
.custom-tooltip.bottom.show { opacity: 1; transform: translateY(0); }
.custom-tooltip.bottom::before { content: ""; position: absolute; top: -5px; left: 16px; border-width: 0 5px 5px 5px; border-style: solid; border-color: transparent transparent #D89A8E transparent; }
.custom-tooltip.bottom::after { content: ""; position: absolute; top: -3.5px; left: 16.5px; border-width: 0 4.5px 4.5px 4.5px; border-style: solid; border-color: transparent transparent #FDF5F3 transparent; }

.custom-tooltip.top { bottom: 100%; top: auto; margin-bottom: 8px; margin-top: 0; transform: translateY(5px); }
.custom-tooltip.top.show { opacity: 1; transform: translateY(0); }
.custom-tooltip.top::before { content: ""; position: absolute; bottom: -5px; left: 16px; border-width: 5px 5px 0 5px; border-style: solid; border-color: #D89A8E transparent transparent transparent; }
.custom-tooltip.top::after { content: ""; position: absolute; bottom: -3.5px; left: 16.5px; border-width: 4.5px 4.5px 0 4.5px; border-style: solid; border-color: #FDF5F3 transparent transparent transparent; }

/* Footer */
.footer { border-top: 2px solid var(--border-light); background: #fff; }
.footer-main { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding: 60px 0; }
.footer-brand p { color: var(--text-nav); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }

.footer-brand-row { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-logo { display: inline-flex; width: 32px; height: 32px; border-radius: 9px; background: var(--bg-mint); border: 2px solid var(--border-accent); align-items: center; justify-content: center; flex: none; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-heading); }
.footer-desc { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col-title { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text-heading); margin-bottom: 2px; }
.footer-col a { font-size: 14px; color: var(--text-body); }
.footer-bottom { border-top: 1px solid #EDF2ED; }
.footer-bottom-inner { padding: 16px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--font-body); font-size: 12px; color: var(--text-muted); }

.check-svg { flex: none; }
.cacto-svg { display: block; }

/* Top Banner */
.top-banner { background: var(--bg-accent-deep); border-bottom: 1px solid var(--border); }
.top-banner-inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 16px; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--text-heading); }
.top-banner a { color: var(--text-heading); font-weight: 600; border-bottom: 1px solid var(--border-accent); padding-bottom: 1px; transition: border-color .2s ease; }
.top-banner a:hover { border-color: var(--text-heading); color: var(--text-heading); }

/* --- FAQ SECTION --- */
.faq-section { padding-top: 40px; padding-bottom: 60px; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; max-width: 1000px; margin: 0 auto; }
.faq-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; line-height: 1.1; letter-spacing: -0.03em; }
.faq-sub { font-family: var(--font-body); font-size: 17px; color: var(--text-body); line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn { width: 100%; display: flex; align-items: center; gap: 16px; padding: 24px 16px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--text-heading); transition: color 0.2s; }
.faq-btn:hover { color: var(--bg-primary); }
.faq-icon { font-size: 20px; font-weight: 400; color: var(--bg-primary); transition: transform 0.3s ease; width: 20px; display: inline-block; text-align: center; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-content { max-height: 300px; }
.faq-content p { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); line-height: 1.6; margin: 0; padding: 0 16px 24px 52px; opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease; }
.faq-item.active .faq-content p { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* --- SIMULATION CALCULATOR --- */
.simulation-band { padding: 80px 0; background-color: #244631; color: #E8F1E6; margin-top: 40px; position: relative; overflow: hidden; }
.simulation-band::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background-image: radial-gradient(circle, rgba(155, 212, 168, 0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  animation: bg-pan 40s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes bg-pan {
  0% { transform: translateY(0); }
  100% { transform: translateY(32px); }
}
.simulation-band .container { position: relative; z-index: 1; }
.sim-title { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: #FFFFFF; text-align: center; margin-bottom: 12px; letter-spacing: -0.03em; }
.sim-title span { color: #81C784; }
.sim-sub { font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: #9AA79E; text-align: center; max-width: 600px; margin: 0 auto 48px; }
.sim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; background: #234D36; padding: 32px; border-radius: 16px; border: 1px solid #2A5A40; box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.sim-panel { display: flex; flex-direction: column; justify-content: center; }
.sim-inputs { padding-right: 24px; border-right: 1px solid #2A5A40; }
.sim-outputs { padding-left: 12px; }
.sim-label { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #DBE5D8; margin-bottom: 12px; }
.sim-input-wrap { display: flex; align-items: center; gap: 16px; }
.sim-slider { flex: 1; -webkit-appearance: none; background: #1A3224; height: 6px; border-radius: 4px; outline: none; }
.sim-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #9BD4A8; cursor: pointer; transition: transform 0.1s; }
.sim-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.sim-value-display { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #FFFFFF; min-width: 100px; text-align: center; }
.sim-number-control { display: flex; align-items: center; background: #1A3224; border: 1px solid #2A5A40; border-radius: 8px; transition: border-color 0.2s; width: 100%; padding-right: 6px; }
.sim-number-control:focus-within { border-color: #9BD4A8; }
.sim-input-number { flex: 1; width: 100%; background: transparent; border: none; padding: 12px 16px; color: #FFFFFF; font-family: var(--font-display); font-size: 19px; font-weight: 600; outline: none; text-align: left; }
.sim-input-number.no-spin::-webkit-inner-spin-button, .sim-input-number.no-spin::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.sim-input-number.no-spin { -moz-appearance: textfield; }
.sim-num-spinners { display: flex; flex-direction: row; gap: 8px; }
.sim-num-btn { flex: none; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: #234D36; border: 1.5px solid #2A5A40; border-radius: 8px; color: #9BD4A8; font-size: 22px; font-family: var(--font-display); font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s; padding: 0; padding-top: 3px; margin: 0; line-height: 1; }
.sim-num-btn:hover { background: #2A5A40; color: #FFFFFF; }
.sim-output-box { background: #1A3224; border: 1px solid #2A5A40; padding: 20px; border-radius: 12px; }
.sim-output-box.sim-highlight { border-color: #5DA66A; background: #1C3829; }
.sim-out-label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #9AA79E; margin-bottom: 8px; }
.sim-out-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #FFFFFF; margin-bottom: 6px; }
.text-green { color: #9BD4A8 !important; }
.sim-out-sub { font-family: var(--font-body); font-size: 12px; color: #7A8B80; line-height: 1.4; }
.sim-footer { text-align: center; margin-top: 40px; }
.sim-footer .btn-primary { box-shadow: 3px 3px 0 #2A5A40; }
.sim-footer .btn-primary:hover { box-shadow: 4px 4px 0 #2A5A40; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.text-center { text-align: center; }


/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .mock-window { max-width: 500px; margin: 0 auto; }
  .nav-links { display: none; }
  .container { padding-left: 20px; padding-right: 20px; }
  .lead-form-grid { grid-template-columns: 1fr; }
  
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .sim-grid { grid-template-columns: 1fr; }
  .sim-inputs { padding-right: 0; border-right: none; padding-bottom: 24px; border-bottom: 1px solid #2A5A40; }
  .sim-outputs { padding-left: 0; padding-top: 8px; }
}
@media (max-width: 500px) {
  .hero { padding: 20px 0 40px; gap: 32px; }
  .hero-title { font-size: 32px; }
  .mascot-float, .stat-float { display: none; }
  .sim-title { font-size: 28px; }
  .faq-title { font-size: 26px; }

  /* Hero buttons: side by side, centered */
  .hero-buttons { flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { font-size: 14px; padding: 11px 16px; white-space: nowrap; }
  .hero-content, .hero .reveal { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  
  /* Mock window texts alignment */
  .mock-window { max-width: 100%; box-sizing: border-box; }
  .mock-content { padding: 16px 12px; }
  .mock-row { text-align: left; padding: 10px 8px; gap: 8px; }
  .mock-row > div { min-width: 0; }
  .mock-row-title, .mock-row-sub { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mock-row-title { font-size: 12px; }
  .mock-row-sub { font-size: 11px; }

  /* Section titles: no line break */
  .section-title { font-size: 24px; white-space: nowrap; }

  /* Testimonials: single column, proper height */
  .testimonial-group { grid-template-columns: 1fr; }
  .testimonial-slider { min-height: 520px; }
  .mac-window { max-width: 100%; }
  .mac-body { padding: 24px 16px; }
  .testimonial-card { padding: 18px; }
  .testimonial-text { font-size: 14px; }

  /* Calculator: swap + and - order */
  .sim-num-spinners { flex-direction: row-reverse; }

  /* Form inputs: full width, button no line break */
  .lead-form { padding: 20px 16px; }
  .lead-form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-input { padding: 12px 14px; font-size: 14px; }
  #btnSubmitLead { white-space: nowrap; font-size: 15px; padding: 14px 18px; }

  /* CTA section */
  .cta-box { padding: 36px 20px; }
  .cta-title { font-size: 26px; }
  .cta-sub { font-size: 15px; }

  /* Footer: more compact */
  .footer-main { padding: 32px 0; gap: 24px; }
  .footer-cols { gap: 32px; }
  .footer-bottom-inner { padding: 12px 0; }

  /* Pricing cards */
  .pricing-grid { grid-template-columns: 1fr; }
}
