/* ============================================================
   Clickr — Growth Engine landing page (native, theme-embedded)
   Design tokens + component styles. Fonts reuse the theme's own
   Figtree / DM Sans / Futura (declared in theme.json), so no
   @font-face is needed here.
   Content aligns to the theme's .main-container (1680px / 80px gutters).
   ============================================================ */

:root {
  /* Brand */
  --clickr-orange:       #FF6900;
  --clickr-orange-warm:  #FF6B2B;
  --clickr-orange-light: #FF8C55;
  --clickr-orange-dark:  #E05520;
  --clickr-orange-15:    rgba(255,105,0,0.15);
  --clickr-orange-08:    rgba(255,105,0,0.08);
  --clickr-burnt:        #602E06;
  --clickr-cream:        #FBF5E8;

  /* Surface (dark) */
  --clickr-black:  #000000;
  --clickr-ink:    #1C1C1C;
  --clickr-card:   #161B30;
  --clickr-navy-4: #1E2440;
  --clickr-border: #252D4A;

  /* Text */
  --clickr-white:      #FFFFFF;
  --clickr-fg:         #FFFFFF;
  --clickr-fg-2:       #9BA3C0;
  --clickr-fg-3:       #5C657E;
  --clickr-on-orange:  #090D06;

  /* Typography families — reuse the theme's registered fonts */
  --font-display: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
  --font-eyebrow: 'Futura', 'Jost', 'Century Gothic', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Radii */
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  24px;
  --r-card: 40px;
  --r-pill: 9999px;

  /* Shadow / glow */
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 30px rgba(255,105,0,0.30);

  /* Motion */
  --ease-default: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-default:  200ms;
  --dur-smooth:   300ms;

  /* Decorative orange glow behind hero copy */
  --glow-orange: radial-gradient(circle at center,
      rgba(255,105,0,0.50) 0%, rgba(255,105,0,0.18) 35%, transparent 70%);
}

/* Scoped resets — only inside the Growth Engine sections, so the
   theme header/footer are untouched. */
.ge-page, .ge-contact { box-sizing:border-box; }
.ge-page *, .ge-contact * { box-sizing:border-box; }
.ge-page a, .ge-contact a { text-decoration:none; }

@keyframes geDashMove { to { stroke-dashoffset:-28; } }
@keyframes geNodeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }

/* Eyebrow label */
.clickr-eyebrow {
  font-family:var(--font-eyebrow); font-weight:700; font-size:16px;
  letter-spacing:0.31em; text-transform:uppercase; color:var(--clickr-orange);
  line-height:1.125;
}

/* ── Page shell ─────────────────────────────────────────── */
/* No background — the site's own black bg + line pattern shows through.
   overflow-x:clip (not hidden) contains the decorative glow WITHOUT creating
   a scroll container, which would break the sticky product selector below. */
.ge-page {
  color:var(--clickr-fg);
  font-family:var(--font-body); overflow-x:clip;
}

/* ── Hero ───────────────────────────────────────────────── */
/* Centred to match the homepage banner. The classes below are shared with that
   banner, which carries its own overrides, so the centring is scoped to .ge-hero
   to keep the two independent. */
.ge-hero { position:relative; padding:44px 0 8px; text-align:center; }
.ge-hero .ge-hero-title { margin-left:auto; margin-right:auto; max-width:none; }
.ge-hero .ge-hero-sub { margin:18px auto 0; max-width:980px; }
/* No scroll-behavior:smooth for the #talk-to-us anchor, on purpose. Measured on
   staging: with smooth enabled the anchor jump moved 0px; with it removed, 4362px
   — i.e. smooth scrolling is a no-op here, not merely instant, so it would have
   silently broken the CTA. The plain jump always works, and .ge-contact's
   scroll-margin-top already keeps the heading clear of the sticky header. */

/* Hero CTA. .wp-block-button is only laid out by core inside .wp-block-buttons,
   so set inline-block here to let the centred hero centre it. */
.ge-hero-cta { margin-top:32px; }
.ge-hero-cta .wp-block-button { display:inline-block; }
@media (max-width: 600px) { .ge-hero-cta { margin-top:24px; } }
.ge-hero-glow {
  position:absolute; top:-60px; left:50%; transform:translateX(-50%);
  width:520px; height:300px;
  background:var(--glow-orange); pointer-events:none; filter:blur(6px); opacity:0.6;
}
.ge-hero-inner { position:relative; }
.ge-hero-eyebrow { margin-bottom:14px; }
.ge-hero-title {
  font-family:var(--font-display); font-weight:800; font-size:clamp(30px, 7vw, 52px);
  line-height:1.02; letter-spacing:-0.03em; margin:0; max-width:880px; color:var(--clickr-fg);
}
.ge-hero-sub {
  font-family:var(--font-body); font-weight:500; font-size:17.8px; line-height:30px;
  color:var(--clickr-fg-2); max-width:640px; margin:18px 0 0;
}
.ge-text-orange { color:var(--clickr-orange); }

/* ── Homepage banner ────────────────────────────────────── */
/* The front page reuses the hero copy (same classes) inside a native block
   section, so it stays editable in the block editor. Only spacing differs. */
.ge-home-banner { padding-top:30px; padding-bottom:30px; text-align:center; }
.ge-home-banner .clickr-eyebrow { margin:0 0 14px; }
/* Centred: the hero's left-aligned max-widths become auto margins. The intro
   keeps a readable measure (~70 characters) instead of stretching the full
   container on wide screens. */
.ge-home-banner .ge-hero-title { margin:0 auto; max-width:none; }
.ge-home-banner .ge-hero-sub { margin:18px auto 0; max-width:980px; }
.ge-home-banner .wp-block-buttons { margin-top:32px; justify-content:center; }
@media (max-width: 600px) {
  .ge-home-banner .wp-block-buttons { margin-top:24px; }
}

/* ── Three-step proposition ─────────────────────────────── */
.ge-steps {
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px; padding:44px 0 0;
}
.ge-step {
  display:flex; flex-direction:column; gap:14px;
  padding:34px 30px; border-radius:var(--r-2xl);
  background:var(--clickr-ink); border:1px solid var(--clickr-border);
  transition:background-color var(--dur-default) var(--ease-default),
             border-color var(--dur-default) var(--ease-default),
             transform var(--dur-default) var(--ease-default);
}
/* Hover is CSS here rather than the mock's JS state — same result, no script. */
.ge-step:hover { background:var(--clickr-orange); border-color:var(--clickr-orange); transform:translateY(-2px); }
.ge-step-num {
  font-family:var(--font-display); font-weight:800; font-size:34px;
  line-height:1; letter-spacing:-0.02em; color:var(--clickr-fg); margin:0;
}
.ge-step-title {
  font-family:var(--font-display); font-weight:800; font-size:26px;
  line-height:1.1; letter-spacing:-0.01em; color:var(--clickr-orange); margin:0;
}
.ge-step-desc {
  font-family:var(--font-body); font-size:16px; line-height:1.6;
  color:var(--clickr-fg); margin:0;
}
/* The numeral deliberately stays white on the orange fill, as in the mock. */
.ge-step:hover .ge-step-title,
.ge-step:hover .ge-step-desc { color:var(--clickr-on-orange); }

/* ── Tagline ────────────────────────────────────────────── */
.ge-tagline { padding:72px 0 8px; }
.ge-tagline-text {
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(26px, 3.2vw, 44px); line-height:1.12; letter-spacing:-0.02em;
  color:var(--clickr-fg); max-width:900px; margin:0 auto;
  text-align:center; text-wrap:pretty;
}

/* ── Product selector (tabs) ────────────────────────────── */
.ge-selector { padding:28px 0 0; }
.ge-selector-row { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px; }
.ge-product-btn {
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  gap:3px; text-align:center; width:100%; min-height:76px;
  padding:14px 18px; border-radius:var(--r-pill);
  border:1px solid var(--clickr-border); background:var(--clickr-ink);
  color:var(--clickr-fg); cursor:pointer; font-family:var(--font-body);
  transition:all var(--dur-default) var(--ease-default);
}
.ge-product-btn:hover { border-color:var(--clickr-orange); transform:translateY(-2px); }
.ge-product-btn.is-selected {
  background:var(--clickr-orange); border-color:var(--clickr-orange);
  color:var(--clickr-on-orange); box-shadow:var(--shadow-glow);
}
.ge-product-btn-name { font-size:15px; font-weight:700; line-height:1.2; }
.ge-product-btn-stat { font-size:12px; font-weight:700; opacity:0.6; line-height:1.3; }

/* ── FAQ ────────────────────────────────────────────────── */
/* Small bottom padding: the Talk To Us band supplies its own top padding, so a
   large value here doubled up into a very wide gap between the two. */
.ge-faq { padding:0 0 28px; }
.ge-faq-inner {
  display:grid; grid-template-columns:360px minmax(0,1fr); gap:56px;
  padding:56px 52px; border-radius:var(--r-card);
  background:var(--clickr-ink); border:1px solid var(--clickr-border);
}
.ge-faq-title {
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(30px, 3.4vw, 46px); line-height:1.02; letter-spacing:-0.02em;
  color:var(--clickr-fg); margin:0;
}
.ge-faq-list { display:flex; flex-direction:column; }
.ge-faq-item { border-bottom:1px solid var(--clickr-border); }
/* Native <details>: answers stay in the DOM for search engines and the
   accordion works with no JS. name= makes opening one close the others. */
.ge-faq-q {
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:24px 0; cursor:pointer; list-style:none;
  font-family:var(--font-body); color:var(--clickr-fg);
  transition:color var(--dur-default) var(--ease-default);
}
.ge-faq-list .ge-faq-item:first-child .ge-faq-q { padding-top:0; }
.ge-faq-q::-webkit-details-marker { display:none; }
.ge-faq-q::marker { content:''; }
.ge-faq-q:hover { color:var(--clickr-orange); }
.ge-faq-q-text { font-size:19px; font-weight:700; line-height:1.35; }
.ge-faq-icon {
  flex:0 0 auto; display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:var(--r-pill);
  background:var(--clickr-orange); color:var(--clickr-on-orange);
  font-size:19px; font-weight:700; line-height:1;
}
.ge-faq-icon::before { content:'+'; }
.ge-faq-item[open] .ge-faq-icon::before { content:'\2212'; }
.ge-faq-a {
  padding:0 60px 26px 0; font-family:var(--font-body);
  font-size:16px; line-height:1.65; color:var(--clickr-fg-2);
}

/* Slide-down panel.
   The height animation itself is driven by growth-engine.js, which sets an
   inline height and transition on .ge-faq-panel. Nothing here hides the panel:
   when a <details> is open the panel is at its natural height, so if the script
   never runs the accordion still works — it just opens instantly.
   (Pure-CSS routes were tried first and both hid the answer outright:
   ::details-content height 0 -> auto never resolved, and a fade from opacity:0
   froze on its first keyframe in a suspended tab.) */
.ge-faq-panel { overflow:hidden; }

/* ── Product selector (custom dropdown, mobile only) ────── */
.ge-dd { display:none; position:relative; }
.ge-dd-trigger {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 18px; border-radius:var(--r-2xl); text-align:left;
  border:1px solid var(--clickr-border); background:var(--clickr-ink);
  color:var(--clickr-fg); font-family:var(--font-body); cursor:pointer;
  transition:border-color var(--dur-default) var(--ease-default);
}
.ge-dd-trigger-text { display:flex; flex-direction:column; gap:2px; min-width:0; }
.ge-dd-trigger-name { font-size:15px; font-weight:700; line-height:1.2; }
.ge-dd-trigger-stat { font-size:12px; font-weight:700; opacity:0.6; }
.ge-dd-caret {
  flex:0 0 auto; width:9px; height:9px; margin-right:4px;
  border-right:2px solid var(--clickr-orange); border-bottom:2px solid var(--clickr-orange);
  transform:rotate(45deg) translateY(-2px);
  transition:transform var(--dur-default) var(--ease-default);
}
.ge-dd.is-open .ge-dd-trigger { border-color:var(--clickr-orange); }
.ge-dd.is-open .ge-dd-caret { transform:rotate(-135deg); }
.ge-dd-panel {
  display:none; position:absolute; left:0; right:0; top:calc(100% + 8px); z-index:20;
  background:var(--clickr-card); border:1px solid var(--clickr-border);
  border-radius:var(--r-xl); padding:6px; max-height:60vh; overflow-y:auto;
  box-shadow:var(--shadow-lg);
}
.ge-dd.is-open .ge-dd-panel { display:block; }
.ge-dd-option {
  width:100%; display:flex; flex-direction:column; gap:2px; text-align:left;
  padding:12px 14px; border:none; background:transparent; color:var(--clickr-fg);
  border-radius:var(--r-lg); cursor:pointer; font-family:var(--font-body);
}
.ge-dd-option:hover { background:var(--clickr-navy-4); }
.ge-dd-option.is-selected { background:var(--clickr-orange); color:var(--clickr-on-orange); }
.ge-dd-option-name { font-size:15px; font-weight:700; line-height:1.2; }
.ge-dd-option-stat { font-size:12px; font-weight:700; opacity:0.6; }

/* ── Flowchart ──────────────────────────────────────────── */
.ge-flow { margin:26px 0 0; padding:0 0 64px; }
.ge-flow-panel {
  position:relative; border-radius:var(--r-card);
  background:rgba(255,255,255,0.02); border:1px solid var(--clickr-border);
  padding:44px 40px 36px;
}
.ge-flow-row { display:flex; align-items:stretch; gap:0; }

.ge-node {
  flex:1; display:flex; flex-direction:column; gap:10px;
  padding:22px 18px; border-radius:var(--r-2xl);
  background:var(--clickr-ink); border:1px solid var(--clickr-border);
  animation:geNodeIn .35s var(--ease-default) both;
}
.ge-node--approve { border:2px solid var(--clickr-orange); background:var(--clickr-orange-08); }
.ge-node--activate { background:var(--clickr-orange); border:none; }
.ge-delay-1 { animation-delay:.06s; }
.ge-delay-2 { animation-delay:.12s; }
.ge-delay-3 { animation-delay:.18s; }
.ge-delay-4 { animation-delay:.24s; }
.ge-delay-5 { animation-delay:.3s; }

.ge-node-label {
  align-self:flex-start; font-family:var(--font-eyebrow); font-weight:700;
  font-size:12px; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--clickr-on-orange); background:var(--clickr-orange);
  padding:5px 12px; border-radius:var(--r-pill);
}
.ge-node-label--approve { color:var(--clickr-orange); background:none; padding:0; border-radius:0; }
.ge-node-label--activate { color:var(--clickr-burnt); background:none; padding:0; border-radius:0; }

.ge-node-body { font-size:14.5px; line-height:1.5; color:var(--clickr-fg); }
.ge-node-body--activate { color:var(--clickr-on-orange); font-weight:700; }

.ge-node-caption { font-size:12px; color:var(--clickr-fg-3); margin-top:auto; }
.ge-node-caption--approve { color:var(--clickr-orange); }
.ge-node-caption--activate { color:var(--clickr-burnt); }

.ge-flow-arrow { flex:0 0 34px; display:flex; align-items:center; justify-content:center; }
.ge-dash { animation:geDashMove 1s linear infinite; }
.ge-dash-slow { animation:geDashMove 1.2s linear infinite; }

/* The theme's media reset (`canvas, img, svg, video { height:auto }`) overrides
   our SVG height attributes and re-sizes them to their intrinsic aspect ratio.
   For the loop-back that stretched the 36px strip to ~52px, dropping the dashed
   line below the label instead of behind it. Pin the sizes explicitly. */
.ge-flow-arrow svg { width:28px; height:20px; max-width:none; flex:0 0 auto; }
.ge-loop-svg { width:100%; height:36px; max-width:none; }
.ge-loop-mobile svg { width:26px; height:42px; max-width:none; }

/* ── Loop-back ──────────────────────────────────────────── */
.ge-loop { position:relative; margin-top:30px; height:36px; }
.ge-loop-svg { position:absolute; inset:0; }
.ge-loop-label {
  position:absolute; left:50%; top:14px; transform:translate(-50%,0);
  white-space:nowrap; background:var(--clickr-black); padding:2px 18px;
  font-family:var(--font-eyebrow); font-weight:700; font-size:12px;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--clickr-fg-2);
}
.ge-loop-mobile { display:none; }

/* ── Talk to us / Contact (dark section) ────────────────── */
/* No background — inherits the site's black bg + line pattern. */
/* scroll-margin-top keeps the #talk-to-us anchor (linked from the homepage
   "Get a Diagnosis" CTA) clear of the sticky header, which would otherwise
   cover the heading on arrival. */
.ge-contact {
  color:var(--clickr-fg); font-family:var(--font-body); padding:56px 0 80px;
  scroll-margin-top:calc(var(--site-header-h, 0px) + 16px);
}
.ge-card-title {
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(32px, 5vw, 52px); line-height:1.05; letter-spacing:-0.02em;
  text-transform:uppercase; color:var(--clickr-orange); margin:0 0 16px;
}
.ge-card-sub {
  font-family:var(--font-body); font-size:clamp(16px, 1.6vw, 19px); line-height:1.6;
  color:var(--clickr-fg-2); margin:0 0 32px; max-width:760px;
}
/* Form spans the full container width (fields are laid out in a 2-col grid
   inside the HubSpot iframe — see cssRequired in growth-engine.js). */
.ge-hs-form { width:100%; }

/* ── Form loading state ─────────────────────────────────── */
/* The skeleton mirrors the real form's layout so there's no jump when
   HubSpot swaps in. growth-engine.js adds .is-loaded on onFormReady. */
.ge-form-shell { position:relative; width:100%; }
.ge-form-shell .ge-hs-form { opacity:0; transition:opacity var(--dur-default) var(--ease-default); }
.ge-form-shell.is-loaded .ge-hs-form { opacity:1; }
.ge-form-shell.is-loaded .ge-form-loading { display:none; }

.ge-form-loading { display:block; }
.ge-form-loading-label {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-eyebrow); font-weight:700; font-size:12px;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--clickr-fg-3);
  margin-bottom:22px;
}
.ge-form-spinner {
  width:16px; height:16px; flex:0 0 auto; border-radius:50%;
  border:2px solid var(--clickr-border); border-top-color:var(--clickr-orange);
  animation:geSpin .7s linear infinite;
}
@keyframes geSpin { to { transform:rotate(360deg); } }

.ge-skel-grid {
  display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
  column-gap:24px; row-gap:18px;
}
.ge-skel-wide { grid-column:1 / -1; }
.ge-skel-field { display:flex; flex-direction:column; gap:8px; }

/* Shimmer sweep, warmed with the brand orange so it reads as ours. */
.ge-skel {
  display:block; border-radius:8px;
  background:linear-gradient(90deg,
    var(--clickr-ink) 0%, #2a2118 40%, var(--clickr-ink) 80%);
  background-size:220% 100%;
  animation:geShimmer 1.4s ease-in-out infinite;
}
.ge-skel-label { width:120px; height:11px; border-radius:4px; }
.ge-skel-input { height:46px; }
.ge-skel-area  { height:130px; }
.ge-skel-btn   { width:190px; height:50px; border-radius:var(--r-pill); }
@keyframes geShimmer {
  0%   { background-position:120% 0; }
  100% { background-position:-120% 0; }
}

/* Fallback if the embed can't load at all */
.ge-form-error {
  font-size:15px; line-height:1.6; color:var(--clickr-fg-2);
  border:1px solid var(--clickr-border); border-radius:var(--r-lg);
  padding:20px 22px; background:var(--clickr-ink);
}
.ge-form-error a { color:var(--clickr-orange); font-weight:700; }

@media (max-width: 720px) {
  .ge-skel-grid { grid-template-columns:1fr; }
}

/* HubSpot form — dark styling (applies when HubSpot renders inline; the
   iframe case is styled by the cssRequired block in growth-engine.js) */
.ge-hs-form .hs-form-field { margin-bottom:16px; }
.ge-hs-form label { font-size:13px; font-weight:700; color:var(--clickr-fg); display:block; margin-bottom:6px; }
.ge-hs-form input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.ge-hs-form textarea, .ge-hs-form select {
  width:100%; padding:12px 14px; border:1px solid var(--clickr-border); border-radius:var(--r-md);
  background:var(--clickr-ink); font-family:var(--font-body); font-size:15px; color:var(--clickr-fg);
}
.ge-hs-form input::placeholder, .ge-hs-form textarea::placeholder { color:var(--clickr-fg-3); }
.ge-hs-form input:focus, .ge-hs-form textarea:focus, .ge-hs-form select:focus {
  outline:none; border-color:var(--clickr-orange); background:#101010;
}
.ge-hs-form .hs-richtext, .ge-hs-form .hs-form-booleancheckbox-display span,
.ge-hs-form legend, .ge-hs-form p { color:var(--clickr-fg-2); }
.ge-hs-form .hs-button, .ge-hs-form input[type=submit] {
  background:var(--clickr-orange); color:var(--clickr-on-orange);
  border:none; border-radius:var(--r-pill); padding:14px 32px;
  font-family:var(--font-body); font-weight:700; font-size:15px;
  letter-spacing:0.06em; text-transform:uppercase; cursor:pointer; margin-top:8px;
  transition:background var(--dur-default) var(--ease-default);
}
.ge-hs-form .hs-button:hover, .ge-hs-form input[type=submit]:hover { background:var(--clickr-orange-dark); }
.ge-hs-form .hs-error-msg, .ge-hs-form .hs-error-msgs label { color:#ff8a80; font-weight:500; font-size:12px; }
.ge-hs-form .hs-form-required { color:var(--clickr-orange); }
/* HubSpot's iframe is transparent-friendly; make sure it doesn't paint white */
.ge-hs-form iframe { background:transparent; }

/* ══ Responsive ═══════════════════════════════════════════ */

/* Stack the circuit vertically + tabs → dropdown */
/* Tabs get cramped four-across before the dropdown takes over. */
@media (max-width: 1200px) {
  .ge-selector-row { grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .ge-selector-row { display:none; }
  .ge-dd           { display:block; }

  .ge-steps  { grid-template-columns:repeat(2, minmax(0,1fr)); padding-top:32px; }
  .ge-step   { padding:28px 24px; }
  .ge-tagline{ padding:48px 0 4px; }

  .ge-faq       { padding-bottom:20px; }
  .ge-faq-inner { grid-template-columns:minmax(0,1fr); gap:26px; padding:40px 30px; }
  .ge-faq-a     { padding-right:0; }

  /* Keep the product picker reachable while scrolling the stacked flow.
     It docks directly beneath the sticky site header — --site-header-h is kept
     in sync with the live header height (including its compact state) by
     assets/js/sticky-header.js. z-index stays below the header's 500. */
  .ge-selector {
    position:sticky; top:var(--site-header-h, 0px); z-index:30;
    padding-top:12px; padding-bottom:12px;
    background:var(--clickr-black);
  }

  .ge-flow-row   { flex-direction:column; gap:0; }
  .ge-node       { flex:0 0 auto; width:100%; }
  .ge-flow-arrow { flex:0 0 30px; height:30px; }
  .ge-flow-arrow svg { transform:rotate(90deg); }   /* point down */

  .ge-loop        { display:none; }
  .ge-loop-mobile { display:flex; flex-direction:column; align-items:center; gap:10px; margin-top:24px; }
  .ge-loop-mobile .ge-loop-label {
    position:static; transform:none; left:auto; top:auto;
    white-space:normal; text-align:center; max-width:280px;
  }
}

/* Phones */
@media (max-width: 600px) {
  .ge-hero      { padding:32px 0 4px; }
  .ge-selector  { padding:20px 0 0; }
  .ge-flow      { margin-top:20px; padding:0 0 44px; }
  .ge-flow-panel{ padding:22px 14px 20px; border-radius:var(--r-2xl); }
  .ge-hero-sub  { font-size:16px; line-height:26px; }
  .ge-node      { padding:18px 16px; }
  .ge-contact   { padding:48px 0; }

  .ge-steps     { grid-template-columns:minmax(0,1fr); gap:14px; padding-top:24px; }
  .ge-step-num  { font-size:30px; }
  .ge-step-title{ font-size:22px; }
  .ge-tagline   { padding:36px 0 4px; }
  .ge-faq       { padding-bottom:16px; }
  .ge-faq-inner { padding:32px 20px; }
  .ge-faq-q     { gap:16px; padding:20px 0; }
  .ge-faq-q-text{ font-size:17px; }
  .ge-faq-icon  { width:32px; height:32px; font-size:17px; }
}

@media (max-width: 420px) {
  .ge-hero       { padding:28px 0 4px; }
  .ge-flow       { padding:0 0 40px; }
  .ge-flow-panel { padding:18px 12px 18px; }
  .ge-hero-glow  { left:50%; transform:translateX(-50%); width:340px; height:200px; top:-40px; }
  .ge-contact    { padding:40px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ge-page *, .ge-contact * { animation:none !important; transition:none !important; }
}
