:root {
     --green: #00b86b;
     --green-dark: #008c52;
     --green-light: #e6faf0;
     --green-glow: rgba(0,184,107,0.12);
     --white: #ffffff;
     --gray-50: #f9fafb;
     --gray-100: #f3f4f6;
     --gray-200: #e5e7eb;
     --gray-600: #6b7280;
     --gray-800: #1f2937;
     --gray-900: #111827;
     --gold: #f59e0b;
     --radius: 16px;
     --radius-sm: 8px;
     --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
     --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
   }
   * { margin: 0; padding: 0; box-sizing: border-box; }
   html { scroll-behavior: smooth; }
   body {
     font-family: 'Poppins', sans-serif;
     background: var(--white);
     color: #1a1a2e;
     overflow-x: hidden;
   }
   ::selection { background: var(--green); color: var(--white); }


   /* ── NAV ── */
   nav {
     position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
     padding: 16px 48px;
     display: flex; align-items: center; justify-content: space-between;
     transition: all .35s;
     background: rgba(255,255,255,.85);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(0,0,0,.04);
   }
   nav.scrolled {
     background: rgba(255,255,255,.95);
     box-shadow: 0 1px 24px rgba(0,0,0,.06);
     padding: 10px 48px;
   }
   .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
   .nav-links a {
     text-decoration: none; color: #4b5563; font-weight: 500; font-size: .875rem;
     transition: color .25s; position: relative;
   }
   .nav-links a::after {
     content: ''; position: absolute; left: 0; bottom: -2px;
     width: 0; height: 2px; background: var(--green);
     border-radius: 2px; transition: width .3s;
   }
   .nav-links a:hover { color: #1a1a2e; }
   .nav-links a:hover::after { width: 100%; }
   .nav-cta {
     background: linear-gradient(135deg, var(--green), #00a35e); color: #fff !important; padding: 12px 28px;
     border-radius: 8px; font-weight: 700; font-size: .9rem;
     transition: all .3s; box-shadow: 0 4px 14px rgba(0,184,107,.2);
     border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
   }
   .nav-cta::after { display: none !important; }
   .nav-cta:hover { color: #fff !important; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,184,107,.35);
 background: linear-gradient(135deg, #00a35e, var(--green-dark)); }
   .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .hamburger span { width: 26px; height: 2.5px; background: #4b5563; border-radius: 3px; transition: .3s; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

   /* ── HERO ── */
   .hero {
     min-height: 100vh;
     background: var(--white);
     position: relative; overflow: hidden;
     display: flex; align-items: center;
     padding: 120px 5% 100px;
   }
   .hero::before {
     content: ''; position: absolute; inset: 0;
     background:
       radial-gradient(ellipse 80% 60% at 20% 80%, var(--green-light) 0%, transparent 70%),
       radial-gradient(ellipse 60% 50% at 80% 20%, var(--green-light) 0%, transparent 70%);
     opacity: 0.5;
   }
   .hero-particles {
     position: absolute; inset: 0; overflow: hidden; pointer-events: none;
   }
   .hero-particle {
     position: absolute; width: 8px; height: 8px;
     background: var(--green); border-radius: 50%;
     opacity: 0.15; animation: particleFloat 20s infinite linear;
   }
   .hero-particle:nth-child(1) { left: 10%; top: 20%; width: 6px; height: 6px; animation-duration: 22s; }
   .hero-particle:nth-child(2) { left: 25%; top: 60%; width: 10px; height: 10px; animation-duration: 18s;
 animation-delay: -3s; }
   .hero-particle:nth-child(3) { left: 50%; top: 30%; width: 5px; height: 5px; animation-duration: 25s;
 animation-delay: -8s; }
   .hero-particle:nth-child(4) { left: 70%; top: 70%; width: 12px; height: 12px; animation-duration: 15s;
 animation-delay: -5s; }
   .hero-particle:nth-child(5) { left: 85%; top: 40%; width: 7px; height: 7px; animation-duration: 20s;
 animation-delay: -12s; }
   .hero-particle:nth-child(6) { left: 40%; top: 80%; width: 9px; height: 9px; animation-duration: 17s;
 animation-delay: -7s; }
   .hero-particle:nth-child(7) { left: 15%; top: 45%; width: 4px; height: 4px; animation-duration: 28s;
 animation-delay: -2s; }
   .hero-particle:nth-child(8) { left: 90%; top: 15%; width: 11px; height: 11px; animation-duration: 16s;
 animation-delay: -10s; }
   @keyframes particleFloat {
     0% { transform: translate(0, 0) scale(1); opacity: 0.15; }
     25% { transform: translate(30px, -40px) scale(1.5); opacity: 0.25; }
     50% { transform: translate(-20px, -80px) scale(0.8); opacity: 0.1; }
     75% { transform: translate(40px, -30px) scale(1.3); opacity: 0.2; }
     100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
   }
   .hero-accent {
     position: absolute; right: -5%; top: -10%;
     width: 600px; height: 600px;
     background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
     border-radius: 50%;
     animation: heroPulse 8s ease-in-out infinite alternate;
   }
   .hero-accent-2 {
     position: absolute; left: -10%; bottom: -15%;
     width: 500px; height: 500px;
     background: radial-gradient(circle, rgba(0,184,107,0.06) 0%, transparent 70%);
     border-radius: 50%;
     animation: heroPulse 10s ease-in-out infinite alternate-reverse;
   }
   @keyframes heroPulse {
     0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
     100% { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
   }
   .hero-inner {
     max-width: 1200px; margin: 0 auto; width: 100%;
     display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
     position: relative; z-index: 2;
   }
   .hero-tag {
     display: inline-flex; align-items: center; gap: 8px;
     background: var(--green-light); border: 1px solid rgba(0,184,107,0.2);
     color: var(--green-dark); padding: 6px 16px; border-radius: 100px;
     font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
     text-transform: uppercase; margin-bottom: 1.5rem;
   }
   .hero-tag i { font-size: 0.5rem; animation: tagPulse 2s infinite; }
   @keyframes tagPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
   .live-count { display: inline-block; min-width: 2ch; text-align: right; will-change: contents; }
   .live-count.counting { color: var(--green); }
   .hero h1 {
     font-family: 'Poppins', sans-serif;
     font-size: clamp(2.8rem, 5vw, 4rem);
     font-weight: 900; line-height: 1.08;
     color: var(--gray-900); letter-spacing: -0.03em;
     margin-bottom: 1.5rem;
   }
   .hero-acc {
     background: linear-gradient(135deg, #00b86b, #008c52, #00b86b);
     background-size: 200% 200%;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: accentShift 4s ease-in-out infinite;
   }
   @keyframes accentShift {
     0%, 100% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
   }
   .hero-sub {
     font-size: 1.05rem; line-height: 1.7;
     color: var(--gray-600); margin-bottom: 2.5rem;
   }
   .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
   .btn-primary {
     display: inline-flex; align-items: center; gap: 10px;
     background: linear-gradient(135deg, var(--green), var(--green-dark));
     color: var(--white); border: none; padding: 0.9rem 2.2rem; border-radius: 100px;
     font-size: 0.95rem; font-weight: 700; cursor: pointer;
     transition: all 0.4s var(--ease-out); font-family: 'Poppins', sans-serif;
     text-decoration: none; box-shadow: 0 4px 20px rgba(0,184,107,0.25);
   }
   .btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(0,184,107,0.35); }
   .btn-outline {
     display: inline-flex; align-items: center; gap: 8px;
     background: var(--white); color: var(--gray-800);
     border: 1.5px solid var(--gray-200); padding: 0.9rem 2.2rem;
     border-radius: 100px; font-size: 0.95rem; font-weight: 600;
     cursor: pointer; transition: all 0.4s var(--ease-out);
     font-family: 'Poppins', sans-serif; text-decoration: none;
   }
   .btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); box-shadow: 0 8px
 30px rgba(0,0,0,0.04); }
   .hero-card {
     background: var(--white); border-radius: 24px;
     padding: 2.5rem 2.2rem; position: relative;
     box-shadow: 0 4px 30px rgba(0,0,0,.04), 0 0 0 1px rgba(0,0,0,.04);
     transition: all 0.5s var(--ease-out);
   }
   .hero-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
 }
   .hero-card::before {
     content: ''; position: absolute; inset: -1px; border-radius: 25px;
     padding: 1px; background: linear-gradient(135deg, var(--green-light), var(--green), var(--green-light));
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor; mask-composite: exclude;
     opacity: 0.4;
   }
   .hero-card-header {
     display: flex; align-items: center; justify-content: space-between;
     margin-bottom: 1.8rem;
   }
   .hero-card-title {
     font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
     text-transform: uppercase; color: var(--green);
   }
   .hero-card-badge {
     background: #f3f3f3; color: #ff0000;
     padding: 5px 14px; border-radius: 100px;
     font-size: 0.7rem; font-weight: 600;
     display: flex; align-items: center; gap: 6px;
   }
   .hero-card-badge i { font-size: 0.4rem; animation: tagPulse 2s infinite; }
   .dashboard-row {
     display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem;
   }
   .dashboard-metric {
     background: var(--gray-50); border-radius: 14px; padding: 1.2rem 1rem;
     transition: all 0.3s var(--ease-out);
     border: 1px solid transparent;
   }
   .dashboard-metric:hover { background: var(--white); border-color: var(--green-light); transform: translateY(-2px); }
   .dm-label { font-size: 0.68rem; color: var(--gray-500); margin-bottom: 6px; text-transform: uppercase;
 letter-spacing: 0.04em; }
   .dm-value { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--gray-900); }
   .live-count { display: inline-block; transition: color 0.3s; }
   .live-count.counting { color: var(--green); animation: countPulse 0.6s ease-in-out 3; }
   .dm-tag { font-size: 0.7rem; color: var(--green); margin-top: 4px; display: flex; align-items: center; gap: 3px; }
    .dashboard-platform {
      background: var(--gray-50); border-radius: 12px; padding: 1rem 1.2rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.3s var(--ease-out);
      border: 1px solid transparent;
      flex-wrap: wrap;
    }
   .dashboard-platform:hover { background: var(--white); border-color: var(--green-light); }
   .dp-label { font-size: 0.75rem; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
   .dp-label .fa-facebook { color: #1877f2; }
   .dp-val { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); }

   /* ── LOGO BAR ── */
   .logos-bar {
     background: var(--white); padding: 2rem 5%;
     border-top: 1px solid var(--gray-100);
     border-bottom: 1px solid var(--gray-100);
     position: relative;
   }
   .logos-bar::before, .logos-bar::after {
     content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
   }
   .logos-bar::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
   .logos-bar::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
   .logos-bar p {
     font-size: 20px; font-weight: 600; letter-spacing: 0.12em;
     text-transform: uppercase; color: var(--gray-500); margin-bottom: 1.2rem; text-align: center;
   }
   .logos-track-wrap { overflow: hidden; }
   .logos-row {
     display: flex; align-items: center;
     gap: 4rem; width: max-content;
     animation: logoScroll 35s linear infinite;
   }
   .logos-row:hover { animation-play-state: paused; }
   @keyframes logoScroll {
     0% { transform: translateX(0); }
     100% { transform: translateX(-50%); }
   }
   .logos-row img { height: 80px; opacity: 0.7; transition: all 0.5s var(--ease-out); }
   .logos-row img:hover { opacity: 1; transform: scale(1.15); }

   /* ── STATS BAR ── */
   .stats-bar {
     background: #e6faf0; padding: 3rem 5%;
     position: relative;
   }
   .stats-bar-inner {
     max-width: 1200px; margin: 0 auto;
     display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
     position: relative; z-index: 1;
   }
   .stat-item { text-align: center; position: relative; animation: statFadeIn 0.8s var(--ease-out) both; }
   .stat-item:nth-child(1) { animation-delay: 0.1s; }
   .stat-item:nth-child(2) { animation-delay: 0.25s; }
   .stat-item:nth-child(3) { animation-delay: 0.4s; }
   @keyframes statFadeIn {
     from { opacity: 0; transform: translateY(30px) scale(0.9); }
     to { opacity: 1; transform: translateY(0) scale(1); }
   }
   .stat-item + .stat-item::before {
     content: ''; position: absolute; left: -1rem; top: 50%; transform: translateY(-50%);
     width: 1px; height: 40px; background: rgba(0,184,107,0.15);
   }
   .stat-num {
     font-family: 'Poppins', sans-serif;
     font-size: 2.2rem; font-weight: 900;
     color: var(--green-dark); line-height: 1;
     display: inline-block;
     animation: statPulse 3s ease-in-out infinite;
   }
   .stat-item:nth-child(1) .stat-num { animation-delay: 0s; }
   .stat-item:nth-child(2) .stat-num { animation-delay: 0.5s; }
   .stat-item:nth-child(3) .stat-num { animation-delay: 1s; }
   @keyframes statPulse {
     0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(0,184,107,0); }
     50% { transform: scale(1.06); text-shadow: 0 0 20px rgba(0,184,107,0.2); }
   }
   .stat-label { font-size: 0.82rem; color: var(--gray-600); margin-top: 6px; }

   /* ── SECTION COMMON ── */
   section { padding: 50px 5%; }
   .section-inner { max-width: 1200px; margin: 0 auto; }
   .section-label {
     font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
     text-transform: uppercase; color: var(--green);
     margin-bottom: 0.6rem;
   }
   .section-title {
     font-family: 'Poppins', sans-serif;
     font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
     line-height: 1.12; letter-spacing: -0.02em;
     color: #1a1a2e; margin-bottom: 0.8rem;
   }
   .section-sub {
     font-size: 17px; color: var(--gray-600); line-height: 1.7;
   }
   .section-divider {
     width: 40px; height: 3px; background: var(--green);
     border-radius: 4px; margin: 1.5rem 0 2rem;
   }

   /* ── PROCESS ── */
   .steps-grid {
     display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
     margin-top: 4rem;
   }
   .step-card {
     background: var(--white); padding: 2rem;
     position: relative; transition: all 0.5s var(--ease-out);
     border-radius: var(--radius);
     border: 1px solid var(--gray-100);
     overflow: hidden;
   }
   .step-card::before {
     content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
     background: linear-gradient(90deg, var(--green), var(--green-light));
     transform: scaleX(0); transform-origin: left;
     transition: transform 0.5s var(--ease-out);
   }
   .step-card:hover::before { transform: scaleX(1); }
   .step-card:hover { transform: translateY(-6px); border-color: var(--green-light); box-shadow: 0 16px 48px
 var(--green-glow); }
   .step-num {
     font-family: 'Poppins', sans-serif;
     font-size: 2.8rem; font-weight: 900;
     background: linear-gradient(135deg, var(--green-light), var(--green));
     -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
     line-height: 1; margin-bottom: 0.8rem;
   }
   .step-title { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; }
   .step-desc { font-size: 0.82rem; color: var(--gray-600); line-height: 1.65; }
   .step-arrow {
     display: none;
   }
   .step-card:hover .step-num { background: linear-gradient(135deg, var(--green), var(--green-dark));
 -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

   /* ── CAPABILITIES ── */
   .caps-bg { background: var(--gray-50); position: relative; }
   .caps-bg::before {
     content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
     background: linear-gradient(90deg, transparent, var(--green-light), transparent);
   }
   .caps-bg .section-title { color: var(--gray-900); }
   .caps-bg .section-sub { color: var(--gray-600); }
   .caps-grid {
     display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
     margin-top: 3rem;
   }
   .cap-card {
     background: var(--white); padding: 2.2rem;
     border-radius: var(--radius);
     border: 1px solid var(--gray-100);
     transition: all 0.5s var(--ease-out);
     position: relative; overflow: hidden;
   }
   .cap-card::after {
     content: ''; position: absolute; bottom: 0; right: 0;
     width: 100px; height: 100px;
     background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
     opacity: 0; transition: opacity 0.5s var(--ease-out);
     pointer-events: none;
   }
   .cap-card:hover { transform: translateY(-4px); border-color: var(--green-light); box-shadow: 0 12px 40px
 var(--green-glow); }
   .cap-card:hover::after { opacity: 1; }
   .cap-icon {
     width: 44px; height: 44px; background: var(--green-light);
     border-radius: 12px; display: flex; align-items: center; justify-content: center;
     margin-bottom: 1.2rem; font-size: 1.2rem; color: var(--green);
     transition: all 0.5s var(--ease-bounce);
   }
   .cap-card:hover .cap-icon { background: var(--green); color: var(--white); transform: scale(1.1) rotate(-6deg);
 box-shadow: 0 8px 24px rgba(0,184,107,0.25); }
   .cap-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.8rem; }
   .cap-items { list-style: none; }
   .cap-items li {
     font-size: 0.85rem; color: var(--gray-600); padding: 0.4rem 0;
     border-bottom: 1px solid var(--gray-50);
     display: flex; align-items: center; gap: 8px;
   }
   .cap-items li:last-child { border-bottom: none; }
   .cap-items li i { color: var(--green); font-size: 0.5rem; }

   /* ── CERTIFICATIONS ── */
   .certs-section { background: var(--gray-50); text-align: left; padding: 70px 5%; position: relative; }
   .certs-section .section-inner { max-width: 1200px; }
   .certs-section .section-label { margin-bottom: 1.5rem; }
   .certs-track-wrap {
     overflow: hidden; padding: 8px 0;
     -webkit-mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
     mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
   }
   .certs-row {
     display: flex; align-items: center;
     gap: 3rem; width: max-content;
     animation: certScroll 30s linear infinite;
     will-change: transform;
   }
   .certs-row:hover { animation-play-state: paused; }
   @keyframes certScroll {
     0% { transform: translateX(0); }
     100% { transform: translateX(-50%); }
   }
   .cert-card {
     background: var(--white); border: 1px solid var(--gray-100);
     border-radius: var(--radius); padding: 1.2rem 1.8rem;
     display: flex; align-items: center; justify-content: center;
     transition: all 0.5s var(--ease-out);
     flex-shrink: 0;
   }
   .cert-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 12px 36px
 var(--green-glow); }
   .cert-card img { height: 40px; width: auto; object-fit: contain; transition: transform 0.4s var(--ease-bounce); }
   .cert-card:hover img { transform: scale(1.15); }
   .certs-track-wrap.reveal { opacity: 0; transform: none !important; transition: opacity 0.8s var(--ease-out); }
   .certs-track-wrap.reveal.visible { opacity: 1; }

   /* ── MATH ── */
   .math-section { background: var(--white); position: relative; }
   .math-grid-3 {
     display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
   }
   .math-card-3 {
     background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 20px;
     overflow: hidden; transition: all 0.5s var(--ease-out); position: relative;
   }
   .math-card-3::before {
     content: ''; display: block; height: 4px;
     background: linear-gradient(90deg, var(--gray-300), var(--gray-200));
   }
   .math-card-3:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.06); }
   .math-card-3.featured {
     border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 8px 30px rgba(0,184,107,.1);
     transform: translateY(-4px);
   }
   .math-card-3.featured::before { background: linear-gradient(90deg, var(--green), #34d399); height: 5px; }
   .math-card-3.featured:hover { box-shadow: 0 0 0 1px var(--green), 0 20px 60px rgba(0,184,107,.18); }
   .mc3-body { padding: 1.8rem 1.5rem 1.2rem; }
   .mc3-body .tag {
     font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
     color: var(--gray-500); margin-bottom: 0.3rem;
   }
   .mc3-body h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.2rem; }
   .mc3-body .sub { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 1rem; }
   .mc3-body .price {
     font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 900; color: #1a1a2e;
     line-height: 1.1; margin-bottom: 1rem;
   }
   .mc3-body .price small { font-size: 0.7rem; font-weight: 500; color: var(--gray-500); }
   .mc3-features { list-style: none; padding: 0 1.5rem 1.5rem; margin: 0; }
   .mc3-features li {
     font-size: 0.8rem; color: var(--gray-600); line-height: 1.6;
     display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px;
   }
   .mc3-features li i { width: 14px; text-align: center; margin-top: 3px; flex-shrink: 0; }
   .mc3-features li .ck { color: var(--green); }
   .mc3-features li .xx { color: var(--gray-300); }
   .mc3-gauge {
     padding: 0 1.5rem 1.5rem;
   }
    .mc3-gauge .gl {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.72rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-400); margin-bottom: 6px;
    }
    .mc3-gauge .gl strong {
      display: inline-block; font-size: 0.85rem; font-weight: 800;
      padding: 3px 14px; border-radius: 100px;
      letter-spacing: 0;
    }
    .math-grid-3 > .math-card-3:nth-child(1) .gl strong {
      color: #fff; background: linear-gradient(135deg, #3b82f6, #2563eb);
      box-shadow: 0 2px 8px rgba(59,130,246,0.3);
    }
    .math-grid-3 > .math-card-3:nth-child(2) .gl strong {
      color: #fff; background: linear-gradient(135deg, #f59e0b, #d97706);
      box-shadow: 0 2px 8px rgba(245,158,11,0.35);
    }
    .math-card-3.featured .gl strong {
      color: #fff; background: linear-gradient(135deg, var(--green), #34d399);
      font-size: 1rem; font-weight: 900; padding: 4px 20px;
      box-shadow: 0 2px 12px rgba(0,184,107,0.4);
    }
   .mc3-gauge .gt {
     height: 5px; background: var(--gray-100); border-radius: 100px; overflow: hidden;
   }
   .mc3-gauge .gf {
     height: 100%; border-radius: 100px;
   }
    .gf-dim { width: 30%; background: linear-gradient(90deg, #3b82f6, #60a5fa); }
    .gf-dim-2 { width: 22%; background: linear-gradient(90deg, #f59e0b, #fbbf24); }
    .gf-full { width: 100%; background: linear-gradient(90deg, var(--green), #34d399); }
   .mc3-badge {
     display: inline-flex; align-items: center; gap: 4px;
     background: var(--green); color: #fff; font-size: 0.6rem; font-weight: 700;
     padding: 4px 12px; border-radius: 100px; letter-spacing: 0.04em;
     position: absolute; top: 12px; right: 12px;
   }
   .math-card-3.featured .tag { color: var(--green); }
   .math-card-3.featured h4 { color: var(--green); }
   .math-card-3.featured .price { color: var(--green); }
   .math-card-3.featured .mc3-features li { color: var(--gray-700); }
   .math-card-3.featured .mc3-features li .xx { color: var(--gray-400); }
   .math-stats-3 {
     display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem;
   }
   .math-stat-3 {
     background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 16px;
     padding: 1.2rem; text-align: center; transition: all 0.4s var(--ease-out);
   }
   .math-stat-3:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); border-color:
 var(--green); }
   .math-stat-3 .val { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--green); }
   .math-stat-3 .lbl { font-size: 0.78rem; color: var(--gray-600); margin-top: 0.2rem; }

   /* ── BROKERAGES ── */
   .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 2rem; }
   .services-list { list-style: none; }
   .services-list li { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--gray-100);
 transition: all 0.3s var(--ease-out); }
   .services-list li:first-child { border-top: 1px solid var(--gray-100); }
   .services-list li:hover { padding-left: 12px; }
   .sl-icon {
     width: 36px; height: 36px; background: var(--green-light);
     border-radius: 10px; display: flex; align-items: center; justify-content: center;
     flex-shrink: 0; font-size: 0.9rem; color: var(--green);
     transition: all 0.4s var(--ease-out);
   }
   .services-list li:hover .sl-icon { background: var(--green); color: var(--white); transform: scale(1.1)
 rotate(-6deg); }
   .sl-text strong { font-size: 0.9rem; color: #1a1a2e; display: block; margin-bottom: 2px; }
   .sl-text span { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
   .services-visual {
     background: var(--gray-50); border: 1px solid var(--gray-100);
     border-radius: var(--radius); padding: 2rem;
     position: relative; overflow: hidden;
   }
   .services-visual::before {
     content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
     background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
   }
   .sv-title {
     font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
     text-transform: uppercase; color: var(--green); margin-bottom: 1.5rem;
   }
   .funnel-step {
     background: var(--white); border: 1px solid var(--gray-100);
     border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 0.5rem;
     display: flex; align-items: center; justify-content: space-between;
     border-left: 3px solid var(--green);
     transition: all 0.3s var(--ease-out);
   }
   .funnel-step:hover { background: var(--green-light); border-color: var(--green-light); transform: translateX(4px); }
   .funnel-step:last-child { border-left-color: var(--green-dark); }
   .fs-label { font-size: 0.82rem; color: var(--gray-800); font-weight: 500; display: flex; align-items: center; gap:
 6px; }
   .fs-label i { color: var(--green); }
   .fs-value { font-size: 1rem; font-weight: 700; color: var(--green); }
   .funnel-arrow { text-align: center; color: var(--gray-200); font-size: 0.75rem; }

   /* ── BUILDERS ── */
   .builders-section { background: var(--gray-50); }
   .builders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
   .builder-card {
     background: var(--white); border: 1px solid var(--gray-100);
     border-radius: var(--radius); padding: 1.8rem;
     transition: all 0.5s var(--ease-out);
     position: relative; overflow: hidden;
   }
   .builder-card::before {
     content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
     background: linear-gradient(90deg, var(--green), var(--green-light));
     transform: scaleX(0); transform-origin: left;
     transition: transform 0.5s var(--ease-out);
   }
   .builder-card:hover::before { transform: scaleX(1); }
   .builder-card:hover { transform: translateY(-6px); border-color: var(--green-light); box-shadow: 0 16px 48px
 var(--green-glow); }
   .builder-card-icon { font-size: 1.4rem; color: var(--green); margin-bottom: 0.8rem; transition: color 0.3s
 var(--ease-out); }
   .builder-card:hover .builder-card-icon { color: #1a1a2e; }
   .builder-card-title { font-size: 0.92rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.4rem;
 transition: color 0.3s var(--ease-out); }
   .builder-card:hover .builder-card-title { color: var(--green); }
   .builder-card-desc { font-size: 0.8rem; color: var(--gray-600); line-height: 1.6; }

   /* ── CASE STUDY ── */
    .case-study-area { position: relative; overflow: hidden; }
    .case-study-card {
     background: var(--white); border: 1px solid var(--gray-100);
     border-radius: var(--radius); padding: 2.5rem;
     display: grid;
     grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
     transition: all 0.5s var(--ease-out);
     position: relative;
   }
   .case-study-card::before {
     content: ''; position: absolute; inset: -1px; border-radius: 17px;
     padding: 1px; background: linear-gradient(135deg, var(--green-light), var(--green), transparent);
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor; mask-composite: exclude;
     opacity: 0.3;
   }
   .case-study-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.04); }
   .cs-label {
     font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
     text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem;
   }
   .cs-title {
     font-family: 'Poppins', sans-serif;
     font-size: 1.3rem; font-weight: 700; color: var(--gray-900);
     margin-bottom: 1rem; line-height: 1.3;
   }
   .cs-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.2rem; }
   .cs-channel-tags { display: flex; flex-wrap: wrap; gap: 8px; }
   .cs-tag {
     background: var(--green-light); color: var(--green-dark);
     font-size: 0.72rem; padding: 5px 12px; border-radius: 100px;
     border: 1px solid rgba(0,184,107,.15); transition: all 0.3s var(--ease-out);
     display: flex; align-items: center; gap: 5px;
   }
   .cs-tag:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
   .cs-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
   .cs-metric {
     background: var(--gray-50); border-radius: 12px; padding: 1.2rem;
     text-align: center; transition: all 0.3s var(--ease-out);
     border: 1px solid transparent;
   }
   .cs-metric:hover { background: var(--white); border-color: var(--green-light); transform: translateY(-2px); }
   .cs-metric-num { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--green); }
   .cs-metric-label { font-size: 0.75rem; color: var(--gray-600); margin-top: 4px; }
    .cs-carousel-wrap { overflow: hidden; margin-top: 2rem; }
    .cs-carousel { display: flex; transition: transform 0.6s var(--ease-out); }
    .cs-slide { min-width: 100%; }
    .cs-nav { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; }
    .cs-nav button {
      width: 36px; height: 4px; border-radius: 4px; border: 0;
      background: var(--gray-200); cursor: pointer; transition: all 0.4s var(--ease-out);
    }
    .cs-nav button.active { background: var(--green); width: 48px; }
    .cs-carousel-wrap { position: relative; }
    .cs-arrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
      width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200);
      background: var(--white); color: var(--gray-800); font-size: 1rem;
      cursor: pointer; transition: all 0.3s var(--ease-out);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
    }
    .cs-arrow-prev { left: 16px; }
    .cs-arrow-next { right: 16px; }
    .cs-arrow:hover { background: var(--green); color: var(--white); border-color: var(--green); box-shadow: 0 6px 20px rgba(0,184,107,.25); transform: translateY(-50%) scale(1.08); }

   /* ── PROOF ── */
   .proof-grid {
     display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
     background: var(--white); border: 1px solid var(--gray-100);
     border-radius: var(--radius); overflow: hidden;
     margin-top: 2rem;
   }
   .proof-item {
     background: var(--white); padding: 3rem 2rem; text-align: center;
     border-right: 1px solid var(--gray-100); transition: all 0.5s var(--ease-out);
     position: relative;
   }
   .proof-item:last-child { border-right: none; }
   .proof-item:hover { background: var(--green-light); }
   .proof-item::before {
     content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
     width: 0; height: 3px; background: var(--green);
     transition: width 0.5s var(--ease-out);
     border-radius: 4px 4px 0 0;
   }
   .proof-item:hover::before { width: 60%; }
   .proof-num { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--green); }
   .proof-label { font-size: 0.82rem; color: var(--gray-600); margin-top: 0.4rem; line-height: 1.4; }

   /* ── TESTIMONIALS ── */
    .testi-bg { background: var(--white); margin-top: 50px; }
      .testi-carousel-wrap { position: relative; margin-top: 2rem; }
       .testi-carousel-wrapper { overflow: hidden; }
       .testi-carousel { display: flex; gap: 10px; transition: transform 0.6s var(--ease-out); }
        .testi-slide { flex: 0 0 auto; width: calc((100% - 20px) / 3); box-sizing: border-box; }
     .testi-card {
      background: #e6faf0; border: 1px solid var(--gray-100);
      border-radius: var(--radius); padding: 2rem;
      transition: all 0.5s var(--ease-out);
      position: relative;
    }
    .testi-card:hover { transform: translateY(-6px); border-color: var(--green-light); box-shadow: 0 16px 48px
  var(--green-glow); }
    .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .testi-text { font-size: 0.88rem; color: var(--gray-800); line-height: 1.7; margin-bottom: 1.5rem; font-style:
  italic; }
    .testi-author { display: flex; align-items: center; gap: 0.75rem; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: #ffffff; display: flex; align-items: center; justify-content: center;
      font-weight: 700; color: var(--green-dark); font-size: 0.85rem;
      flex-shrink: 0;
    }
    .testi-name { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; }
    .testi-role { font-size: 0.75rem; color: var(--gray-600); }
     .testi-arrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
      width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200);
      background: var(--white); color: var(--gray-800); font-size: 1rem;
      cursor: pointer; transition: all 0.3s var(--ease-out);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
    }
    .testi-arrow-prev { left: 16px; }
    .testi-arrow-next { right: 16px; }
    .testi-arrow:hover { background: var(--green); color: var(--white); border-color: var(--green); box-shadow: 0 6px 20px rgba(0,184,107,.25); transform: translateY(-50%) scale(1.08); }
    .testi-nav { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; }
    .testi-nav button {
      width: 36px; height: 4px; border-radius: 4px; border: 0;
      background: var(--gray-200); cursor: pointer; transition: all 0.4s var(--ease-out);
    }
     .testi-nav button.active { background: var(--green); width: 48px; }
   /* ── AUDIT ── */
   .audit-section {
     background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
     padding: 100px 5%;
     position: relative;
   }
   .audit-section::before {
     content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
     background: linear-gradient(90deg, transparent, var(--green), transparent);
   }
   .audit-inner {
     max-width: 1200px; margin: 0 auto;
     display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
   }
   .audit-left .section-title { color: var(--gray-900); }
   .audit-left .section-sub { color: var(--gray-600); }
   .audit-perks { list-style: none; margin-top: 2rem; }
   .audit-perks li {
     display: flex; gap: 0.75rem; align-items: center; padding: 0.7rem 0;
     font-size: 0.88rem; color: var(--gray-600);
     border-bottom: 1px solid var(--gray-100);
     transition: padding 0.3s var(--ease-out);
   }
   .audit-perks li:hover { padding-left: 8px; }
   .audit-perks li i { color: var(--green); font-size: 0.85rem; width: 18px; }
   .audit-form {
     background: var(--white); border-radius: var(--radius);
     padding: 2.5rem;
     border: 1px solid var(--gray-100);
     box-shadow: 0 4px 30px rgba(0,0,0,.03);
   }
   .form-step { font-size: 0.7rem; font-weight: 700; color: var(--green); letter-spacing: 0.08em; text-transform:
 uppercase; margin-bottom: 0.8rem; }
   .form-title { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--gray-900);
 margin-bottom: 1.5rem; }
   .form-group { margin-bottom: 1rem; }
   .form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-800); margin-bottom:
 0.3rem; }
   .form-group input, .form-group select {
     width: 100%; padding: 0.7rem 1rem;
     border: 1.5px solid var(--gray-100); border-radius: var(--radius-sm);
     font-size: 0.88rem; font-family: 'Poppins', sans-serif;
     color: var(--gray-900); background: var(--gray-50);
     transition: all 0.3s var(--ease-out); outline: none;
   }
   .form-group input:focus, .form-group select:focus { border-color: var(--green); background: var(--white);
 box-shadow: 0 0 0 3px var(--green-glow); }
   .form-group input::placeholder { color: var(--gray-200); }
   .form-submit {
     width: 100%; background: linear-gradient(135deg, var(--green), var(--green-dark));
     color: var(--white); border: none;
     padding: 0.9rem; border-radius: var(--radius-sm);
     font-size: 0.9rem; font-weight: 700;
     cursor: pointer; transition: all 0.4s var(--ease-out);
     font-family: 'Poppins', sans-serif; margin-top: 0.5rem;
     display: flex; align-items: center; justify-content: center; gap: 8px;
     box-shadow: 0 4px 16px rgba(0,184,107,0.2);
   }
   .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,184,107,0.3); }

   /* ── Footer ── */
   footer {
     background: #000000;
     color: #fff; padding: 72px 48px 0; position: relative; overflow: hidden;
   }
   footer::before {
     content: ''; position: absolute; width: 600px; height: 600px;
     border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
     top: -250px; right: -150px; pointer-events: none;
   }
   footer::after {
     content: ''; position: absolute; width: 400px; height: 400px;
     border-radius: 50%; background: radial-gradient(circle, rgba(0,184,107,.08) 0%, transparent 70%);
     bottom: -100px; left: -100px; pointer-events: none;
   }
   .footer-main {
     display: grid; grid-template-columns: 2fr 1.5fr; gap: 48px;
     position: relative; z-index: 1;
   }
   .footer-brand img { height: 44px; width: auto; display: block; margin-bottom: 16px; }
   .footer-brand p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; max-width: 360px; margin-bottom:
 20px; }
   .footer-social { display: flex; gap: 12px; }
   .footer-social a {
     width: 40px; height: 40px; border-radius: 50%;
     background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
     display: flex; align-items: center; justify-content: center;
     text-decoration: none; transition: all .3s; font-size: .95rem;
   }
   .footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
   .footer-col h5 {
     font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
     color: var(--green); margin-bottom: 20px; position: relative;
   }
   .footer-col h5::after {
     content: ''; position: absolute; left: 0; bottom: -8px;
     width: 28px; height: 2px; background: var(--green);
   }
   .footer-col ul { list-style: none; }
   .footer-col ul li { margin-bottom: 10px; }
   .footer-col ul li a {
     color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem;
     transition: all .3s; display: inline-flex; align-items: center; gap: 6px;
   }
   .footer-col ul li a:hover { color: #fff; transform: translateX(4px); }
   .footer-contact li {
     color: rgba(255,255,255,.55); font-size: .88rem;
     display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
   }
   .footer-contact li i { color: var(--green); margin-top: 3px; width: 16px; text-align: center; }
   .footer-bottom {
     margin-top: 48px; padding: 24px 0;
     border-top: 1px solid rgba(255,255,255,.08);
     display: flex; justify-content: space-between; align-items: center;
     flex-wrap: wrap; gap: 12px;
     color: rgba(255,255,255,.4); font-size: .8rem;
     position: relative; z-index: 1;
   }
   .footer-bottom-links { display: flex; gap: 20px; }
   .footer-bottom-links a {
     color: rgba(255,255,255,.4); text-decoration: none; transition: color .3s;
   }
   .footer-bottom-links a:hover { color: var(--green); }

   .back-to-top {
     position: fixed; bottom: 30px; right: 30px; z-index: 999;
     width: 46px; height: 46px; border-radius: 50%;
     background: var(--green); color: #fff; border: none;
     font-size: 1.1rem; cursor: pointer;
     display: flex; align-items: center; justify-content: center;
     opacity: 0; visibility: hidden; transform: translateY(12px);
     transition: all .35s; box-shadow: 0 4px 16px rgba(0,184,107,.3);
   }
   .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
   .back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,184,107,.4); }

   /* ── TILT EFFECT ── */
   .tilt { transition: all 0.1s var(--ease-out); }

   /* ── REVEAL ANIMATIONS ── */
   .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-out); }
   .reveal.visible { opacity: 1; transform: translateY(0); }
   .reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s var(--ease-out); }
   .reveal-left.visible { opacity: 1; transform: translateX(0); }
   .reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s var(--ease-out); }
   .reveal-right.visible { opacity: 1; transform: translateX(0); }
   .reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s var(--ease-out); }
   .reveal-scale.visible { opacity: 1; transform: scale(1); }

   /* Hero stagger */
   .hero-fade { opacity: 0; transform: translateY(30px); animation: heroFadeIn 0.9s var(--ease-out) forwards; }
   .hero-fade:nth-child(1) { animation-delay: 0.1s; }
   .hero-fade:nth-child(2) { animation-delay: 0.2s; }
   .hero-fade:nth-child(3) { animation-delay: 0.35s; }
   .hero-fade:nth-child(4) { animation-delay: 0.5s; }
   .hero-fade:nth-child(5) { animation-delay: 0.65s; }
   .hero-fade:nth-child(6) { animation-delay: 0.8s; }
   @keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }

   /* Stagger for cards */
   .stagger > *:nth-child(1) { transition-delay: 0.05s; }
   .stagger > *:nth-child(2) { transition-delay: 0.12s; }
   .stagger > *:nth-child(3) { transition-delay: 0.19s; }
   .stagger > *:nth-child(4) { transition-delay: 0.26s; }
   .stagger > *:nth-child(5) { transition-delay: 0.33s; }
   .stagger > *:nth-child(6) { transition-delay: 0.4s; }

   /* Float animation */
   @keyframes floatSlow {
     0%, 100% { transform: translateY(0); }
     50% { transform: translateY(-8px); }
   }
   .float { animation: floatSlow 4s ease-in-out infinite; }
   .float-2 { animation: floatSlow 5s ease-in-out infinite reverse; }

    /* ── SUCCESS TOAST ── */
    .toast-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.4);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden;
      transition: all 0.4s var(--ease-out);
    }
    .toast-overlay.show { opacity: 1; visibility: visible; }
    .toast-card {
      background: var(--white); border-radius: 20px;
      padding: 2.5rem 2.8rem; max-width: 400px; width: 90%;
      text-align: center;
      box-shadow: 0 25px 60px rgba(0,0,0,0.15);
      transform: scale(0.9) translateY(20px);
      transition: all 0.5s var(--ease-bounce);
    }
    .toast-overlay.show .toast-card {
      transform: scale(1) translateY(0);
    }
    .toast-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--green-light); color: var(--green);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem; font-size: 1.6rem;
      animation: toastPop 0.6s var(--ease-bounce);
    }
    @keyframes toastPop {
      0% { transform: scale(0); }
      60% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }
    .toast-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem; font-weight: 700; color: var(--gray-900);
      margin-bottom: 0.5rem;
    }
    .toast-text {
      font-size: 0.88rem; color: var(--gray-600); line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .toast-btn {
      background: var(--green); color: var(--white); border: none;
      padding: 0.7rem 2.4rem; border-radius: 100px;
      font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
      cursor: pointer; transition: all 0.3s var(--ease-out);
    }
    .toast-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

    /* ── SECTION SEPARATOR ── */
   .section-sep {
     height: 1px; background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
     margin: 0;
     border: 0;
   }

   /* ── RESPONSIVE ── */
   @media (max-width: 1024px) {
     .hero-inner, .services-grid, .case-study-card, .audit-inner { grid-template-columns: 1fr; gap: 3rem; }
     .steps-grid, .caps-grid, .builders-grid { grid-template-columns: 1fr 1fr; }
     .certs-grid { gap: 1rem; }
     .cert-card { min-width: 130px; padding: 1.5rem 1rem; }
     .math-grid-3 { grid-template-columns: 1fr; gap: 1rem; }
      .math-card-3.featured { transform: none; }
      .math-card-3.featured:hover { transform: translateY(-4px); }
      .math-stats-3 { grid-template-columns: 1fr; }
      .hero { min-height: auto; padding: 100px 5% 70px; }
       .testi-slide { width: calc((100% - 10px) / 2); }
   }
      @media (max-width: 768px) {
        .steps-grid, .caps-grid, .builders-grid, .proof-grid, .math-kpis { grid-template-columns: 1fr; }
         .testi-slide { width: 100%; }
       .testi-arrow { width: 36px; height: 36px; font-size: 0.8rem; }
       .testi-arrow-prev { left: 10px; }
       .testi-arrow-next { right: 10px; }
       .cs-arrow { width: 36px; height: 36px; font-size: 0.8rem; }
       .cs-arrow-prev { left: 10px; }
       .cs-arrow-next { right: 10px; }
     .footer-main { grid-template-columns: 1fr; gap: 32px; }
     .footer-brand p { max-width: 100%; }
     .footer-bottom { flex-direction: column; text-align: center; }
     .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
     .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: .95rem; }
     footer { padding: 48px 20px 0; }
     .stats-bar-inner { grid-template-columns: 1fr; gap: 1.5rem; }
     .stat-item + .stat-item::before { display: none; }
     nav { padding: 12px 20px; }
     nav.scrolled { padding: 8px 20px; }
      .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background:
  rgba(255,255,255,.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 24px;
  z-index: 999; min-height: 359px; padding: 20px; }
     .nav-links a { color: #4b5563; font-size: 1.1rem; }
     .nav-links a:hover { color: #1a1a2e; }
      .nav-links.open { display: flex; }
      .nav-links .nav-cta { display: none; }
     .hamburger { display: flex; }
     section { padding: 70px 5%; }
     .dashboard-row { grid-template-columns: 1fr; }
     .proof-grid .proof-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
     .proof-grid .proof-item:last-child { border-bottom: none; }
     .hero-inner { gap: 2rem; }
     .case-study-card { padding: 1.5rem; }
      .logos-row { gap: 2.5rem; }
      .logos-row img { height: 40px; }
      .reveal-right { transform: translateX(0); }
    }