/* ============================================================
   AHCA — Premium Design System
   Version 2.0 | Mobile-First | Dark Glassmorphism
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ── */
:root {
  --bg:         #050D07;
  --bg2:        #071009;
  --surface:    rgba(10, 22, 13, 0.75);
  --border:     rgba(94, 207, 160, 0.1);
  --border-hi:  rgba(94, 207, 160, 0.32);

  --green:      #02B36A;
  --green-l:    #5ECFA0;
  --green-d:    #018F54;

  --gold:       #C9A84C;
  --gold-l:     #E2C06A;

  --text:       #E8F5EC;
  --text-2:     rgba(232,245,236,.62);
  --text-3:     rgba(232,245,236,.36);
  --text-4:     rgba(232,245,236,.16);

  --wa:         #25D366;

  --ff-head:    'Syne', sans-serif;
  --ff-body:    'Inter', sans-serif;

  --ease:       cubic-bezier(.16,1,.3,1);
  --ease-out:   cubic-bezier(0,.2,.2,1);
  --tf:         150ms;
  --tb:         260ms;
  --ts:         420ms;

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  24px;
  --r-f:    9999px;

  --nav-h:  70px;
  --ticker-h: 40px;
  --header-h: calc(var(--nav-h) + var(--ticker-h));
  --max-w:  1180px;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
h1, h2, h3, h4, h5, h6 { line-height: 1.28; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; }
ul[role="list"] { list-style: none; }
@media (hover: none) { body { cursor: auto; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── 3. SKIP LINK ── */
.skip-link {
  position: fixed; top: -120%; left: 16px;
  z-index: 99999;
  background: var(--green); color: var(--bg);
  padding: 8px 18px; border-radius: var(--r-f);
  font-size: 13px; font-weight: 600;
  transition: top var(--tb);
}
.skip-link:focus { top: 16px; }

/* ── 4. SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--green-d), var(--green), var(--green-l));
  z-index: 99999;
  transition: width .08s linear;
  pointer-events: none;
}

/* ── 5. CURSOR ── */
.cursor {
  position: fixed; pointer-events: none; z-index: 99998;
  left: 0; top: 0;
  width: 10px; height: 10px;
  background: var(--green-l); border-radius: 50%;
  transform: translate(-200px,-200px);
  transition: width var(--tf), height var(--tf), background var(--tf);
  will-change: transform;
}
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 99997;
  left: 0; top: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(94,207,160,.38);
  border-radius: 50%;
  transform: translate(-200px,-200px);
  transition: width var(--tb), height var(--tb), border-color var(--tb);
  will-change: transform;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor  { width: 20px; height: 20px; background: var(--green); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 44px; height: 44px; border-color: rgba(94,207,160,.55); }
@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* ── 6. CONTAINER ── */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

@media (max-width: 768px) {
  .aurora-blob--1 { opacity: 1; filter: blur(48px); width: 160vw; height: 140vw;
    background: radial-gradient(ellipse, rgba(2,179,106,.5) 0%, rgba(1,143,84,.22) 38%, transparent 65%); }
  .aurora-blob--2 { opacity: 1; filter: blur(48px);
    background: radial-gradient(ellipse, rgba(94,207,160,.4) 0%, rgba(2,179,106,.16) 40%, transparent 65%); }
  .aurora-blob--3 { opacity: .9; filter: blur(40px);
    background: radial-gradient(ellipse, rgba(201,168,76,.35) 0%, rgba(201,168,76,.1) 40%, transparent 65%); }
  .hero-sun {
    background: radial-gradient(circle, rgba(2,179,106,.38) 0%, rgba(2,179,106,.14) 38%, transparent 68%);
  }
  .mesh-orb--1 { background: radial-gradient(circle, rgba(2,179,106,.22) 0%, transparent 68%); }
}

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-f);
  font-size: 14px; font-weight: 600; font-family: var(--ff-body);
  border: none; cursor: none; white-space: nowrap;
  transition: transform var(--tf), background var(--tb), box-shadow var(--tb),
              color var(--tb), border-color var(--tb);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); }
.btn--primary {
  background: var(--green); color: var(--bg);
  box-shadow: 0 4px 22px rgba(2,179,106,.3);
}
.btn--primary:hover { background: var(--green-l); box-shadow: 0 8px 30px rgba(2,179,106,.42); }
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(232,245,236,.18);
}
.btn--ghost:hover { border-color: var(--green-l); color: var(--green-l); background: rgba(94,207,160,.05); }
.btn--lg { padding: 16px 34px; font-size: 15px; }
.btn--submit {
  width: 100%; justify-content: center;
  padding: 16px; font-size: 15px;
  position: relative; overflow: hidden;
}
.btn-spin {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(5,13,7,.3); border-top-color: var(--bg);
  border-radius: 50%; animation: spin .6s linear infinite;
  position: absolute;
}
.btn--loading .btn-txt { opacity: 0; }
.btn--loading .btn-ico { opacity: 0; }
.btn--loading .btn-spin { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 8. NAVIGATION ── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: var(--nav-h); position: relative;
}
.nav::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(2,28,12,.88);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(94,207,160,.22); z-index: -1;
  transition: background var(--tb);
}
.nav.scrolled::before { background: rgba(2,28,12,.97); }

.logo {
  font-family: var(--ff-head); font-size: 21px; font-weight: 800;
  letter-spacing: -.03em; color: var(--text); cursor: none;
  display: flex; align-items: center; gap: 5px;
}
.logo-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(.72); }
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; color: var(--text-2);
  letter-spacing: .07em; text-transform: uppercase;
  cursor: none; position: relative;
  transition: color var(--tb);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--green-l);
  transition: width var(--tb) var(--ease);
}
.nav-links a:hover { color: var(--green-l); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-wa {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: var(--r-f);
  border: 1px solid rgba(94,207,160,.24); color: var(--green-l);
  font-size: 12px; font-weight: 500; cursor: none;
  transition: all var(--tb); white-space: nowrap;
}
.nav-wa:hover { background: rgba(94,207,160,.1); border-color: var(--green-l); }

.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 0 10px; cursor: none;
}
.nav-burger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--text-2); border-radius: 2px;
  transition: all var(--tb);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-wa span { display: none; }
  .nav-wa { padding: 10px 12px; }
}
@media (max-width: 600px) { .nav { padding: 0 18px; } }

/* ── 9. MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(5,13,7,.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ts) var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; margin-bottom: 40px; }
.mobile-menu li { margin-bottom: 18px; }
.mobile-link {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(28px, 8vw, 48px); color: var(--text-2);
  cursor: none; transition: color var(--tb);
}
.mobile-link:hover { color: var(--green-l); }
.mobile-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--wa); color: #fff;
  border-radius: var(--r-f); font-size: 15px; font-weight: 600; cursor: none;
}

/* ── 10. SECTIONS ── */
.section { padding: 96px 0; }
.section--alt {
  background: radial-gradient(ellipse 100% 70% at 50% 50%, rgba(2,20,10,.45) 0%, transparent 100%);
}
.section-hd { margin-bottom: 48px; }

.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-l); margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 22px; height: 1px; background: var(--green-l); }

.sec-h {
  font-family: var(--ff-head);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800; line-height: 1.28;
  letter-spacing: -.01em; margin-bottom: 14px;
}
.sec-sub {
  font-size: 16px; line-height: 1.72; color: var(--text-2); max-width: 520px;
}

/* ── 11. HERO ── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: calc(var(--header-h) + 60px) 40px 80px;
  position: relative; overflow: hidden; text-align: center;
}

.hero-mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mesh-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  will-change: transform;
}
.mesh-orb--1 {
  width: min(680px, 70vw); height: min(680px, 70vw);
  background: radial-gradient(circle, rgba(2,179,106,.11) 0%, transparent 68%);
  top: -18%; right: -8%;
  animation: orb1 16s ease-in-out infinite;
}
.mesh-orb--2 {
  width: min(480px, 55vw); height: min(480px, 55vw);
  background: radial-gradient(circle, rgba(1,143,84,.08) 0%, transparent 68%);
  bottom: 5%; left: 2%;
  animation: orb2 20s ease-in-out infinite;
}
.mesh-orb--3 {
  width: min(280px, 36vw); height: min(280px, 36vw);
  background: radial-gradient(circle, rgba(201,168,76,.055) 0%, transparent 68%);
  top: 35%; left: 42%;
  animation: orb3 13s ease-in-out infinite;
}
@keyframes orb1 {
  0%,100% { transform:translate(0,0) scale(1); }
  40%      { transform:translate(-3%,5%) scale(1.06); }
  70%      { transform:translate(4%,-2%) scale(.96); }
}
@keyframes orb2 {
  0%,100% { transform:translate(0,0); }
  50%      { transform:translate(6%,-7%) scale(1.1); }
}
@keyframes orb3 {
  0%,100% { transform:translate(0,0); }
  55%      { transform:translate(-9%,6%); }
}

.hero-sun {
  position: absolute; width: 820px; height: 820px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -46%);
  background: radial-gradient(circle, rgba(2,179,106,.18) 0%, rgba(2,179,106,.06) 38%, transparent 68%);
  pointer-events: none; z-index: 0;
  animation: pulse-cta 5s ease-in-out infinite;
  box-shadow: 0 0 0 1px rgba(2,179,106,.06), 0 0 0 2px rgba(2,179,106,.04);
}

.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(94,207,160,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,207,160,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; width: 100%; max-width: 1060px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(94,207,160,.22); color: var(--green-l);
  font-size: 11px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--r-f); margin-bottom: 28px;
  background: rgba(94,207,160,.05); backdrop-filter: blur(8px);
  animation: fadeup .8s var(--ease) .1s both;
  margin-left: auto; margin-right: auto;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: blink 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; line-height: 1.22; letter-spacing: -.02em;
  margin-bottom: 28px;
}
.h1-line {
  display: block; overflow: hidden;
  animation: lineup .9s cubic-bezier(.16,1,.3,1) both;
}
.l1 { animation-delay: .15s; }
.l2 { animation-delay: .26s; color: var(--green-l); }
.l3 { animation-delay: .37s; color: var(--gold); }
@keyframes lineup {
  from { opacity:0; transform:translateY(105%); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 18px); color: var(--text-2);
  max-width: 520px; line-height: 1.72; margin: 0 auto 36px;
  animation: fadeup .8s var(--ease) .52s both;
}
.hero-btns {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  animation: fadeup .8s var(--ease) .67s both;
}

.hero-scroll {
  position: absolute; right: 40px; bottom: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-4); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  animation: fadeup 1s var(--ease) 1.2s both;
}
.scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--green-l), transparent);
  animation: growline 2s 1.4s ease-out both;
}
@keyframes growline { from { height:0; } to { height:46px; } }
@keyframes fadeup {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

@media (max-width: 600px) {
  .hero { padding: calc(var(--header-h) + 36px) 20px 64px; }
  .hero-scroll { display: none; }
}

/* ── 12. TICKER ── */
.ticker-wrap {
  overflow: hidden;
  height: var(--ticker-h);
  border-top: 1px solid rgba(94,207,160,.22);
  border-bottom: 1px solid rgba(94,207,160,.12);
  background: rgba(2,24,10,.92); backdrop-filter: blur(16px);
  display: flex; align-items: center;
}
.ticker-track {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 55s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ti-item, .ti-sep { margin-right: 20px; }
.ti-item {
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-2);
}
.ti-hi   { color: var(--green-l); }
.ti-gold { color: var(--gold); }
.ti-sep  { color: var(--green-l); opacity: .5; font-size: 10px; flex-shrink: 0; }

/* ── 13. TRUST / CERT / STATS ── */
.trust-section { padding: 64px 0; }

.cert-card {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 20px 28px; background: rgba(1,143,84,.06);
  backdrop-filter: blur(14px);
  max-width: 620px; margin: 0 auto 40px;
}
.cert-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(94,207,160,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-l); font-size: 24px; flex-shrink: 0;
}
.cert-title { font-family: var(--ff-head); font-size: 16px; font-weight: 800; }
.cert-sub   { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.cert-verified {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  background: rgba(2,179,106,.12); color: var(--green-l);
  font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: var(--r-f); border: 1px solid rgba(2,179,106,.22);
  white-space: nowrap;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.stat-card {
  background: var(--bg); padding: 32px 24px; text-align: center;
  transition: background var(--tb); cursor: default;
}
.stat-card:hover { background: rgba(1,77,46,.1); }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num {
  font-family: var(--ff-head); font-size: clamp(34px,5vw,54px);
  font-weight: 800; color: var(--green); line-height: 1.2;
}
.stat-sfx {
  font-family: var(--ff-head); font-size: clamp(18px,2.5vw,28px);
  font-weight: 800; color: var(--green); line-height: 1.2;
}
.stat-lbl { font-size: 11px; color: var(--text-3); margin-top: 6px; letter-spacing: .05em; text-transform: uppercase; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ── 14. SERVICES ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.svc-card {
  background: var(--bg); padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: background var(--tb); cursor: none;
}
.svc-card:hover    { background: rgba(1,77,46,.22); }
.svc-card--feat    { background: rgba(1,77,46,.1); }
.svc-glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(2,179,106,.14) 0%, transparent 70%);
  top: -80px; right: -60px;
  transform: scale(0); transition: transform var(--ts) var(--ease);
}
.svc-card:hover .svc-glow { transform: scale(1); }
.svc-tag {
  display: inline-block; background: rgba(2,179,106,.14); color: var(--green-l);
  font-size: 10px; font-weight: 700; padding: 3px 12px;
  border-radius: var(--r-f); letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 16px;
}
.svc-ico { font-size: 28px; color: var(--green); margin-bottom: 16px; display: block; }
.svc-card h3 {
  font-family: var(--ff-head); font-size: 16px; font-weight: 800;
  letter-spacing: .01em; color: var(--text); margin-bottom: 8px;
}
.svc-card p { font-size: 13px; color: var(--text-3); line-height: 1.65; }
.svc-arr {
  position: absolute; bottom: 18px; right: 18px;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-4); font-size: 13px;
  transition: all var(--tb);
}
.svc-card:hover .svc-arr { border-color: var(--green-l); color: var(--green-l); }
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

/* ── 15. WHY ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.why-card {
  background: rgba(6,16,8,.5); padding: 40px 32px;
  transition: background var(--tb); cursor: none;
}
.why-card:hover { background: rgba(1,77,46,.18); }
.why-num {
  font-family: var(--ff-head); font-size: 10px; color: var(--text-4);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.why-num::before { content:''; width:18px; height:1px; background: var(--border-hi); }
.why-ico { font-size: 24px; color: var(--green-l); margin-bottom: 12px; }
.why-card h3 { font-family: var(--ff-head); font-size: 17px; font-weight: 800; letter-spacing: .01em; margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: var(--text-3); line-height: 1.65; }
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }

/* ── 16. BARS ── */
.bars-wrap {
  background: rgba(1,77,46,.08); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
}
.bar-row { margin-bottom: 24px; }
.bar-meta {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-2); margin-bottom: 8px;
}
.bar-pct { color: var(--green-l); font-weight: 600; }
.bar-track {
  height: 3px; background: rgba(94,207,160,.08);
  border-radius: var(--r-f); overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: var(--r-f); width: 0;
  background: linear-gradient(90deg, var(--green-d), var(--green), var(--green-l));
  transition: width 1.8s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 600px) { .bars-wrap { padding: 24px 20px; } }

/* ── 17. RESULTS ── */
.res-slider {
  overflow: hidden;
  padding: 4px 0 20px;
}
.res-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.res-card {
  flex: 0 0 clamp(260px, 30vw, 320px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  transition: background var(--tb), border-color var(--tb), transform .18s ease;
  cursor: none;
}
.res-card:hover     { background: rgba(1,77,46,.18); border-color: rgba(2,179,106,.2); }
.res-card--gold     { background: rgba(201,168,76,.04); border-color: rgba(201,168,76,.24); }
.res-card--gold:hover { background: rgba(201,168,76,.07); }
.res-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-f);
  margin-bottom: 16px; letter-spacing: .08em; text-transform: uppercase;
}
.res-tag--g    { background: rgba(2,179,106,.14); color: var(--green-l); }
.res-tag--gold {
  background: rgba(201,168,76,.14); color: var(--gold);
  border: 1px solid rgba(201,168,76,.24);
  display: inline-flex; align-items: center; gap: 5px;
}
.res-card h3 { font-family: var(--ff-head); font-size: 16px; font-weight: 800; letter-spacing: .01em; margin-bottom: 8px; }
.res-card--gold h3 { color: var(--gold); }
.res-card p  { font-size: 13px; color: var(--text-3); line-height: 1.65; margin-bottom: 14px; }
.res-outcome { font-size: 13px; color: var(--green-l); display: flex; align-items: center; gap: 6px; font-weight: 600; }
.res-amount-lbl { font-size: 11px; color: var(--text-3); display: block; margin-bottom: 2px; }
.res-amount-val {
  font-family: var(--ff-head); font-size: clamp(18px,2.4vw,26px);
  font-weight: 800; color: var(--gold); display: block; margin-bottom: 10px;
}
.gold-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201,168,76,.12); color: var(--gold);
  font-size: 10px; font-weight: 700; padding: 5px 14px;
  border-radius: var(--r-f); border: 1px solid rgba(201,168,76,.24);
  letter-spacing: .06em; text-transform: uppercase;
}
@media (max-width: 760px) { .res-card { flex: 0 0 clamp(240px, 78vw, 300px); } }
.res-slider-wrap {
  display: flex; align-items: center; gap: 10px;
}
.res-slider { flex: 1; min-width: 0; }
.res-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(2,28,12,.85);
  border: 1px solid rgba(2,179,106,.28);
  color: var(--green-l); cursor: pointer; font-size: 17px;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .15s;
}
.res-arrow:hover { background: rgba(2,60,25,.9); border-color: rgba(2,179,106,.55); transform: scale(1.1); }
.res-arrow:active { transform: scale(.93); }
@media (max-width: 600px) {
  .res-arrow { width: 34px; height: 34px; font-size: 14px; }
}

/* ── 18. TESTIMONIALS ── */
.tst-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.tst-card {
  background: var(--bg); padding: 32px 26px;
  transition: background var(--tb);
}
.tst-card:hover { background: rgba(1,77,46,.14); }
.tst-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.tst-card blockquote p {
  font-size: 14px; color: var(--text-2); line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
}
.tst-auth  { display: flex; align-items: center; gap: 10px; }
.tst-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(1,143,84,.25); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--green-l);
}
.tst-name { font-family: var(--ff-head); font-size: 13px; font-weight: 700; }
.tst-role { font-size: 11px; color: var(--text-3); margin-top: 2px; }
@media (max-width: 760px) { .tst-grid { grid-template-columns: 1fr; } }

/* ── 19. CTA BAND ── */
.cta-band {
  margin: 0 40px 56px;
  border-radius: var(--r-2xl);
  background: rgba(1,143,84,.06);
  border: 1px solid rgba(94,207,160,.14);
  padding: 80px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 780px; height: 780px; border-radius: 50%;
  background: radial-gradient(circle, rgba(2,179,106,.14) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; animation: pulse-cta 4s ease-in-out infinite;
}
@keyframes pulse-cta {
  0%,100% { opacity:.7; transform:translate(-50%,-50%) scale(1); }
  50%      { opacity:1; transform:translate(-50%,-50%) scale(1.08); }
}
.cta-content { position: relative; z-index: 1; }
.cta-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-l); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.cta-label::before, .cta-label::after { content:''; width:26px; height:1px; background: rgba(94,207,160,.38); }
.cta-h {
  font-family: var(--ff-head); font-size: clamp(36px,6vw,72px);
  font-weight: 900; letter-spacing: -.02em; line-height: 1.24;
  margin-bottom: 18px;
  background: linear-gradient(90deg,
    var(--text) 0%,
    var(--text) 15%,
    var(--green-l) 30%,
    var(--gold) 50%,
    var(--green-l) 70%,
    var(--text) 85%,
    var(--text) 100%
  );
  background-size: 400% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-cta 5s linear infinite;
}
@keyframes shimmer-cta {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}
.cta-sub   { font-size: 17px; color: var(--text-2); margin-bottom: 36px; line-height: 1.65; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) {
  .cta-band { margin: 0 18px 40px; padding: 52px 24px; }
}


/* ── 20. CONTACT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.45fr;
  gap: 48px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.wa-cta {
  display: flex; align-items: center; gap: 14px;
  background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.18);
  border-radius: var(--r-lg); padding: 16px 20px;
  cursor: none; transition: all var(--tb);
}
.wa-cta:hover { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.4); }
.wa-cta-ico {
  width: 46px; height: 46px; background: var(--wa); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; flex-shrink: 0;
}
.wa-cta-title { font-size: 14px; font-weight: 600; color: var(--text); }
.wa-cta-sub   { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.wa-arr { margin-left: auto; color: var(--text-3); font-size: 15px; }

.contact-details { display: flex; flex-direction: column; gap: 10px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--border);
  border-radius: var(--r-md); background: rgba(1,77,46,.06);
  transition: border-color var(--tb);
}
.contact-row:hover { border-color: var(--border-hi); }
.contact-ico {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(2,179,106,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-l); font-size: 16px; flex-shrink: 0;
}
.contact-lbl { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.contact-val { font-size: 14px; color: var(--text); font-weight: 500; }
a.contact-val:hover { color: var(--green-l); }

.contact-form-wrap {
  background: rgba(8,18,10,.7); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 36px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.cform     { display: flex; flex-direction: column; gap: 16px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg        { display: flex; flex-direction: column; gap: 6px; }
.fg label  { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .07em; font-weight: 500; }
.req       { color: var(--green-l); }
.fg input, .fg textarea, .fg select {
  width: 100%; background: rgba(255,255,255,.035);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 12px 14px; font-size: 14px; color: var(--text);
  font-family: var(--ff-body); outline: none;
  transition: border-color var(--tb), background var(--tb), box-shadow var(--tb);
  -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--green-l); background: rgba(94,207,160,.04);
  box-shadow: 0 0 0 3px rgba(94,207,160,.1);
}
.fg input.err, .fg select.err { border-color: #e05c5c; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-4); }
.fg textarea { height: 110px; resize: vertical; }
.sel-wrap { position: relative; }
.sel-wrap .ti-chevron-down {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 13px; pointer-events: none;
}
.fg select option { background: #091209; color: var(--text); }
.ferr { font-size: 11px; color: #e05c5c; min-height: 15px; }
.form-ok {
  display: flex; align-items: center; gap: 10px;
  background: rgba(2,179,106,.1); border: 1px solid rgba(2,179,106,.24);
  border-radius: var(--r-md); padding: 14px 18px;
  font-size: 14px; color: var(--green-l); font-weight: 500;
}
@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ── 21. FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px; margin-top: 48px;
}
.footer-inner { display: flex; gap: 64px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { flex: 0 0 200px; }
.footer-logo { font-family: var(--ff-head); font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.footer-logo span { color: var(--green); }
.footer-tag  { font-size: 13px; color: var(--text-3); margin-bottom: 14px; }
.footer-cert {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,100,209,.12); color: #93a8f4;
  font-size: 10px; font-weight: 700; padding: 5px 14px;
  border-radius: var(--r-f); border: 1px solid rgba(147,168,244,.18);
  letter-spacing: .04em;
}
.footer-cols  { display: flex; gap: 56px; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.fcol-title   { font-family: var(--ff-head); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer-col ul { list-style:none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 13px; }
.footer-col a  { color: var(--text-2); transition: color var(--tb); cursor: none; }
.footer-col a:hover { color: var(--green-l); }
.footer-col span { color: var(--text-3); }
.footer-bottom {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 24px;
  flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--text-4);
}
@media (max-width: 760px) {
  .footer-inner   { flex-direction: column; gap: 32px; }
  .footer-cols    { justify-content: flex-start; gap: 32px; }
  .footer-bottom  { flex-direction: column; align-items: center; text-align: center; }
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 164px; right: 26px; z-index: 490;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(2,179,106,.12); border: 1px solid rgba(2,179,106,.3);
  color: var(--green-l); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.scroll-top.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.scroll-top:hover {
  background: rgba(2,179,106,.22); border-color: var(--green-l);
}

/* ── 22. WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 500; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.wa-float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff; border: none; cursor: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  animation: wapulse 3s ease-in-out infinite;
  transition: transform var(--tb);
}
.wa-float-btn:hover { transform: scale(1.1); }
@keyframes wapulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.35); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.58), 0 0 0 10px rgba(37,211,102,.07); }
}
.wa-float-lbl {
  background: rgba(5,13,7,.9); border: 1px solid var(--border);
  color: var(--green-l); font-size: 10px; font-weight: 600;
  padding: 5px 13px; border-radius: var(--r-f);
  white-space: nowrap; letter-spacing: .04em;
  backdrop-filter: blur(8px);
}

/* ── 23. REVEAL ANIMATIONS ── */
.reveal-up, .reveal-l, .reveal-r, .reveal-scale, .reveal-blur {
  opacity: 0;
  transition: opacity .82s var(--ease), transform .82s var(--ease), filter .82s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up    { transform: translateY(40px); }
.reveal-l     { transform: translateX(-40px); }
.reveal-r     { transform: translateX(40px); }
.reveal-scale { transform: scale(.88); }
.reveal-blur  { transform: translateY(20px); filter: blur(8px); }
.reveal-up.in, .reveal-l.in, .reveal-r.in,
.reveal-scale.in, .reveal-blur.in { opacity: 1; transform: none; filter: none; }

/* ── 24. AURORA — FIXED AMBIENT BASE (HD) ── */
#aurora {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none; overflow: hidden;
}
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}
.aurora-blob--1 {
  width: 120vw; height: 90vw;
  max-width: 1300px; max-height: 900px; opacity: .85;
  background: radial-gradient(ellipse, rgba(2,179,106,.28) 0%, rgba(1,143,84,.12) 35%, transparent 65%);
  top: -28%; left: -18%;
  animation: aurora1 20s ease-in-out infinite;
}
.aurora-blob--2 {
  width: 90vw; height: 90vw;
  max-width: 900px; max-height: 900px; opacity: .75;
  background: radial-gradient(ellipse, rgba(94,207,160,.22) 0%, rgba(2,179,106,.08) 38%, transparent 65%);
  bottom: -28%; right: -18%;
  animation: aurora2 25s ease-in-out infinite;
}
.aurora-blob--3 {
  width: 60vw; height: 60vw;
  max-width: 640px; max-height: 640px; opacity: .7;
  background: radial-gradient(ellipse, rgba(201,168,76,.2) 0%, rgba(201,168,76,.06) 38%, transparent 65%);
  top: 32%; left: 48%;
  animation: aurora3 17s ease-in-out infinite;
}
.aurora-blob--4 {
  width: 50vw; height: 70vw;
  max-width: 520px; max-height: 720px; opacity: .65;
  background: radial-gradient(ellipse, rgba(2,210,120,.18) 0%, transparent 62%);
  top: 12%; right: 12%;
  animation: aurora4 28s ease-in-out infinite;
}
@keyframes aurora1 {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  25%      { transform: translate(8%,12%) scale(1.1) rotate(3deg); }
  50%      { transform: translate(14%,4%) scale(.95) rotate(-2deg); }
  75%      { transform: translate(4%,16%) scale(1.05) rotate(4deg); }
}
@keyframes aurora2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-10%,-8%) scale(1.12); }
  66%      { transform: translate(-4%,-14%) scale(.93); }
}
@keyframes aurora3 {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  50%      { transform: translate(-14%,12%) scale(1.22) rotate(-5deg); }
}
@keyframes aurora4 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.5; }
  40%      { transform: translate(-6%,12%) scale(1.18); opacity:.3; }
  70%      { transform: translate(8%,6%) scale(.88); opacity:.6; }
}

/* ── 24b. AURORA — FULL PAGE SCROLL ZONES ── */
#aurora-scroll {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: -1;
  overflow: hidden;
}
.as-blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none;
}
/* Zone 1 — Services section */
.as-blob--1 {
  width: 70vw; height: 60vw;
  max-width: 700px; max-height: 600px; opacity: .45;
  background: radial-gradient(ellipse, rgba(2,179,106,.13) 0%, transparent 65%);
  top: 22%; right: -10%;
  animation: asblob1 22s ease-in-out infinite;
}
/* Zone 2 — Why section */
.as-blob--2 {
  width: 60vw; height: 60vw;
  max-width: 600px; max-height: 600px; opacity: .4;
  background: radial-gradient(ellipse, rgba(1,143,84,.12) 0%, transparent 65%);
  top: 38%; left: -8%;
  animation: asblob2 19s ease-in-out infinite;
}
/* Zone 3 — Results section (gold) */
.as-blob--3 {
  width: 65vw; height: 55vw;
  max-width: 650px; max-height: 550px; opacity: .38;
  background: radial-gradient(ellipse, rgba(201,168,76,.12) 0%, transparent 65%);
  top: 58%; right: 5%;
  animation: asblob3 24s ease-in-out infinite;
}
/* Zone 4 — Testimonials */
.as-blob--4 {
  width: 55vw; height: 55vw;
  max-width: 550px; max-height: 550px; opacity: .35;
  background: radial-gradient(ellipse, rgba(94,207,160,.1) 0%, transparent 65%);
  top: 72%; left: 20%;
  animation: asblob4 21s ease-in-out infinite;
}
/* Zone 5 — Contact section */
.as-blob--5 {
  width: 70vw; height: 65vw;
  max-width: 700px; max-height: 650px; opacity: .42;
  background: radial-gradient(ellipse, rgba(2,179,106,.11) 0%, transparent 65%);
  top: 86%; left: -5%;
  animation: asblob5 26s ease-in-out infinite;
}
/* Zone 6 — Extra center glow */
.as-blob--6 {
  width: 50vw; height: 50vw;
  max-width: 500px; max-height: 500px; opacity: .28;
  background: radial-gradient(ellipse, rgba(201,168,76,.09) 0%, transparent 65%);
  top: 48%; left: 38%;
  animation: asblob6 30s ease-in-out infinite;
}
@keyframes asblob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-8%,10%) scale(1.15); }
}
@keyframes asblob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(10%,-6%) scale(1.1); }
}
@keyframes asblob3 {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  50%      { transform: translate(-6%,8%) scale(1.2) rotate(4deg); }
}
@keyframes asblob4 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(8%,-10%) scale(1.12); }
}
@keyframes asblob5 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(6%,8%) scale(1.18); }
  75%      { transform: translate(-4%,4%) scale(.92); }
}
@keyframes asblob6 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.28; }
  50%      { transform: translate(-10%,-10%) scale(1.3); opacity:.18; }
}

/* ── 24c. VIGNETTE EDGES ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    transparent 40%,
    rgba(3,8,4,.5) 75%,
    rgba(2,6,3,.85) 100%
  );
}

/* ── 24d. NOISE GRAIN TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ── 24e. SECTION GLOW DIVIDERS — removed (hard lines) ── */

/* touch devices: disable sticky hover on cards */
@media (hover: none) {
  .svc-card:hover, .svc-card:hover .svc-glow, .svc-card:hover .svc-arr { all: revert-layer; }
  .why-card:hover { background: none; }
  .res-card:hover { background: var(--bg); border-color: var(--border); }
}

/* ── 24f. SECTION AMBIENT HALOS ── */
#services   { box-shadow: inset 0 0 200px rgba(2,179,106,.04); }
#why        { box-shadow: inset 0 0 200px rgba(1,143,84,.05); }
#results    { box-shadow: inset 0 0 200px rgba(201,168,76,.04); }
#contact    { box-shadow: inset 0 0 200px rgba(2,179,106,.05); }

/* ── 24g. BACKGROUND COLOR BREATHE ── */
@keyframes bg-breathe {
  0%,100% { background-color: #050D07; }
  33%      { background-color: #060F08; }
  66%      { background-color: #04090A; }
}
body { animation: bg-breathe 20s ease-in-out infinite; }

/* ── 25. CANVAS PARTICLES ── */
#particleCanvas {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: .55;
}

/* ── 26. SHIMMER BUTTON ── */
.btn--primary { overflow: hidden; position: relative; }
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

/* ── 27. GRADIENT BORDER GLOW (featured card) ── */
.svc-card--feat {
  position: relative;
}
.svc-card--feat::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--green), var(--green-l), var(--gold), var(--green-d));
  background-size: 300% 300%;
  -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;
  animation: border-spin 4s linear infinite;
  pointer-events: none;
}
@keyframes border-spin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── 28. STAT GLOW PULSE ── */
.stat-card:hover .stat-num {
  text-shadow: 0 0 20px rgba(2,179,106,.7), 0 0 40px rgba(2,179,106,.4);
  transition: text-shadow .3s;
}

/* ── 29. HERO H1 GRADIENT TEXT ── */
.h1-line.l2 {
  background: linear-gradient(90deg, var(--green-l), #a8ffda, var(--green), var(--green-l));
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lineup .9s cubic-bezier(.16,1,.3,1) .26s both,
             text-shimmer 4s linear 1.5s infinite;
}
@keyframes text-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

/* ── 30. 3D CARD TILT ── */
.svc-card, .res-card, .tst-card, .why-card {
  transition: background var(--tb), transform .18s ease, box-shadow .18s ease;
  transform-style: preserve-3d;
}
.card-tilting {
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(2,179,106,.08) !important;
}

/* ── 31. SECTION ACCENT LIGHTS ── */
.section::before {
  content: '';
  position: absolute; left: 50%; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(94,207,160,.04), transparent);
  pointer-events: none;
}
.section { position: relative; }

/* ── 32. FLOATING ORBS DECORATION ── */
.orb-decoration {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}

/* ── 33. HERO BADGE GLOW ── */
.hero-badge {
  animation: fadeup .8s var(--ease) .1s both, badge-glow 3s ease-in-out 1.5s infinite;
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(94,207,160,0); }
  50%      { box-shadow: 0 0 18px 2px rgba(94,207,160,.2); }
}

/* ── 34. SCROLL PROGRESS RAINBOW ── */
.scroll-progress {
  background: linear-gradient(90deg,
    var(--green-d) 0%,
    var(--green) 30%,
    var(--green-l) 60%,
    #a8ffda 80%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  animation: progress-flow 2s linear infinite;
}
@keyframes progress-flow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── 35. CURSOR TRAIL ── */
.cursor-trail {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 99990;
  transform: translate(-50%,-50%);
  background: var(--green-l);
  animation: trail-fade .6s ease forwards;
}
@keyframes trail-fade {
  from { opacity: .35; transform: translate(-50%,-50%) scale(1); }
  to   { opacity: 0;   transform: translate(-50%,-50%) scale(0); }
}

/* ── 36. TICKER ENHANCED ── */
.ti-hi {
  position: relative;
  text-shadow: 0 0 12px rgba(94,207,160,.6);
}

/* ── 37. SECTION LABEL PULSE LINE ── */
.sec-label::before {
  animation: label-line 2s ease-in-out infinite alternate;
}
@keyframes label-line {
  from { width: 22px; opacity: 1; }
  to   { width: 36px; opacity: .6; }
}

/* ── 38. WA FLOAT LABEL BOUNCE ── */
.wa-float:hover .wa-float-lbl {
  animation: bounce-lbl .4s var(--ease);
}
@keyframes bounce-lbl {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ── 39. AI CHAT WIDGET ── */
.ai-chat-btn {
  position: fixed; bottom: 24px; left: 24px; z-index: 500;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green-d), var(--green));
  color: var(--bg); border: none; cursor: pointer;
  padding: 12px 18px; border-radius: var(--r-f);
  font-size: 13px; font-weight: 700; font-family: var(--ff-body);
  box-shadow: 0 4px 22px rgba(2,179,106,.4);
  transition: transform var(--tf), box-shadow var(--tb);
  animation: ai-pulse 3s ease-in-out infinite;
}
.ai-chat-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(2,179,106,.55); }
.ai-chat-btn i { font-size: 18px; }
.ai-chat-btn-lbl { letter-spacing: .04em; }
@keyframes ai-pulse {
  0%,100% { box-shadow: 0 4px 22px rgba(2,179,106,.4); }
  50%      { box-shadow: 0 4px 32px rgba(2,179,106,.65), 0 0 0 8px rgba(2,179,106,.07); }
}

.ai-chat {
  position: fixed; bottom: 90px; left: 24px; z-index: 600;
  width: min(380px, calc(100vw - 48px));
  background: rgba(8,22,12,.92);
  border: 1px solid rgba(2,179,106,.22);
  border-radius: 20px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(94,207,160,.06);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px) scale(.96);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  max-height: 540px;
}
.ai-chat.open {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}

.ai-chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid rgba(2,179,106,.12);
  flex-shrink: 0;
}
.ai-chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-d), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 18px; flex-shrink: 0;
}
.ai-chat-header-info { flex: 1; }
.ai-chat-name { font-size: 14px; font-weight: 700; color: var(--text); font-family: var(--ff-head); }
.ai-chat-status { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.ai-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); display: inline-block;
  animation: status-blink 2s ease-in-out infinite;
}
@keyframes status-blink {
  0%,100% { opacity: 1; } 50% { opacity: .4; }
}
.ai-chat-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-3); font-size: 18px; padding: 4px;
  transition: color var(--tb);
}
.ai-chat-close:hover { color: var(--text); }

.ai-chat-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  scrollbar-width: thin; scrollbar-color: rgba(2,179,106,.2) transparent;
}
.ai-chat-messages::-webkit-scrollbar { width: 4px; }
.ai-chat-messages::-webkit-scrollbar-thumb { background: rgba(2,179,106,.2); border-radius: 2px; }

.ai-msg { max-width: 88%; }
.ai-msg--bot {
  align-self: flex-start;
  background: rgba(2,179,106,.08);
  border: 1px solid rgba(2,179,106,.12);
  border-radius: 4px 16px 16px 16px;
  padding: 12px 14px;
  font-size: 13px; line-height: 1.6; color: var(--text-2);
}
.ai-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--green-d), var(--green));
  border-radius: 16px 16px 4px 16px;
  padding: 10px 14px;
  font-size: 13px; line-height: 1.6; color: var(--bg); font-weight: 500;
}
.ai-msg-ar { color: var(--text-3); font-size: 12px; margin-top: 6px; direction: rtl; }

.ai-quick-btns {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.ai-quick-btn {
  background: rgba(2,179,106,.08); border: 1px solid rgba(2,179,106,.2);
  color: var(--green-l); font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: var(--r-f); cursor: pointer;
  transition: background var(--tb), border-color var(--tb);
  font-family: var(--ff-body);
}
.ai-quick-btn:hover { background: rgba(2,179,106,.16); border-color: var(--green); }

.ai-chat-typing {
  padding: 8px 18px; display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.ai-chat-typing[hidden] { display: none !important; }
.ai-chat-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); display: inline-block;
  animation: typing-dot .9s ease-in-out infinite;
}
.ai-chat-typing span:nth-child(2) { animation-delay: .18s; }
.ai-chat-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing-dot {
  0%,60%,100% { transform: translateY(0); opacity: .4; }
  30%          { transform: translateY(-6px); opacity: 1; }
}

.ai-chat-input-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-top: 1px solid rgba(2,179,106,.1);
  flex-shrink: 0;
}
.ai-chat-input {
  flex: 1; background: rgba(255,255,255,.04);
  border: 1px solid rgba(2,179,106,.15);
  border-radius: var(--r-f); padding: 10px 14px;
  color: var(--text); font-size: 13px; font-family: var(--ff-body);
  outline: none; transition: border-color var(--tb);
}
.ai-chat-input::placeholder { color: var(--text-3); }
.ai-chat-input:focus { border-color: rgba(2,179,106,.45); }
.ai-chat-send {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: var(--bg); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background var(--tb), transform var(--tf);
}
.ai-chat-send:hover { background: var(--green-l); transform: scale(1.08); }
.ai-chat-send:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.ai-chat-footer {
  text-align: center; font-size: 10px; color: var(--text-3);
  padding: 8px 16px 14px; flex-shrink: 0;
}
.ai-chat-footer a { color: var(--green-l); text-decoration: none; }
.ai-chat-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .ai-chat {
    left: 0; right: 0; bottom: 0;
    width: 100%;
    max-height: 78vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .ai-chat.open {
    transform: translateY(0);
  }
  .ai-chat-btn {
    bottom: 16px; left: 16px;
  }
  .mobile-wa { display: none; }
  .nav-wa { display: none; }
}

/* Glow cursor */
.ai-cursor {
  display: inline-block;
  color: var(--green-l);
  font-size: 13px;
  animation: cursor-glow 0.7s ease-in-out infinite alternate;
  margin-left: 1px;
  vertical-align: middle;
}
@keyframes cursor-glow {
  0%   { opacity: 1; text-shadow: 0 0 6px rgba(94,207,160,.9), 0 0 14px rgba(94,207,160,.5); }
  100% { opacity: 0.3; text-shadow: none; }
}

/* Bot message rich formatting */
.ai-msg--bot p { margin: 0 0 8px; }
.ai-msg--bot p:last-child { margin-bottom: 0; }
.ai-msg--bot ul {
  margin: 6px 0 8px;
  padding-left: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 5px;
}
.ai-msg--bot ul li {
  display: flex; align-items: flex-start; gap: 7px;
  line-height: 1.55;
}
.ai-msg--bot ul li::before {
  content: '›';
  color: var(--green-l);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ai-msg--bot strong {
  color: var(--text);
  font-weight: 700;
}
.ai-msg--bot br { display: block; margin: 3px 0; content: ''; }

/* ── AI CHAT — MOBILE ── */
@media (max-width: 600px) {
  .ai-chat-btn {
    bottom: 16px; left: 16px;
    padding: 10px 14px; font-size: 12px;
  }
  .ai-chat {
    /* Full screen overlay on mobile */
    left: 0; right: 0; bottom: 0;
    width: 100%; max-height: 92svh;
    border-radius: 20px 20px 0 0;
    border-left: none; border-right: none; border-bottom: none;
  }
  .ai-chat.open {
    transform: translateY(0) scale(1);
  }
  .ai-chat-messages {
    max-height: calc(92svh - 180px);
  }
  .ai-chat-header { padding: 14px 16px; }
  .ai-chat-name { font-size: 13px; }
  .ai-chat-input { font-size: 16px; /* prevents iOS zoom */ }
  .ai-quick-btns { gap: 5px; }
  .ai-quick-btn { font-size: 10px; padding: 4px 9px; }
}

/* ── 39. GOLD AMOUNT FLICKER ── */
.res-amount-val {
  animation: gold-flicker 5s ease-in-out infinite;
}
@keyframes gold-flicker {
  0%,90%,100% { text-shadow: none; }
  92%          { text-shadow: 0 0 12px rgba(201,168,76,.7); }
  95%          { text-shadow: 0 0 4px  rgba(201,168,76,.3); }
  97%          { text-shadow: 0 0 20px rgba(201,168,76,.9); }
}

/* ── 40. MOBILE MENU ITEM STAGGER ── */
.mobile-menu li { opacity: 0; transform: translateY(20px); transition: none; }
.mobile-menu.open li {
  opacity: 1; transform: translateY(0);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.open li:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open li:nth-child(2) { transition-delay: .18s; }
.mobile-menu.open li:nth-child(3) { transition-delay: .26s; }
.mobile-menu.open li:nth-child(4) { transition-delay: .34s; }
