*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green-deep:#0f3320; --green-mid:#1e6641; --green-fresh:#2d9e5f; --green-light:#a8d5b5;
    --gold:#c9a227; --gold-light:#f0d77b; --cream:#f8f4ec; --cream-dark:#ede8dc; --white:#fff;
    --text-dark:#0f1f14; --text-mid:#2d4a38; --text-muted:#6b8c74;
  }
  html { scroll-behavior: smooth; }
  body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--text-dark); overflow-x:hidden; }

  /* NAV */
  nav { position:fixed; top:0; left:0; right:0; z-index:100; display:flex; align-items:center; justify-content:space-between; padding:1.2rem 5%; background:rgba(15,51,32,0.92); backdrop-filter:blur(12px); border-bottom:1px solid rgba(201,162,39,0.2); transition:all .4s ease; }
  .nav-logo { font-family:'Playfair Display',serif; font-size:1.55rem; font-weight:900; color:var(--cream); letter-spacing:-.5px; }
  .nav-logo span { color:var(--gold); }
  .nav-links { display:flex; gap:2.4rem; list-style:none; }
  .nav-links a { color:rgba(248,244,236,0.8); text-decoration:none; font-size:.9rem; font-weight:500; letter-spacing:.3px; transition:color .3s; position:relative; }
  .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .3s; }
  .nav-links a:hover { color:var(--gold-light); }
  .nav-links a:hover::after { transform:scaleX(1); }
  .nav-cta { background:var(--gold); color:var(--green-deep); border:none; padding:.6rem 1.4rem; border-radius:50px; font-family:'DM Sans',sans-serif; font-weight:600; font-size:.9rem; cursor:pointer; transition:all .3s; text-decoration:none; }
  .nav-cta:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,162,39,0.4); }
  .nav-right { display:flex; align-items:center; gap:.8rem; }
  .menu-btn { display:none; background:none; border:1px solid rgba(248,244,236,0.25); color:var(--cream); width:42px; height:38px; border-radius:9px; cursor:pointer; align-items:center; justify-content:center; transition:all .3s; }
  .menu-btn:hover { border-color:var(--gold); color:var(--gold); }
  .menu-btn svg { width:22px; height:22px; }

  /* HERO */
  .hero { min-height:100vh; background:linear-gradient(160deg,var(--green-deep) 0%,#173d28 55%,#0a2518 100%); display:flex; flex-direction:column; justify-content:center; padding:8rem 5% 4rem; position:relative; overflow:hidden; }
  .hero::before { content:''; position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); opacity:.15; pointer-events:none; }
  .hero-circle { position:absolute; right:-10%; top:50%; transform:translateY(-50%); width:55vw; height:55vw; max-width:700px; max-height:700px; border-radius:50%; background:radial-gradient(circle,rgba(45,158,95,0.18) 0%,rgba(15,51,32,0) 70%); border:1px solid rgba(45,158,95,0.15); animation:pulse-ring 4s ease-in-out infinite; }
  .hero-circle-2 { position:absolute; right:-5%; top:50%; transform:translateY(-50%); width:42vw; height:42vw; max-width:530px; max-height:530px; border-radius:50%; border:1px solid rgba(201,162,39,0.12); animation:pulse-ring 4s ease-in-out infinite 1s; }
  @keyframes pulse-ring { 0%,100%{transform:translateY(-50%) scale(1);opacity:.6;} 50%{transform:translateY(-50%) scale(1.04);opacity:1;} }
  /* NextGen "growth" signature: swaying blades, green base to gold tips */
  .growth-row { position:absolute; bottom:0; left:0; right:0; height:130px; display:flex; align-items:flex-end; justify-content:center; overflow:hidden; pointer-events:none; z-index:1; opacity:.9; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
  .gblade { width:5px; margin:0 1.5px; border-radius:4px 4px 0 0; background:linear-gradient(to top,var(--green-deep) 0%,var(--green-fresh) 55%,var(--gold-light) 100%); transform-origin:bottom center; animation:gsway var(--dur,3s) ease-in-out infinite var(--delay,0s); }
  @keyframes gsway { 0%,100%{transform:rotate(var(--r1,-5deg)) scaleY(1);} 50%{transform:rotate(var(--r2,5deg)) scaleY(1.05);} }

  .hero-content { position:relative; z-index:2; max-width:700px; }
  .hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(201,162,39,0.12); border:1px solid rgba(201,162,39,0.35); color:var(--gold-light); font-size:.78rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; padding:.4rem 1rem; border-radius:50px; margin-bottom:1.8rem; animation:fade-up .8s ease both; }
  .badge-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); animation:blink 1.5s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }
  .hero h1 { font-family:'Playfair Display',serif; font-size:clamp(3rem,6vw,5.3rem); font-weight:900; line-height:1.05; color:var(--cream); margin-bottom:1.5rem; animation:fade-up .8s ease .15s both; }
  .hero h1 em { font-style:italic; color:var(--gold); display:block; }
  .hero p { font-size:1.15rem; color:rgba(248,244,236,0.72); line-height:1.7; max-width:540px; margin-bottom:2.5rem; animation:fade-up .8s ease .3s both; }
  .hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; animation:fade-up .8s ease .45s both; }
  .btn-primary { background:var(--gold); color:var(--green-deep); border:none; padding:.9rem 2rem; border-radius:50px; font-family:'DM Sans',sans-serif; font-weight:600; font-size:1rem; cursor:pointer; transition:all .3s; text-decoration:none; display:inline-block; box-shadow:0 4px 20px rgba(201,162,39,0.35); }
  .btn-primary:hover { background:var(--gold-light); transform:translateY(-3px); box-shadow:0 12px 32px rgba(201,162,39,0.5); }
  .btn-outline { background:transparent; color:var(--cream); border:1px solid rgba(248,244,236,0.35); padding:.9rem 2rem; border-radius:50px; font-family:'DM Sans',sans-serif; font-weight:500; font-size:1rem; cursor:pointer; transition:all .3s; text-decoration:none; display:inline-block; }
  .btn-outline:hover { background:rgba(248,244,236,0.08); border-color:rgba(248,244,236,0.6); transform:translateY(-3px); }
  .hero-stats { display:flex; gap:3rem; margin-top:4rem; animation:fade-up .8s ease .6s both; flex-wrap:wrap; }
  .stat-item { border-left:2px solid var(--gold); padding-left:1rem; }
  .stat-num { font-family:'Playfair Display',serif; font-size:2.1rem; font-weight:700; color:var(--cream); line-height:1; }
  .stat-label { font-size:.82rem; color:rgba(248,244,236,0.55); margin-top:6px; max-width:170px; }
  @keyframes fade-up { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }

  /* SECTION SHARED */
  section { padding:6rem 5%; }
  .section-tag { font-size:.75rem; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:var(--green-fresh); display:flex; align-items:center; gap:10px; margin-bottom:1rem; }
  .section-tag::before { content:''; display:inline-block; width:28px; height:2px; background:var(--green-fresh); }
  .section-title { font-family:'Playfair Display',serif; font-size:clamp(2.1rem,4vw,3.2rem); font-weight:700; line-height:1.15; color:var(--green-deep); margin-bottom:1.2rem; }
  .section-title em { font-style:italic; color:var(--green-fresh); }
  .section-sub { font-size:1.05rem; color:var(--text-muted); line-height:1.7; max-width:540px; margin-bottom:3rem; }

  /* SERVICES */
  .services { background:var(--cream); }
  .services-header { text-align:center; }
  .services-header .section-tag { justify-content:center; }
  .services-header .section-sub { margin:0 auto 3.5rem; }
  .services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.5rem; max-width:1180px; margin:0 auto; }
  .service-card { background:var(--white); border-radius:20px; padding:2.5rem 2rem; border:1px solid var(--cream-dark); transition:all .4s cubic-bezier(.25,.8,.25,1); position:relative; overflow:hidden; opacity:0; transform:translateY(40px); }
  .service-card.visible { animation:card-in .6s ease both; }
  @keyframes card-in { to{opacity:1;transform:translateY(0);} }
  .service-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--green-fresh),var(--gold)); transform:scaleX(0); transition:transform .4s; }
  .service-card:hover { transform:translateY(-8px); box-shadow:0 20px 60px rgba(15,51,32,0.1); border-color:var(--green-light); }
  .service-card:hover::after { transform:scaleX(1); }
  .service-icon { width:56px; height:56px; border-radius:14px; background:linear-gradient(135deg,var(--green-mid),var(--green-fresh)); display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem; box-shadow:0 8px 24px rgba(30,102,65,0.25); }
  .service-icon svg { width:27px; height:27px; stroke:#fff; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
  .service-card h3 { font-family:'Playfair Display',serif; font-size:1.35rem; font-weight:700; color:var(--green-deep); margin-bottom:.75rem; }
  .service-card p { font-size:.95rem; color:var(--text-muted); line-height:1.7; }
  .service-price { display:inline-block; margin-top:1.5rem; font-weight:700; color:var(--green-fresh); font-size:.9rem; background:rgba(45,158,95,0.08); padding:4px 12px; border-radius:50px; }

  /* WHY US */
  .why-us { background:var(--green-deep); display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; padding:6rem 5%; }
  .why-image-wrap { position:relative; }
  .why-image-blob { width:100%; aspect-ratio:4/5; background:linear-gradient(145deg,#1e6641,#0a2518); border-radius:40% 60% 55% 45% / 50% 40% 60% 50%; position:relative; overflow:hidden; animation:morph 8s ease-in-out infinite; }
  @keyframes morph { 0%,100%{border-radius:40% 60% 55% 45% / 50% 40% 60% 50%;} 33%{border-radius:55% 45% 40% 60% / 40% 55% 45% 60%;} 66%{border-radius:45% 55% 60% 40% / 60% 45% 55% 40%;} }
  .why-image-blob::before { content:'</>'; font-family:'DM Sans',sans-serif; font-weight:600; font-size:4.5rem; color:var(--gold-light); position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); animation:float 4s ease-in-out infinite; letter-spacing:-2px; }
  @keyframes float { 0%,100%{transform:translate(-50%,-50%) scale(1);} 50%{transform:translate(-50%,-56%) scale(1.05);} }
  .why-badge-float { position:absolute; bottom:-20px; right:-20px; background:var(--gold); border-radius:16px; padding:1.2rem 1.5rem; box-shadow:0 20px 48px rgba(201,162,39,0.4); animation:float 3s ease-in-out infinite 1.5s; }
  .why-badge-float .big { font-size:1.9rem; font-weight:900; color:var(--green-deep); font-family:'Playfair Display',serif; }
  .why-badge-float small { display:block; font-size:.8rem; color:var(--green-mid); font-weight:600; }
  .why-content .section-tag { color:var(--gold-light); }
  .why-content .section-tag::before { background:var(--gold-light); }
  .why-content .section-title { color:var(--cream); }
  .why-content .section-title em { color:var(--gold); }
  .why-content .section-sub { color:rgba(248,244,236,0.65); }
  .why-list { list-style:none; display:flex; flex-direction:column; gap:1.2rem; }
  .why-item { display:flex; align-items:flex-start; gap:1rem; padding:1.2rem; border-radius:14px; border:1px solid rgba(248,244,236,0.08); background:rgba(248,244,236,0.04); transition:all .3s; }
  .why-item:hover { background:rgba(248,244,236,0.08); border-color:rgba(201,162,39,0.3); }
  .why-check { width:28px; height:28px; border-radius:50%; background:rgba(201,162,39,0.15); border:1px solid rgba(201,162,39,0.4); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:.8rem; flex-shrink:0; margin-top:2px; }
  .why-item-text strong { display:block; color:var(--cream); font-size:.95rem; margin-bottom:3px; }
  .why-item-text span { color:rgba(248,244,236,0.55); font-size:.87rem; line-height:1.6; }

  /* ONBOARDING */
  .onboard { background:var(--cream-dark); }
  .onboard-grid { display:grid; grid-template-columns:1.05fr 1fr; gap:4rem; align-items:center; max-width:1150px; margin:0 auto; }
  .onboard-steps { display:flex; flex-direction:column; gap:1.4rem; margin-top:.5rem; }
  .onboard-step { display:flex; gap:1rem; align-items:flex-start; }
  .os-num { width:38px; height:38px; border-radius:50%; flex-shrink:0; background:var(--green-deep); color:var(--cream); font-family:'Playfair Display',serif; font-weight:700; display:flex; align-items:center; justify-content:center; font-size:1rem; box-shadow:0 6px 18px rgba(15,51,32,0.2); }
  .onboard-step strong { display:block; font-family:'Playfair Display',serif; font-size:1.12rem; color:var(--green-deep); margin-bottom:2px; }
  .onboard-step span { color:var(--text-muted); font-size:.92rem; line-height:1.6; }
  .boardroom { border-radius:22px; border:1px solid rgba(15,51,32,0.12); overflow:hidden; background:radial-gradient(120% 100% at 50% 0,rgba(45,158,95,0.18),transparent 58%),linear-gradient(160deg,#123524,#0a2518); box-shadow:0 24px 60px rgba(15,51,32,0.2); }
  .boardroom svg { display:block; width:100%; height:auto; }

  /* CLASSES */
  .classes { background:var(--cream); }
  .classes-list { max-width:880px; margin:0 auto; display:flex; flex-direction:column; gap:1rem; }
  .class-row { display:flex; align-items:center; gap:1.2rem; background:var(--white); border:1px solid var(--cream-dark); border-radius:16px; padding:1.2rem 1.6rem; transition:all .3s; }
  .class-row:hover { transform:translateX(4px); border-color:var(--green-light); box-shadow:0 12px 36px rgba(15,51,32,0.07); }
  .cl-num { width:40px; height:40px; border-radius:11px; flex-shrink:0; background:linear-gradient(135deg,var(--green-mid),var(--green-fresh)); color:#fff; font-family:'Playfair Display',serif; font-weight:700; display:flex; align-items:center; justify-content:center; }
  .cl-info { flex:1; }
  .cl-info strong { display:block; font-family:'Playfair Display',serif; font-size:1.12rem; color:var(--green-deep); }
  .cl-info span { color:var(--text-muted); font-size:.9rem; }
  .cl-price { font-family:'Playfair Display',serif; font-weight:900; font-size:1.4rem; color:var(--green-fresh); white-space:nowrap; }
  .cl-price small { font-family:'DM Sans',sans-serif; font-weight:500; font-size:.75rem; color:var(--text-muted); margin-left:2px; }

  /* PRICING */
  .pricing { background:var(--cream); }
  .pricing-header { text-align:center; }
  .pricing-header .section-tag { justify-content:center; }
  .pricing-header .section-sub { margin:0 auto 3.5rem; }
  .pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; max-width:980px; margin:0 auto; }
  .price-card { border-radius:24px; padding:2.5rem; border:1px solid var(--cream-dark); background:var(--white); transition:all .4s; position:relative; overflow:hidden; }
  .price-card.featured { background:var(--green-deep); border-color:transparent; box-shadow:0 24px 60px rgba(15,51,32,0.25); }
  .price-card:not(.featured):hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(15,51,32,0.1); }
  .price-card.featured:hover { transform:translateY(-6px); }
  .featured-badge { position:absolute; top:1.5rem; right:1.5rem; background:var(--gold); color:var(--green-deep); font-size:.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:4px 10px; border-radius:50px; }
  .price-label { font-size:.78rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); margin-bottom:.5rem; }
  .featured .price-label { color:rgba(248,244,236,0.55); }
  .price-amount { font-family:'Playfair Display',serif; font-size:3rem; font-weight:900; color:var(--green-deep); line-height:1; margin-bottom:.3rem; }
  .featured .price-amount { color:var(--cream); }
  .price-per { font-size:.85rem; color:var(--text-muted); margin-bottom:1.5rem; }
  .featured .price-per { color:rgba(248,244,236,0.55); }
  .price-divider { height:1px; background:var(--cream-dark); margin-bottom:1.5rem; }
  .featured .price-divider { background:rgba(248,244,236,0.1); }
  .price-features { list-style:none; display:flex; flex-direction:column; gap:.75rem; margin-bottom:2rem; }
  .price-features li { display:flex; align-items:flex-start; gap:.6rem; font-size:.92rem; color:var(--text-mid); line-height:1.5; }
  .featured .price-features li { color:rgba(248,244,236,0.8); }
  .price-features li::before { content:'✓'; color:var(--green-fresh); font-weight:700; font-size:.85rem; flex-shrink:0; }
  .featured .price-features li::before { color:var(--gold); }
  .btn-plan { width:100%; padding:.85rem; border-radius:50px; font-family:'DM Sans',sans-serif; font-size:.95rem; font-weight:600; cursor:pointer; transition:all .3s; border:none; }
  .btn-plan-outline { background:transparent; border:1.5px solid var(--green-mid); color:var(--green-mid); }
  .btn-plan-outline:hover { background:var(--green-mid); color:var(--white); }
  .btn-plan-gold { background:var(--gold); color:var(--green-deep); box-shadow:0 8px 24px rgba(201,162,39,0.4); }
  .btn-plan-gold:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 16px 36px rgba(201,162,39,0.5); }
  .price-note { text-align:center; margin:2.5rem auto 0; color:var(--text-muted); font-size:.95rem; max-width:640px; }
  .price-note strong { color:var(--green-deep); }

  /* PROMISE (repurposed) */
  .promise { background:var(--cream-dark); }
  .promise-header { text-align:center; }
  .promise-header .section-tag { justify-content:center; }
  .promise-header .section-sub { margin:0 auto 3.5rem; }
  .promise-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:1.5rem; max-width:1080px; margin:0 auto; }
  .promise-card { background:var(--white); border-radius:20px; padding:2.2rem; border:1px solid var(--cream-dark); transition:all .4s; opacity:0; transform:translateY(30px); }
  .promise-card.visible { animation:card-in .6s ease both; }
  .promise-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(15,51,32,0.08); }
  .promise-ic { width:48px; height:48px; border-radius:13px; background:rgba(201,162,39,0.12); border:1px solid rgba(201,162,39,0.4); display:flex; align-items:center; justify-content:center; color:var(--gold); margin-bottom:1.3rem; }
  .promise-ic svg { width:23px; height:23px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
  .promise-card h3 { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--green-deep); margin-bottom:.6rem; }
  .promise-card p { font-size:.95rem; color:var(--text-muted); line-height:1.7; }

  /* CTA BANNER */
  .cta-banner { background:linear-gradient(135deg,var(--gold) 0%,#e8b820 100%); padding:5rem 5%; text-align:center; position:relative; overflow:hidden; }
  .cta-banner::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
  .cta-banner h2 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,3rem); font-weight:900; color:var(--green-deep); margin-bottom:1rem; position:relative; }
  .cta-banner p { color:var(--green-mid); font-size:1.05rem; margin-bottom:2rem; position:relative; }
  .cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; position:relative; }
  .btn-dark { background:var(--green-deep); color:var(--cream); border:none; padding:1rem 2.2rem; border-radius:50px; font-family:'DM Sans',sans-serif; font-weight:600; font-size:1rem; cursor:pointer; transition:all .3s; text-decoration:none; display:inline-block; box-shadow:0 8px 32px rgba(15,51,32,0.3); }
  .btn-dark:hover { transform:translateY(-4px); box-shadow:0 20px 48px rgba(15,51,32,0.4); }
  .btn-dark.alt { background:transparent; color:var(--green-deep); border:1.5px solid rgba(15,31,20,0.5); box-shadow:none; }
  .btn-dark.alt:hover { background:rgba(15,51,32,0.08); }

  /* FOOTER */
  footer { background:var(--green-deep); padding:4rem 5% 2rem; color:rgba(248,244,236,0.7); }
  .footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(248,244,236,0.08); }
  .footer-brand .nav-logo { font-size:1.8rem; margin-bottom:1rem; display:block; }
  .footer-desc { font-size:.9rem; line-height:1.7; max-width:300px; }
  .footer-reg { font-size:.78rem; color:rgba(248,244,236,0.4); margin-top:1rem; line-height:1.6; }
  .footer-col h5 { font-size:.8rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold-light); margin-bottom:1.2rem; }
  .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.65rem; }
  .footer-col ul a { color:rgba(248,244,236,0.6); text-decoration:none; font-size:.9rem; transition:color .3s; }
  .footer-col ul a:hover { color:var(--gold-light); }
  .footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:2rem; font-size:.85rem; gap:1rem; flex-wrap:wrap; }
  .footer-bottom span { color:rgba(248,244,236,0.4); }
  .footer-socials { display:flex; gap:1rem; }
  .social-btn { width:36px; height:36px; border-radius:50%; border:1px solid rgba(248,244,236,0.15); display:flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:600; cursor:pointer; transition:all .3s; color:rgba(248,244,236,0.6); text-decoration:none; }
  .social-btn:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }

  .reveal { opacity:0; transform:translateY(40px); transition:all .7s cubic-bezier(.25,.8,.25,1); }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* ===== ESTIMATOR ===== */
  .estimator { background:var(--cream-dark); }
  .estimator-card { max-width:880px; margin:0 auto; background:var(--white); border:1px solid var(--cream-dark); border-radius:22px; padding:2.5rem; box-shadow:0 20px 50px rgba(15,51,32,0.08); }
  .est-group { margin-bottom:1.8rem; }
  .est-group h4 { font-family:'Playfair Display',serif; font-size:1.05rem; color:var(--green-deep); margin-bottom:.9rem; }
  .est-options { display:grid; grid-template-columns:repeat(auto-fit,minmax(165px,1fr)); gap:.7rem; }
  .est-opt { display:flex; align-items:center; gap:.5rem; border:1.5px solid var(--cream-dark); border-radius:12px; padding:.8rem 1rem; cursor:pointer; transition:all .25s; font-size:.9rem; color:var(--text-mid); user-select:none; }
  .est-opt:hover { border-color:var(--green-light); }
  .est-opt.active { border-color:var(--green-fresh); background:rgba(45,158,95,0.08); color:var(--green-deep); font-weight:600; }
  .est-opt .op-price { margin-left:auto; font-weight:700; color:var(--green-fresh); font-size:.82rem; white-space:nowrap; }
  .est-total { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1rem; margin-top:1.5rem; padding-top:1.5rem; border-top:2px solid var(--cream-dark); }
  .est-total-label { font-size:.78rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; }
  .est-total-amount { font-family:'Playfair Display',serif; font-size:2.6rem; font-weight:900; color:var(--green-deep); line-height:1; }
  .est-total-amount small { font-size:1rem; color:var(--text-muted); font-weight:400; }
  .est-monthly { font-size:.88rem; color:var(--text-muted); margin-top:5px; }
  .est-cta { background:var(--gold); color:var(--green-deep); border:none; padding:.9rem 1.8rem; border-radius:50px; font-family:'DM Sans',sans-serif; font-weight:600; font-size:.95rem; cursor:pointer; transition:all .3s; box-shadow:0 8px 24px rgba(201,162,39,0.35); }
  .est-cta:hover { background:var(--gold-light); transform:translateY(-2px); }

  /* ===== FAQ ===== */
  .faq { background:var(--cream); }
  .faq-wrap { max-width:760px; margin:0 auto; }
  .faq-item { border:1px solid var(--cream-dark); border-radius:14px; margin-bottom:.8rem; background:var(--white); overflow:hidden; }
  .faq-q { width:100%; text-align:left; background:none; border:none; padding:1.3rem 1.5rem; font-family:'Playfair Display',serif; font-size:1.06rem; font-weight:700; color:var(--green-deep); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
  .faq-ic { flex-shrink:0; width:24px; height:24px; border-radius:50%; border:1.5px solid var(--green-fresh); color:var(--green-fresh); display:flex; align-items:center; justify-content:center; font-size:1.05rem; transition:transform .3s; }
  .faq-item.open .faq-ic { transform:rotate(45deg); }
  .faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
  .faq-a p { padding:0 1.5rem 1.3rem; color:var(--text-muted); line-height:1.7; font-size:.94rem; }

  /* ===== CONTACT FORM ===== */
  .contact { background:var(--cream-dark); }
  .contact-header { text-align:center; }
  .contact-header .section-tag { justify-content:center; }
  .contact-header .section-sub { margin:0 auto 3rem; }
  .form-card { max-width:680px; margin:0 auto; background:var(--white); border:1px solid var(--cream-dark); border-radius:22px; padding:2.5rem; box-shadow:0 20px 50px rgba(15,51,32,0.08); }
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .form-field { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
  .form-field label { font-size:.82rem; font-weight:600; color:var(--text-mid); }
  .form-field input, .form-field select, .form-field textarea { font-family:'DM Sans',sans-serif; font-size:.95rem; padding:.8rem 1rem; border:1.5px solid var(--cream-dark); border-radius:11px; background:var(--cream); color:var(--text-dark); transition:border .25s; width:100%; }
  .form-field textarea { resize:vertical; min-height:90px; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline:none; border-color:var(--green-fresh); }
  .form-actions { display:flex; gap:.8rem; flex-wrap:wrap; margin-top:.5rem; }
  .btn-wa { background:#25D366; color:#fff; border:none; padding:.85rem 1.6rem; border-radius:50px; font-weight:600; font-size:.95rem; cursor:pointer; display:inline-flex; align-items:center; gap:.5rem; transition:all .3s; }
  .btn-wa:hover { background:#1ebe5b; transform:translateY(-2px); }
  .btn-email { background:var(--green-deep); color:var(--cream); border:none; padding:.85rem 1.6rem; border-radius:50px; font-weight:600; font-size:.95rem; cursor:pointer; transition:all .3s; }
  .btn-email:hover { transform:translateY(-2px); }
  .form-hint { font-size:.8rem; color:var(--text-muted); margin-top:.8rem; }

  /* ===== FLOATING BUTTONS + ASSISTANT ===== */
  .floats { position:fixed; right:20px; bottom:20px; z-index:200; display:flex; flex-direction:column; gap:12px; }
  .float-btn { width:56px; height:56px; border-radius:50%; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 28px rgba(0,0,0,0.25); transition:all .3s; }
  .float-btn:hover { transform:translateY(-3px) scale(1.05); }
  .float-wa { background:#25D366; color:#fff; }
  .float-chat { background:var(--green-deep); color:var(--gold-light); }
  .float-btn svg { width:27px; height:27px; }
  .assistant { position:fixed; right:20px; bottom:90px; width:360px; max-width:calc(100vw - 40px); height:520px; max-height:calc(100vh - 130px); background:var(--white); border:1px solid var(--cream-dark); border-radius:20px; box-shadow:0 30px 70px rgba(15,51,32,0.3); z-index:201; display:flex; flex-direction:column; overflow:hidden; opacity:0; transform:translateY(20px) scale(.96); pointer-events:none; transition:all .3s; }
  .assistant.open { opacity:1; transform:none; pointer-events:auto; }
  .as-head { background:var(--green-deep); color:var(--cream); padding:1.1rem 1.3rem; display:flex; align-items:center; gap:.7rem; }
  .as-dot { width:9px; height:9px; border-radius:50%; background:#3ddc84; box-shadow:0 0 0 3px rgba(61,220,132,0.25); }
  .as-head h4 { font-family:'Playfair Display',serif; font-size:1.05rem; font-weight:700; flex:1; }
  .as-close { background:none; border:none; color:rgba(248,244,236,0.7); cursor:pointer; font-size:1.4rem; line-height:1; }
  .as-body { flex:1; overflow-y:auto; padding:1.2rem; display:flex; flex-direction:column; gap:.7rem; background:var(--cream); }
  .as-msg { max-width:86%; padding:.7rem 1rem; border-radius:14px; font-size:.89rem; line-height:1.55; }
  .as-bot { background:var(--white); border:1px solid var(--cream-dark); color:var(--text-dark); align-self:flex-start; border-bottom-left-radius:4px; }
  .as-user { background:var(--green-fresh); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
  .as-msg a { color:var(--green-fresh); font-weight:600; }
  .as-user a { color:#fff; text-decoration:underline; }
  .as-chips { display:flex; flex-wrap:wrap; gap:.5rem; padding:.7rem 1.2rem; background:var(--cream); border-top:1px solid var(--cream-dark); }
  .as-chip { background:var(--white); border:1px solid var(--green-light); color:var(--green-deep); border-radius:50px; padding:.4rem .9rem; font-size:.78rem; cursor:pointer; transition:all .25s; }
  .as-chip:hover { background:var(--green-fresh); color:#fff; border-color:var(--green-fresh); }
  .as-input { display:flex; gap:.5rem; padding:.8rem; border-top:1px solid var(--cream-dark); background:var(--white); }
  .as-input input { flex:1; border:1.5px solid var(--cream-dark); border-radius:50px; padding:.6rem 1rem; font-family:'DM Sans',sans-serif; font-size:.9rem; background:var(--cream); color:var(--text-dark); }
  .as-input input:focus { outline:none; border-color:var(--green-fresh); }
  .as-input button { background:var(--green-deep); color:var(--cream); border:none; width:40px; height:40px; border-radius:50%; cursor:pointer; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
  @media (max-width:600px){ .assistant{ right:10px; left:10px; width:auto; bottom:84px; } .form-row{ grid-template-columns:1fr; } }

  @media (max-width:900px) {
    .why-us { grid-template-columns:1fr; gap:3rem; }
    .why-image-wrap { display:none; }
    .onboard-grid { grid-template-columns:1fr; gap:2.5rem; }
    .footer-top { grid-template-columns:1fr 1fr; }
    .menu-btn { display:flex; }
    .nav-links { display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:.2rem; background:rgba(10,37,24,0.98); backdrop-filter:blur(12px); border-bottom:1px solid rgba(201,162,39,0.2); padding:1rem 5%; box-shadow:0 24px 50px rgba(0,0,0,0.35); }
    nav.open .nav-links { display:flex; }
    .nav-links a { padding:.9rem .4rem; border-radius:8px; font-size:1rem; }
    .nav-links a:hover { background:rgba(248,244,236,0.06); }
  }
  @media (max-width:600px) {
    section { padding:4.5rem 5%; }
    .hero { padding:7rem 5% 3.5rem; }
    .hero-stats { gap:1.5rem 2rem; margin-top:3rem; }
    .footer-top { grid-template-columns:1fr; gap:2rem; }
    .footer-bottom { flex-direction:column; gap:1rem; text-align:center; justify-content:center; }
    .class-row { padding:1rem 1.1rem; gap:.9rem; }
    .cl-price { font-size:1.2rem; }
    .cl-info span { display:none; }
  }
  @media (prefers-reduced-motion:reduce){ *{animation:none!important;scroll-behavior:auto} .reveal,.service-card,.promise-card{opacity:1!important;transform:none!important} }
  /* ============================================================
     BACKEND ADDITIONS — form states, honeypot, quote modal
     ============================================================ */

  /* Honeypot: invisible to people, irresistible to bots */
  .hp-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; opacity:0; }

  /* Inline form feedback */
  .form-status { display:none; margin-top:1rem; padding:.9rem 1.1rem; border-radius:12px; font-size:.9rem; line-height:1.6; }
  .form-status.show { display:block; animation:fade-up .35s ease both; }
  .form-status.ok { background:rgba(45,158,95,.1); border:1px solid rgba(45,158,95,.35); color:var(--green-mid); }
  .form-status.err { background:rgba(190,60,60,.08); border:1px solid rgba(190,60,60,.28); color:#8d2b2b; }
  .form-field.invalid input, .form-field.invalid textarea, .form-field.invalid select { border-color:rgba(190,60,60,.55); }
  .field-error { display:block; color:#8d2b2b; font-size:.78rem; margin-top:.35rem; }

  /* Buttons in a sending state */
  .is-busy { opacity:.65; pointer-events:none; position:relative; }
  .is-busy::after { content:''; position:absolute; right:14px; top:50%; width:13px; height:13px; margin-top:-7px;
    border:2px solid currentColor; border-right-color:transparent; border-radius:50%; animation:ngspin .7s linear infinite; }
  @keyframes ngspin { to { transform:rotate(360deg); } }

  /* Quote modal */
  .qm-overlay { position:fixed; inset:0; z-index:400; background:rgba(15,31,20,.62); backdrop-filter:blur(4px);
    display:none; align-items:center; justify-content:center; padding:1.2rem; overflow-y:auto; }
  .qm-overlay.open { display:flex; animation:qmfade .25s ease both; }
  @keyframes qmfade { from{opacity:0} to{opacity:1} }
  .qm-box { position:relative; background:var(--white); border-radius:22px; padding:2.4rem 2.2rem 1.8rem;
    width:100%; max-width:600px; box-shadow:0 30px 80px rgba(15,51,32,.35); margin:auto; animation:qmrise .35s cubic-bezier(.2,.8,.3,1) both; }
  @keyframes qmrise { from{opacity:0;transform:translateY(26px) scale(.97)} to{opacity:1;transform:none} }
  .qm-close { position:absolute; top:14px; right:16px; background:none; border:none; font-size:1.9rem; line-height:1;
    color:var(--text-muted); cursor:pointer; padding:4px 8px; border-radius:8px; transition:all .2s; }
  .qm-close:hover { color:var(--green-deep); background:var(--cream); }
  .qm-box h3 { font-family:'Playfair Display',serif; font-size:1.75rem; font-weight:700; color:var(--green-deep); line-height:1.2; margin-bottom:.5rem; }
  .qm-sub { color:var(--text-muted); font-size:.92rem; line-height:1.65; margin-bottom:1.3rem; }
  .qm-summary { background:var(--cream); border:1px solid var(--cream-dark); border-left:3px solid var(--gold);
    border-radius:12px; padding:1rem 1.15rem; margin-bottom:1.4rem; font-size:.88rem; }
  .qm-summary ul { list-style:none; margin:0 0 .7rem; padding:0; }
  .qm-summary li { display:flex; justify-content:space-between; gap:1rem; padding:.22rem 0; color:var(--text-mid); }
  .qm-summary li span:last-child { color:var(--green-deep); font-weight:600; white-space:nowrap; }
  .qm-summary .qm-tot { display:flex; justify-content:space-between; gap:1rem; border-top:1px solid var(--cream-dark);
    padding-top:.6rem; margin-top:.2rem; font-weight:700; color:var(--green-deep); font-size:1rem; }
  .qm-summary .qm-mo { color:var(--text-muted); font-size:.82rem; font-style:italic; margin-top:.3rem; }
  .qm-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:.2rem; }
  .qm-box .form-field { margin-bottom:1rem; }
  .qm-box textarea { min-height:70px; }
  .qm-actions { display:flex; gap:.7rem; flex-wrap:wrap; margin-top:.4rem; }
  .qm-fine { color:var(--text-muted); font-size:.76rem; margin-top:1rem; line-height:1.6; }
  .qm-step { display:none; }
  .qm-step.on { display:block; }
  .qm-done { text-align:center; padding:1.2rem 0 .6rem; }
  .qm-tick { width:66px; height:66px; margin:0 auto 1.1rem; border-radius:50%; background:rgba(45,158,95,.12);
    color:var(--green-fresh); display:flex; align-items:center; justify-content:center; animation:qmpop .45s cubic-bezier(.2,1.4,.4,1) both; }
  .qm-tick svg { width:32px; height:32px; }
  @keyframes qmpop { from{transform:scale(.4);opacity:0} to{transform:scale(1);opacity:1} }
  .qm-done h3 { margin-bottom:.6rem; }
  @media(max-width:560px){
    .qm-box { padding:2rem 1.3rem 1.4rem; border-radius:18px; }
    .qm-row { grid-template-columns:1fr; gap:0; }
    .qm-box h3 { font-size:1.45rem; }
    .qm-actions .est-cta, .qm-actions .btn-wa { width:100%; justify-content:center; }
  }

  /* ============================================================
     SYSTEMS & APPS TRACK
     ============================================================ */

  .track-switch { display:flex; gap:.9rem; max-width:760px; margin:0 auto 2rem; flex-wrap:wrap; }
  .track-btn {
    flex:1; min-width:230px; background:var(--white); border:1px solid var(--cream-dark); border-radius:16px;
    padding:1.05rem 1.3rem; cursor:pointer; text-align:left; font-family:'DM Sans',sans-serif;
    transition:all .25s ease; display:flex; flex-direction:column; gap:3px;
  }
  .track-btn strong { font-size:1rem; font-weight:600; color:var(--green-deep); }
  .track-btn span { font-size:.8rem; color:var(--text-muted); }
  .track-btn:hover { border-color:var(--green-light); transform:translateY(-2px); }
  .track-btn.on {
    border-color:var(--gold); background:linear-gradient(180deg,#fffdf7,var(--white));
    box-shadow:0 8px 26px rgba(201,162,39,.2);
  }
  .track-btn.on span { color:var(--green-mid); font-weight:500; }
  .track-btn:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }

  #trackProject .form-field { margin-bottom:1rem; }
  #trackProject textarea { min-height:120px; }
  #trackProject .qm-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .pj-next { font-size:.88rem; color:var(--text-muted); line-height:1.6; max-width:44ch; margin-top:.3rem; }
  .pj-next strong { color:var(--green-mid); }
  #trackProject .est-opt { text-align:left; }

  .pj-done { text-align:center; padding:2.4rem 1.2rem; }
  .pj-done .qm-tick { margin-bottom:1.1rem; }
  .pj-done h3 { font-family:'Playfair Display',serif; font-size:1.6rem; color:var(--green-deep); margin-bottom:.6rem; }
  .pj-done p { color:var(--text-muted); font-size:.95rem; line-height:1.7; max-width:46ch; margin:0 auto; }

  @media(max-width:640px){
    .track-btn { min-width:100%; }
    #trackProject .qm-row { grid-template-columns:1fr; gap:0; }
  }
