/* ==========================================================================
   Alex Hash — Design System v2
   Deep charcoal-green canvas, lime primary, iOS-26 style Liquid Glass
   surfaces (layered translucency + specular sheen + soft inner light).
   Type: Sora (display) / Inter Tight (UI) / Instrument Serif (accent).
   ========================================================================== */

:root {
  /* Brand (editable from the WP Customizer) */
  --ah-primary: #c6f24e;              /* lime */
  --ah-primary-hover: #d5fa6d;
  --ah-on-primary: #0b1410;
  --ah-primary-soft: rgba(198, 242, 78, .14);
  --ah-primary-line: rgba(198, 242, 78, .34);

  --ah-accent: #7de3c3;               /* mint */
  --ah-accent-soft: rgba(125, 227, 195, .14);

  /* Dark canvas */
  --ah-bg: #080d0b;
  --ah-bg-2: #0c1310;
  --ah-bg-3: #101815;
  --ah-ink: #f2f7f3;
  --ah-ink-2: #a9b7ae;
  --ah-ink-3: #7c8a82;
  --ah-line: rgba(255, 255, 255, .10);
  --ah-line-2: rgba(255, 255, 255, .18);

  --ah-positive: #8bdca9;
  --ah-warning: #f0c46a;
  --ah-error: #ff8f7a;

  /* Liquid glass */
  --ah-glass: rgba(255, 255, 255, .055);
  --ah-glass-2: rgba(255, 255, 255, .09);
  --ah-glass-line: rgba(255, 255, 255, .14);
  --ah-blur: saturate(180%) blur(26px);
  --ah-glass-shadow:
    0 1px 0 rgba(255, 255, 255, .16) inset,
    0 -1px 0 rgba(255, 255, 255, .05) inset,
    0 24px 60px rgba(0, 0, 0, .45);

  /* Shape */
  --ah-r-xs: 12px;
  --ah-r-sm: 18px;
  --ah-r-md: 24px;
  --ah-r-lg: 30px;
  --ah-r-xl: 40px;
  --ah-r-full: 999px;

  /* Type */
  --ah-font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ah-font-body: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ah-font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;

  --ah-container: 1180px;
  --ah-ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ah-ink);
  background: var(--ah-bg);
  font-family: var(--ah-font-body);
  font-size: 16.5px;
  line-height: 1.62;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient light so glass has something to refract */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(70rem 40rem at 78% -8%, rgba(198, 242, 78, .16), transparent 60%),
    radial-gradient(52rem 38rem at 4% 16%, rgba(125, 227, 195, .10), transparent 60%),
    radial-gradient(60rem 45rem at 50% 108%, rgba(198, 242, 78, .08), transparent 62%),
    var(--ah-bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 3px 3px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ah-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--ah-font-display);
  color: var(--ah-ink);
  letter-spacing: -.032em;
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.95rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; letter-spacing: -.02em; }
h1 em, h2 em {
  font-family: var(--ah-font-serif);
  font-style: italic; font-weight: 400;
  color: var(--ah-primary);
  letter-spacing: -.01em;
}
p { margin: 0 0 1rem; color: var(--ah-ink-2); }
p.lead { font-size: 1.14rem; max-width: 62ch; color: var(--ah-ink-2); }
strong, b { color: var(--ah-ink); font-weight: 600; }

:focus-visible { outline: 2px solid var(--ah-primary); outline-offset: 3px; border-radius: 8px; }

.ah-skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ah-primary); color: var(--ah-on-primary);
  padding: 12px 20px; border-radius: 0 0 var(--ah-r-sm) 0; font-weight: 600;
}
.ah-skip:focus { left: 0; }

/* ---------- Layout ---------- */
.ah-wrap { width: 100%; max-width: var(--ah-container); margin: 0 auto; padding: 0 24px; }
.ah-section { padding: 96px 0; position: relative; }
.ah-section--tight { padding: 56px 0; }
.ah-section--tint { background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0)); }
.ah-center { text-align: center; }
.ah-center .lead { margin-left: auto; margin-right: auto; }
.ah-grid { display: grid; gap: 20px; }
.ah-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ah-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ah-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ah-stack-lg { display: grid; gap: 40px; }

/* Reusable glass recipe */
.ah-glass, .ah-card, .ah-plan, .ah-machine, .ah-quote, .ah-step, .ah-info-card,
.ah-faq details, .ah-form, .ah-hero__badge, .ah-stats, .ah-table-wrap {
  position: relative;
  background: var(--ah-glass);
  backdrop-filter: var(--ah-blur);
  -webkit-backdrop-filter: var(--ah-blur);
  border: 1px solid var(--ah-glass-line);
  box-shadow: var(--ah-glass-shadow);
}
.ah-card::after, .ah-plan::after, .ah-machine::after, .ah-info-card::after,
.ah-quote::after, .ah-form::after, .ah-hero__badge::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(140deg, rgba(255,255,255,.16), rgba(255,255,255,0) 34%, rgba(255,255,255,0) 66%, rgba(255,255,255,.06));
  mix-blend-mode: screen; opacity: .8;
}

.ah-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ah-font-display);
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ah-primary);
  background: var(--ah-primary-soft);
  border: 1px solid var(--ah-primary-line);
  backdrop-filter: var(--ah-blur);
  -webkit-backdrop-filter: var(--ah-blur);
  border-radius: var(--ah-r-full);
  padding: 8px 16px;
  margin-bottom: 20px;
}
.ah-eyebrow--sand { color: var(--ah-accent); background: var(--ah-accent-soft); border-color: rgba(125,227,195,.30); }

/* ---------- Buttons ---------- */
.ah-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 14px 30px;
  font-family: var(--ah-font-display); font-size: 1rem; font-weight: 600; letter-spacing: -.01em;
  border-radius: var(--ah-r-full); border: 1px solid transparent;
  cursor: pointer; text-decoration: none !important; position: relative; overflow: hidden;
  transition: transform .25s var(--ah-ease), background-color .25s var(--ah-ease),
              box-shadow .25s var(--ah-ease), border-color .25s var(--ah-ease);
}
.ah-btn::before {
  content: ""; position: absolute; inset: 0 0 55% 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0));
  pointer-events: none;
}
.ah-btn:hover { transform: translateY(-2px); }
.ah-btn:active { transform: translateY(0) scale(.99); }
.ah-btn svg { width: 20px; height: 20px; flex: none; position: relative; }
.ah-btn > * { position: relative; }

.ah-btn--primary {
  background: var(--ah-primary); color: var(--ah-on-primary);
  box-shadow: 0 10px 30px rgba(198, 242, 78, .22), 0 1px 0 rgba(255,255,255,.5) inset;
}
.ah-btn--primary:hover { background: var(--ah-primary-hover); box-shadow: 0 16px 40px rgba(198, 242, 78, .30); }
.ah-btn--tonal {
  background: var(--ah-primary-soft); color: var(--ah-primary);
  border-color: var(--ah-primary-line);
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
}
.ah-btn--tonal:hover { background: rgba(198, 242, 78, .22); }
.ah-btn--outline {
  background: var(--ah-glass); color: var(--ah-ink); border-color: var(--ah-glass-line);
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
}
.ah-btn--outline:hover { background: var(--ah-glass-2); border-color: var(--ah-line-2); }
.ah-btn--light { background: var(--ah-primary); color: var(--ah-on-primary); }
.ah-btn--light:hover { background: var(--ah-primary-hover); }
.ah-btn--ghost-inverse {
  background: rgba(255,255,255,.10); color: var(--ah-ink); border-color: rgba(255,255,255,.22);
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
}
.ah-btn--ghost-inverse:hover { background: rgba(255,255,255,.16); }
.ah-btn--sm { min-height: 46px; padding: 10px 22px; font-size: .93rem; }
.ah-btn--block { width: 100%; }

.ah-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.ah-center .ah-actions { justify-content: center; }
.ah-link { color: var(--ah-primary); font-weight: 600; }

/* ---------- Cards ---------- */
.ah-card {
  border-radius: var(--ah-r-lg);
  padding: 32px;
  transition: transform .35s var(--ah-ease), box-shadow .35s var(--ah-ease), border-color .35s var(--ah-ease), background-color .35s var(--ah-ease);
}
.ah-card--hover:hover {
  transform: translateY(-6px);
  background: var(--ah-glass-2);
  border-color: var(--ah-primary-line);
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 32px 70px rgba(0,0,0,.5);
}
.ah-card--tonal { background: linear-gradient(160deg, rgba(198,242,78,.16), rgba(198,242,78,.05)); border-color: var(--ah-primary-line); }
.ah-card--sand { background: linear-gradient(160deg, rgba(125,227,195,.15), rgba(125,227,195,.04)); border-color: rgba(125,227,195,.28); }
.ah-card--surface { background: var(--ah-glass-2); }
.ah-card h3 { margin-bottom: 10px; }
.ah-card p:last-child { margin-bottom: 0; }
.ah-card > * { position: relative; z-index: 1; }

.ah-icon {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: var(--ah-primary-soft); color: var(--ah-primary);
  border: 1px solid var(--ah-primary-line);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset;
}
.ah-icon svg { width: 26px; height: 26px; }
.ah-icon--sand { background: var(--ah-accent-soft); color: var(--ah-accent); border-color: rgba(125,227,195,.30); }
.ah-icon--ink { background: rgba(255,255,255,.08); color: var(--ah-ink); border-color: var(--ah-glass-line); }

/* ---------- Top app bar (liquid glass) ---------- */
.ah-header { position: sticky; top: 0; z-index: 60; padding: 14px 0; transition: padding .3s var(--ah-ease); }
.ah-header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(8, 13, 11, .55);
  backdrop-filter: var(--ah-blur);
  -webkit-backdrop-filter: var(--ah-blur);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ah-ease), background-color .3s var(--ah-ease);
}
.ah-header.is-stuck::before {
  border-bottom-color: var(--ah-line);
  background: rgba(8, 13, 11, .72);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 20px 40px rgba(0,0,0,.35);
}
.ah-header .ah-wrap { position: relative; display: flex; align-items: center; gap: 24px; }

.ah-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none !important; }
.ah-logo__mark {
  width: 44px; height: 44px; border-radius: 15px; flex: none;
  background: linear-gradient(150deg, var(--ah-primary), #9fd92f);
  color: var(--ah-on-primary); display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(198,242,78,.28), 0 1px 0 rgba(255,255,255,.55) inset;
}
.ah-logo__mark svg { width: 22px; height: 22px; }
.ah-logo { max-height: 56px; }
.ah-logo__img { display: block !important; height: 46px !important; width: auto !important; max-height: 46px !important; max-width: 150px !important; }
.ah-logo--footer { max-height: 62px; }
.ah-logo--footer .ah-logo__img { height: 52px !important; max-height: 52px !important; max-width: 170px !important; }
@media (max-width: 720px) {
  .ah-logo__img { height: 38px !important; max-height: 38px !important; }
  .ah-logo--footer .ah-logo__img { height: 44px !important; max-height: 44px !important; }
}
.ah-header .ah-logo { flex: none; }
.ah-header .ah-logo__img { transition: opacity .25s var(--ah-ease); }
.ah-header .ah-logo:hover .ah-logo__img { opacity: .85; }
.ah-logo img.custom-logo, .ah-logo .custom-logo-link img { display: block !important; height: 46px !important; width: auto !important; max-height: 46px !important; max-width: 170px !important; }
.ah-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.ah-logo__name { font-family: var(--ah-font-display); font-weight: 600; font-size: 1.14rem; color: var(--ah-ink); letter-spacing: -.03em; }
.ah-logo__tag { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ah-ink-3); }

.ah-nav { margin-left: auto; }
.ah-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ah-nav a {
  display: inline-flex; padding: 10px 16px; border-radius: var(--ah-r-full);
  color: var(--ah-ink-2); font-size: .95rem; font-weight: 500; text-decoration: none !important;
  transition: color .2s var(--ah-ease), background-color .2s var(--ah-ease);
}
.ah-nav a:hover { color: var(--ah-ink); background: rgba(255,255,255,.07); }
.ah-nav .current-menu-item > a, .ah-nav .is-active > a, .ah-nav a.is-active {
  color: var(--ah-primary); background: var(--ah-primary-soft);
}
.ah-header__cta { display: flex; align-items: center; gap: 10px; }

.ah-burger {
  display: none; width: 46px; height: 46px; border-radius: 15px;
  align-items: center; justify-content: center;
  background: var(--ah-glass); border: 1px solid var(--ah-glass-line);
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
  color: var(--ah-ink); cursor: pointer;
}
.ah-burger svg { width: 24px; height: 24px; }

/* Drawer */
.ah-drawer {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(4, 8, 6, .55); backdrop-filter: blur(6px);
}
.ah-drawer.is-open { display: block; }
.ah-drawer__panel {
  position: absolute; top: 12px; right: 12px; left: 12px;
  border-radius: var(--ah-r-lg); padding: 20px;
  background: rgba(14, 21, 18, .78);
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
  border: 1px solid var(--ah-glass-line);
  box-shadow: var(--ah-glass-shadow);
  animation: ah-drop .32s var(--ah-ease);
}
@keyframes ah-drop { from { opacity: 0; transform: translateY(-14px); } }
.ah-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ah-drawer ul { list-style: none; margin: 0 0 18px; padding: 0; }
.ah-drawer li + li { border-top: 1px solid var(--ah-line); }
.ah-drawer li a { display: block; padding: 14px 6px; color: var(--ah-ink); font-weight: 500; text-decoration: none !important; }

/* ---------- Hero ---------- */
.ah-hero { padding: 78px 0 84px; position: relative; }
.ah-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.ah-hero h1 { margin-bottom: 20px; }
.ah-hero__media { position: relative; }
.ah-hero__media img {
  width: 100%; border-radius: var(--ah-r-xl);
  border: 1px solid var(--ah-glass-line);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.ah-hero__badge {
  position: absolute; left: 22px; bottom: 22px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--ah-r-md);
  background: rgba(14, 21, 18, .55);
}
.ah-hero__badge strong { display: block; font-family: var(--ah-font-display); font-size: 1.16rem; letter-spacing: -.02em; color: var(--ah-ink); }
.ah-hero__badge span { font-size: .84rem; color: var(--ah-ink-2); }
.ah-hero__badge > * { position: relative; z-index: 1; }

.ah-trustline { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--ah-line); }
.ah-trustline span { display: inline-flex; align-items: center; gap: 9px; font-size: .93rem; color: var(--ah-ink-2); }
.ah-trustline svg { width: 19px; height: 19px; color: var(--ah-primary); flex: none; }

/* ---------- Stats ---------- */
.ah-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--ah-r-lg); overflow: hidden;
}
.ah-stats > div { padding: 30px 26px; text-align: center; border-right: 1px solid var(--ah-line); }
.ah-stats > div:last-child { border-right: 0; }
.ah-stats strong {
  display: block; font-family: var(--ah-font-display); font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -.035em; color: var(--ah-primary);
}
.ah-stats span { font-size: .9rem; color: var(--ah-ink-2); }

/* ---------- Split ---------- */
.ah-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ah-split--flip .ah-split__media { order: 2; }
.ah-split__media img { width: 100%; border-radius: var(--ah-r-xl); border: 1px solid var(--ah-glass-line); box-shadow: 0 34px 80px rgba(0,0,0,.5); }

.ah-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.ah-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ah-ink-2); }
.ah-list svg { width: 22px; height: 22px; color: var(--ah-primary); flex: none; margin-top: 2px; }

/* ---------- Pricing ---------- */
.ah-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.ah-plan { border-radius: var(--ah-r-lg); padding: 34px 30px; display: flex; flex-direction: column; }
.ah-plan > * { position: relative; z-index: 1; }
.ah-plan--featured {
  background: linear-gradient(165deg, rgba(198,242,78,.20), rgba(198,242,78,.05));
  border-color: var(--ah-primary-line);
  box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 30px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(198,242,78,.12);
  transform: translateY(-10px);
}
.ah-plan__flag {
  display: inline-block; margin-bottom: 14px; padding: 6px 14px; border-radius: var(--ah-r-full);
  background: var(--ah-primary); color: var(--ah-on-primary);
  font-family: var(--ah-font-display); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.ah-plan h3 { margin-bottom: 6px; }
.ah-plan__price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 6px; padding-top: 20px; border-top: 1px solid var(--ah-line); }
.ah-plan__price strong { font-family: var(--ah-font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: -.03em; color: var(--ah-primary); }
.ah-plan__price span { font-size: .9rem; color: var(--ah-ink-3); }
.ah-plan__features { list-style: none; margin: 18px 0 26px; padding: 0; display: grid; gap: 12px; flex: 1; }
.ah-plan__features li { display: flex; gap: 11px; font-size: .95rem; color: var(--ah-ink-2); }
.ah-plan__features svg { width: 19px; height: 19px; color: var(--ah-primary); flex: none; margin-top: 3px; }

/* ---------- Steps ---------- */
.ah-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ah-step { border-radius: var(--ah-r-md); padding: 28px 24px; }
.ah-step > * { position: relative; z-index: 1; }
.ah-step__num {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--ah-primary); color: var(--ah-on-primary);
  font-family: var(--ah-font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(198,242,78,.25);
}
.ah-step h4 { margin-bottom: 8px; }
.ah-step p { margin: 0; font-size: .95rem; }

/* ---------- Machines ---------- */
.ah-machine { border-radius: var(--ah-r-lg); overflow: hidden; display: flex; flex-direction: column; }
.ah-machine__img { background: rgba(255,255,255,.05); padding: 0; }
.ah-machine__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ah-machine__body { padding: 26px; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 1; }
.ah-machine__body h3 { font-size: 1.22rem; }

.ah-chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: var(--ah-r-full);
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--ah-font-display);
  background: rgba(255,255,255,.08); color: var(--ah-ink-2); border: 1px solid var(--ah-glass-line);
}
.ah-chip--stock { background: var(--ah-primary-soft); color: var(--ah-primary); border-color: var(--ah-primary-line); }
.ah-chip--order { background: var(--ah-accent-soft); color: var(--ah-accent); border-color: rgba(125,227,195,.3); }

.ah-specs { list-style: none; margin: 18px 0 20px; padding: 0; display: grid; gap: 0; flex: 1; }
.ah-specs li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--ah-line); font-size: .93rem; }
.ah-specs li:last-child { border-bottom: 0; }
.ah-specs span { color: var(--ah-ink-3); }
.ah-specs b { color: var(--ah-ink); font-weight: 600; }

/* ---------- Quotes ---------- */
.ah-quote { border-radius: var(--ah-r-lg); padding: 30px; }
.ah-quote > * { position: relative; z-index: 1; }
.ah-quote p { font-size: 1.03rem; color: var(--ah-ink); font-family: var(--ah-font-serif); font-size: 1.22rem; line-height: 1.45; }
.ah-quote__who { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--ah-line); }
.ah-quote__avatar {
  width: 46px; height: 46px; border-radius: var(--ah-r-full); display: grid; place-items: center; flex: none;
  background: var(--ah-primary-soft); color: var(--ah-primary); border: 1px solid var(--ah-primary-line);
  font-family: var(--ah-font-display); font-weight: 600; font-size: .92rem;
}
.ah-quote__who strong { display: block; font-size: .97rem; }
.ah-quote__who span { font-size: .86rem; color: var(--ah-ink-3); }

/* ---------- FAQ ---------- */
.ah-faq { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.ah-faq details { border-radius: var(--ah-r-md); padding: 4px 26px; }
.ah-faq summary {
  list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--ah-font-display); font-weight: 500; font-size: 1.05rem; letter-spacing: -.02em; color: var(--ah-ink);
}
.ah-faq summary::-webkit-details-marker { display: none; }
.ah-faq summary::after {
  content: "+"; font-size: 1.5rem; line-height: 1; color: var(--ah-primary); flex: none;
  transition: transform .3s var(--ah-ease);
}
.ah-faq details[open] summary::after { transform: rotate(45deg); }
.ah-faq details p { margin: 0 0 22px; max-width: 72ch; }

/* ---------- CTA band ---------- */
.ah-cta {
  position: relative; overflow: hidden; border-radius: var(--ah-r-xl); padding: 62px 56px;
  background: linear-gradient(150deg, rgba(198,242,78,.20), rgba(125,227,195,.10) 45%, rgba(255,255,255,.05));
  border: 1px solid var(--ah-primary-line);
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
  box-shadow: 0 1px 0 rgba(255,255,255,.24) inset, 0 40px 90px rgba(0,0,0,.5);
}
.ah-cta__ring {
  position: absolute; width: 460px; height: 460px; right: -140px; top: -180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,242,78,.30), transparent 62%);
  pointer-events: none;
}
.ah-cta__inner { position: relative; display: grid; grid-template-columns: 1.5fr .8fr; gap: 44px; align-items: center; }
.ah-cta h2 { margin-bottom: 14px; }
.ah-cta p { margin: 0; color: var(--ah-ink-2); }

/* ---------- Page hero ---------- */
.ah-page-hero { padding: 62px 0 58px; border-bottom: 1px solid var(--ah-line); }
.ah-page-hero h1 { max-width: 20ch; }
.ah-crumbs { font-size: .87rem; color: var(--ah-ink-3); margin-bottom: 22px; }
.ah-crumbs a { color: var(--ah-ink-2); }

/* ---------- Tables ---------- */
.ah-table-wrap { border-radius: var(--ah-r-lg); overflow: hidden; }
.ah-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.ah-table th, .ah-table td { padding: 17px 22px; text-align: left; border-bottom: 1px solid var(--ah-line); }
.ah-table th { font-family: var(--ah-font-display); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ah-ink-3); background: rgba(255,255,255,.05); }
.ah-table td { color: var(--ah-ink-2); }
.ah-table tr:last-child td { border-bottom: 0; }
.ah-table strong { color: var(--ah-ink); }

/* ---------- Contact ---------- */
.ah-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.ah-info-card { border-radius: var(--ah-r-lg); padding: 32px; }
.ah-info-card > * { position: relative; z-index: 1; }
.ah-info-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 18px; }
.ah-info-list li { display: flex; gap: 15px; align-items: flex-start; }
.ah-info-list svg { width: 22px; height: 22px; color: var(--ah-primary); flex: none; margin-top: 4px; }
.ah-info-list strong { display: block; font-size: .95rem; }
.ah-info-list span, .ah-info-list a { font-size: .95rem; color: var(--ah-ink-2); }

.ah-map { border-radius: var(--ah-r-lg); overflow: hidden; border: 1px solid var(--ah-glass-line); margin-top: 24px; }
.ah-map iframe { display: block; width: 100%; height: 320px; border: 0; filter: grayscale(.2) invert(.92) hue-rotate(180deg) contrast(.9); }

/* ---------- Form ---------- */
.ah-form { border-radius: var(--ah-r-lg); padding: 34px; }
.ah-form > * { position: relative; z-index: 1; }
.ah-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ah-field { display: block; margin-bottom: 16px; }
.ah-field > span { display: block; font-size: .86rem; font-weight: 600; color: var(--ah-ink-2); margin-bottom: 8px; }
.ah-field input, .ah-field select, .ah-field textarea {
  width: 100%; padding: 14px 17px; font: inherit; font-size: .97rem; color: var(--ah-ink);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--ah-glass-line); border-radius: var(--ah-r-xs);
  transition: border-color .2s var(--ah-ease), background-color .2s var(--ah-ease), box-shadow .2s var(--ah-ease);
}
.ah-field input::placeholder, .ah-field textarea::placeholder { color: var(--ah-ink-3); }
.ah-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ah-ink-2) 50%), linear-gradient(135deg, var(--ah-ink-2) 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.ah-field select option { background: #101815; color: var(--ah-ink); }
.ah-field textarea { min-height: 148px; resize: vertical; }
.ah-field input:focus, .ah-field select:focus, .ah-field textarea:focus {
  outline: none; border-color: var(--ah-primary-line); background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 4px rgba(198,242,78,.14);
}
.ah-consent { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--ah-ink-2); margin: 6px 0 20px; }
.ah-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ah-primary); flex: none; }
.ah-form-note { font-size: .85rem; color: var(--ah-ink-3); margin-top: 16px; }
.ah-honeypot { position: absolute !important; left: -9999px !important; }

.ah-alert { border-radius: var(--ah-r-sm); padding: 15px 18px; margin-bottom: 18px; font-size: .95rem; border: 1px solid transparent; }
.ah-alert--ok { background: rgba(139,220,169,.13); border-color: rgba(139,220,169,.35); color: #cdf3da; }
.ah-alert--err { background: rgba(255,143,122,.12); border-color: rgba(255,143,122,.35); color: #ffc9bd; }

/* ---------- Footer ---------- */
.ah-footer {
  margin-top: 40px; padding: 76px 0 34px;
  background: rgba(255,255,255,.035);
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
  border-top: 1px solid var(--ah-line);
}
.ah-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.ah-footer h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ah-ink-3); margin-bottom: 18px; }
.ah-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ah-footer a { color: var(--ah-ink-2); font-size: .95rem; text-decoration: none; }
.ah-footer a:hover { color: var(--ah-primary); }
.ah-footer li { color: var(--ah-ink-2); font-size: .95rem; }
.ah-footer p { font-size: .95rem; }
.ah-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--ah-line);
  font-size: .86rem; color: var(--ah-ink-3);
}
.ah-credit { color: var(--ah-primary) !important; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--ah-primary-line); }
.ah-credit:hover { color: var(--ah-primary-hover) !important; border-bottom-color: var(--ah-primary); }
.ah-social { display: flex; gap: 10px; margin-top: 22px; }
.ah-social a {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid var(--ah-glass-line); color: var(--ah-ink-2);
  transition: all .25s var(--ah-ease);
}
.ah-social a:hover { background: var(--ah-primary); border-color: transparent; color: var(--ah-on-primary); transform: translateY(-3px); }
.ah-social svg { width: 19px; height: 19px; }

/* ---------- Floating WhatsApp ---------- */
.ah-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px; border-radius: var(--ah-r-full);
  background: rgba(37, 211, 102, .92); color: #04140a; font-weight: 600;
  font-family: var(--ah-font-display); text-decoration: none !important;
  backdrop-filter: var(--ah-blur); -webkit-backdrop-filter: var(--ah-blur);
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(255,255,255,.45) inset, 0 18px 40px rgba(0,0,0,.45);
  transition: transform .25s var(--ah-ease), box-shadow .25s var(--ah-ease);
}
.ah-fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.ah-fab svg { width: 24px; height: 24px; }

/* ---------- Editorial / WP content ---------- */
.ah-prose { max-width: 74ch; }
.ah-prose h2, .ah-prose h3 { margin-top: 1.6em; }
.ah-figure { margin: 0 0 28px; }
.ah-figure img { border-radius: var(--ah-r-lg); }
.ah-pagination { margin-top: 40px; }
.ah-pagination a, .ah-pagination .current { display: inline-block; padding: 8px 14px; border-radius: var(--ah-r-full); background: var(--ah-glass); border: 1px solid var(--ah-glass-line); margin-right: 8px; color: var(--ah-ink-2); }
.ah-pagination .current { background: var(--ah-primary); color: var(--ah-on-primary); border-color: transparent; }
.ah-searchform { display: flex; gap: 10px; max-width: 480px; }
.ah-searchform input { flex: 1; padding: 13px 17px; font: inherit; color: var(--ah-ink); background: rgba(255,255,255,.06); border: 1px solid var(--ah-glass-line); border-radius: var(--ah-r-full); }
.ah-postnav { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--ah-line); }
.ah-comments { margin-top: 40px; }
.ah-commentlist { list-style: none; padding: 0; }

/* ---------- Reveal on scroll ---------- */
.ah-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ah-ease), transform .7s var(--ah-ease); }
.ah-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ah-nav { display: none; }
  .ah-burger { display: inline-flex; }
  .ah-header__cta { margin-left: auto; }
  .ah-hero__grid, .ah-split { grid-template-columns: 1fr; gap: 40px; }
  .ah-split--flip .ah-split__media { order: 0; }
  .ah-grid--3, .ah-grid--4, .ah-price-grid, .ah-steps { grid-template-columns: repeat(2, 1fr); }
  .ah-plan--featured { transform: none; }
  .ah-stats { grid-template-columns: repeat(2, 1fr); }
  .ah-stats > div:nth-child(2) { border-right: 0; }
  .ah-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--ah-line); }
  .ah-cta { padding: 46px 34px; }
  .ah-cta__inner { grid-template-columns: 1fr; gap: 28px; }
  .ah-contact-grid { grid-template-columns: 1fr; }
  .ah-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 720px) {
  .ah-section { padding: 64px 0; }
  .ah-hero { padding: 46px 0 60px; }
  .ah-grid--2, .ah-grid--3, .ah-grid--4, .ah-price-grid, .ah-steps, .ah-form-row { grid-template-columns: 1fr; }
  .ah-stats { grid-template-columns: 1fr; }
  .ah-stats > div { border-right: 0; border-bottom: 1px solid var(--ah-line); }
  .ah-stats > div:last-child { border-bottom: 0; }
  .ah-footer__grid { grid-template-columns: 1fr; }
  .ah-header__cta .ah-btn--primary { display: none; }
  .ah-card, .ah-plan, .ah-form, .ah-info-card { padding: 26px 22px; }
  .ah-fab span { display: none; }
  .ah-fab { padding: 16px; }
  .ah-hero__badge { left: 14px; bottom: 14px; padding: 13px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .ah-reveal { opacity: 1; transform: none; }
}
