/* =====================================================================
   Gestiona — dark landing
   Palette: deep warm-dark base + emerald accent + green glows.
   ===================================================================== */

:root {
  --g-bg:        #0C0C0A;
  --g-surface:   #161613;
  --g-sunken:    #080807;
  --g-line:      #24231E;
  --g-line-soft: #1A1A16;
  --g-ink:       #F2F0EA;
  --g-ink-2:     #C2BFB5;
  --g-ink-3:     #85827A;
  --g-ink-4:     #56544D;

  --g-accent:      oklch(0.78 0.13 165);
  --g-accent-2:    oklch(0.84 0.14 165);
  --g-accent-deep: oklch(0.55 0.10 165);
  --g-accent-soft: oklch(0.28 0.06 165);
  --g-accent-ink:  oklch(0.88 0.10 165);
  --g-accent-glow: oklch(0.55 0.10 165 / 0.55);

  --g-revenue: oklch(0.78 0.11 155);
  --g-pending: oklch(0.82 0.11 75);

  --g-radius-sm: 6px;
  --g-radius:    10px;
  --g-radius-lg: 14px;
  --g-radius-xl: 24px;

  --g-shadow:    0 1px 0 rgba(0, 0, 0, 0.5),
                 0 10px 28px -10px rgba(0, 0, 0, 0.7);
  --g-shadow-lg: 0 1px 0 rgba(0, 0, 0, 0.5),
                 0 30px 60px -16px rgba(0, 0, 0, 0.85),
                 0 12px 24px -10px rgba(0, 0, 0, 0.5);
  --g-shadow-glow: 0 0 0 1px oklch(0.65 0.10 165 / 0.20),
                   0 24px 60px -12px oklch(0.55 0.10 165 / 0.35);

  --g-grad-accent: linear-gradient(135deg, var(--g-accent), var(--g-accent-deep));
  --g-grad-accent-soft: linear-gradient(135deg,
                          oklch(0.30 0.07 165 / 0.55),
                          oklch(0.18 0.04 165 / 0.30));
}

/* ----- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--g-bg);
  color: var(--g-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: oklch(0.55 0.10 165 / 0.45); color: #fff; }

/* ----- Layout helpers --------------------------------------------- */
.g-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 112px 32px;
  position: relative;
}
.g-section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.g-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-accent);
  background: oklch(0.28 0.06 165 / 0.40);
  border: 1px solid oklch(0.45 0.08 165 / 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.g-kicker::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--g-accent);
  box-shadow: 0 0 8px var(--g-accent);
}
.g-section-lead {
  color: var(--g-ink-2);
  font-size: 17.5px;
  margin: 14px 0 0;
  line-height: 1.6;
}

.g-h1, .g-h2, .g-h3 {
  font-family: "Inter Tight", "Inter", sans-serif;
  letter-spacing: -0.025em;
  color: var(--g-ink);
  margin: 0;
}
.g-h1 {
  font-size: clamp(40px, 5.8vw, 68px);
  line-height: 1.02;
  font-weight: 700;
}
.g-h1-accent {
  display: block;
  background: linear-gradient(135deg, var(--g-accent-2) 0%, var(--g-accent) 60%, var(--g-accent-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}
.g-h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.12;
  font-weight: 600;
}
.g-h2-accent {
  background: linear-gradient(135deg, var(--g-accent-2), var(--g-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-h3 {
  font-size: 19px;
  font-weight: 600;
}
.g-lead {
  font-size: 19px;
  color: var(--g-ink-2);
  line-height: 1.55;
  max-width: 620px;
  margin: 26px 0 36px;
}

/* ----- Header ------------------------------------------------------ */
.g-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(12, 12, 10, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--g-line);
}
.g-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 600;
  color: var(--g-ink);
  font-size: 17px;
}
.g-logo {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--g-grad-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
  box-shadow: 0 6px 20px -6px var(--g-accent-glow),
              inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.g-logo-sm { width: 28px; height: 28px; font-size: 14px; border-radius: 8px; }

.g-nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.g-nav a {
  text-decoration: none;
  color: var(--g-ink-2);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s;
}
.g-nav a:hover { color: var(--g-ink); }

/* ----- Buttons ----------------------------------------------------- */
.g-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--g-radius);
  border: 1px solid transparent;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
  position: relative;
}
.g-btn-sm { padding: 9px 16px; font-size: 14px; }
.g-btn-block { display: flex; justify-content: center; width: 100%; }
.g-btn:active { transform: translateY(1px); }
.g-btn[disabled] { opacity: 0.4; cursor: not-allowed; }

.g-btn-primary {
  background: var(--g-grad-accent);
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--g-accent-glow),
              inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}
.g-btn-primary:hover {
  box-shadow: 0 18px 38px -10px var(--g-accent-glow),
              inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.g-btn-ghost {
  background: oklch(0.18 0 0 / 0.6);
  border-color: var(--g-line);
  color: var(--g-ink);
  backdrop-filter: blur(6px);
}
.g-btn-ghost:hover {
  border-color: var(--g-accent);
  color: var(--g-accent);
  background: oklch(0.22 0.04 165 / 0.5);
}

/* ----- Hero -------------------------------------------------------- */
.g-hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 32px 56px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
.g-hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.g-hero-glow::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 720px;
  background: radial-gradient(closest-side,
                oklch(0.55 0.10 165 / 0.32),
                oklch(0.45 0.08 165 / 0.08) 50%,
                transparent 75%);
  filter: blur(20px);
}
.g-hero-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 88%;
  width: 1px; height: 1px;
  box-shadow:
    -460px -200px 0 0.5px oklch(0.78 0.13 165 / 0.4),
     420px -100px 0 0.5px oklch(0.78 0.13 165 / 0.3),
    -260px  -40px 0 0.5px oklch(0.78 0.13 165 / 0.25),
     280px -260px 0 0.5px oklch(0.78 0.13 165 / 0.5);
}
.g-hero-inner { max-width: 580px; position: relative; }

.g-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: oklch(0.18 0.02 165 / 0.7);
  border: 1px solid var(--g-line);
  color: var(--g-ink-2);
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.g-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--g-accent);
  box-shadow: 0 0 12px var(--g-accent);
}

.g-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.g-hero-meta {
  margin-top: 30px;
  color: var(--g-ink-3);
  font-size: 13.5px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.g-hero-meta strong { color: var(--g-ink); font-weight: 600; }
.g-sep { color: var(--g-ink-4); }

/* ----- Hero device — real screenshot ------------------------------- */
.g-device {
  background: var(--g-surface);
  border-radius: var(--g-radius-xl);
  border: 1px solid var(--g-line);
  box-shadow: var(--g-shadow-lg), var(--g-shadow-glow);
  overflow: hidden;
  transform: perspective(2200px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center center;
  transition: transform 0.5s ease;
  position: relative;
}
.g-device:hover { transform: perspective(2200px) rotateY(-2deg) rotateX(1deg); }
.g-device-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: oklch(0.14 0.005 80);
  border-bottom: 1px solid var(--g-line);
}
.g-device-bar span:nth-child(-n+3) {
  width: 11px; height: 11px; border-radius: 50%;
  display: inline-block;
}
.g-dot-r { background: #FF6058; }
.g-dot-y { background: #FFBD2E; }
.g-dot-g { background: #28C940; }
.g-device-title {
  margin-left: 12px;
  font-size: 11.5px;
  color: var(--g-ink-3);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.01em;
}
.g-device-shot {
  display: block;
  width: 100%;
  height: auto;
  background: var(--g-bg);
}

/* ----- Band -------------------------------------------------------- */
.g-band {
  position: relative;
  background:
    radial-gradient(140% 100% at 50% 0%,
      oklch(0.22 0.05 165 / 0.6) 0%,
      transparent 60%),
    var(--g-sunken);
  border-top: 1px solid var(--g-line);
  border-bottom: 1px solid var(--g-line);
}
.g-band-text {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 32px;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--g-ink-2);
}
.g-band-text strong {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, var(--g-accent-2), var(--g-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- How it works (3 steps) -------------------------------------- */
.g-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.g-step {
  background:
    radial-gradient(120% 80% at 50% 0%,
      oklch(0.22 0.05 165 / 0.18) 0%,
      transparent 70%),
    var(--g-surface);
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.g-step::before {
  content: attr(data-step);
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Inter Tight", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--g-accent);
  opacity: 0.10;
  letter-spacing: -0.03em;
}
.g-step h3 { margin: 0 0 10px; }
.g-step p { margin: 0; color: var(--g-ink-2); font-size: 14.5px; line-height: 1.6; }
.g-step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--g-grad-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px -6px var(--g-accent-glow),
              inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* ----- Tool spotlights (alternating side-by-side) ------------------ */
.g-spot {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}
.g-spot:last-child { margin-bottom: 0; }
.g-spot-rev { grid-template-columns: 1.15fr 1fr; }
.g-spot-rev .g-spot-text { order: 2; }
.g-spot-rev .g-spot-shot { order: 1; }
.g-spot-text { max-width: 480px; }
.g-spot-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: oklch(0.28 0.06 165 / 0.40);
  border: 1px solid oklch(0.45 0.08 165 / 0.35);
  color: var(--g-accent);
  font-family: "Inter Tight", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.g-spot-text h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.g-spot-text p {
  font-size: 16px;
  color: var(--g-ink-2);
  line-height: 1.65;
  margin: 0 0 18px;
}
.g-spot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-spot-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--g-ink-2);
  line-height: 1.5;
}
.g-spot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--g-accent-soft);
  background-image:
    linear-gradient(135deg, transparent 45%, var(--g-accent) 45%);
  border: 1px solid oklch(0.45 0.08 165 / 0.4);
}
.g-spot-shot {
  position: relative;
}
.g-spot-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--g-radius-lg);
  border: 1px solid var(--g-line);
  box-shadow: var(--g-shadow-lg);
  background: var(--g-bg);
}
.g-spot-shot::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(closest-side,
                oklch(0.55 0.10 165 / 0.18),
                transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* ----- Preview thumbnail grid -------------------------------------- */
.g-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.g-preview { margin: 0; }
.g-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--g-radius);
  border: 1px solid var(--g-line);
  box-shadow: var(--g-shadow);
  background: var(--g-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.g-preview:hover img {
  transform: translateY(-3px);
  border-color: oklch(0.55 0.10 165 / 0.5);
  box-shadow: var(--g-shadow-lg), 0 0 0 1px oklch(0.55 0.10 165 / 0.3);
}
.g-preview figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--g-ink-3);
  text-align: center;
}

/* ----- Pricing ----------------------------------------------------- */
.g-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.g-price-card {
  background: var(--g-surface);
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.g-price-card-pro {
  background:
    radial-gradient(120% 80% at 50% 0%,
      oklch(0.30 0.06 165 / 0.30) 0%,
      transparent 70%),
    var(--g-surface);
  border-color: oklch(0.55 0.10 165 / 0.5);
  box-shadow: 0 30px 64px -24px oklch(0.55 0.10 165 / 0.45);
}
.g-price-card-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  margin: 0 0 8px;
}
.g-price-badge {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--g-grad-accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
}
.g-price-amount {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.030em;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1;
}
.g-price-once {
  font-size: 14px;
  font-weight: 500;
  color: var(--g-ink-3);
  margin-left: 10px;
  letter-spacing: 0;
}
.g-price-desc {
  color: var(--g-ink-2);
  margin: 14px 0 22px;
  font-size: 14.5px;
}
.g-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-price-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--g-ink-2);
  line-height: 1.5;
}
.g-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--g-accent-soft);
  background-image: linear-gradient(135deg, transparent 45%, var(--g-accent) 45%);
}
.g-price-foot {
  margin-top: 16px;
  font-size: 12px;
  color: var(--g-ink-3);
  text-align: center;
}

/* ----- CTA --------------------------------------------------------- */
.g-section-cta { padding-top: 64px; padding-bottom: 112px; }
.g-cta-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(140% 110% at 50% 0%,
      oklch(0.30 0.07 165 / 0.45) 0%,
      transparent 65%),
    var(--g-surface);
  border: 1px solid oklch(0.45 0.08 165 / 0.45);
  border-radius: var(--g-radius-xl);
  padding: 64px 44px;
  box-shadow: 0 30px 64px -24px oklch(0.55 0.10 165 / 0.35);
  position: relative;
}
.g-cta-card p { color: var(--g-ink-2); margin: 14px 0 32px; font-size: 16px; }
.g-download-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.g-download-row .g-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 32px;
  gap: 2px;
  line-height: 1.2;
}
.g-os-icon { font-size: 22px; margin-bottom: 4px; }
.g-os-meta { font-size: 12px; opacity: 0.75; font-weight: 400; margin-top: 2px; }
.g-cta-note { margin-top: 30px; font-size: 13px; color: var(--g-ink-3); }

/* ----- New download cards (Windows / macOS) ------------------------ */
.g-dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.g-dl-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  text-decoration: none;
  padding: 18px 22px;
  border-radius: var(--g-radius-lg);
  border: 1px solid var(--g-line);
  background: var(--g-surface);
  color: var(--g-ink);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  position: relative;
}
.g-dl-card-active {
  background:
    radial-gradient(140% 100% at 0 50%,
      oklch(0.30 0.07 165 / 0.35) 0%,
      transparent 70%),
    var(--g-surface);
  border-color: oklch(0.55 0.10 165 / 0.45);
  box-shadow: 0 16px 38px -16px oklch(0.55 0.10 165 / 0.45);
}
.g-dl-card-active:hover {
  transform: translateY(-2px);
  border-color: oklch(0.62 0.10 165 / 0.65);
  box-shadow: 0 22px 48px -14px oklch(0.55 0.10 165 / 0.55);
}
.g-dl-card-soon {
  opacity: 0.55;
  cursor: not-allowed;
}
.g-dl-os {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--g-accent);
}
.g-dl-card-soon .g-dl-os { color: var(--g-ink-3); }
.g-dl-text { flex: 1; min-width: 0; }
.g-dl-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
.g-dl-meta {
  font-size: 12px;
  color: var(--g-ink-3);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.01em;
}
.g-dl-arrow {
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  color: var(--g-accent);
  font-weight: 400;
  margin-left: 4px;
  flex: 0 0 auto;
}
.g-dl-card-soon .g-dl-arrow { color: var(--g-ink-3); }

.g-dl-warn {
  max-width: 720px;
  margin: 28px auto 0;
  background: oklch(0.22 0.04 75 / 0.25);
  border: 1px solid oklch(0.55 0.10 75 / 0.35);
  border-radius: var(--g-radius);
  padding: 16px 20px;
  text-align: left;
}
.g-dl-warn-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter Tight", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--g-pending);
  margin-bottom: 6px;
}
.g-dl-warn-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--g-ink-2);
}
.g-dl-warn-body strong { color: var(--g-ink); }
.g-dl-warn-body em { color: var(--g-ink-3); font-style: italic; }

/* ----- FAQ --------------------------------------------------------- */
.g-faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-faq-item {
  background: var(--g-surface);
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}
.g-faq-item:hover { border-color: oklch(0.40 0.06 165 / 0.5); }
.g-faq-item[open] {
  border-color: oklch(0.55 0.10 165 / 0.4);
  background:
    radial-gradient(120% 100% at 0 0,
      oklch(0.28 0.06 165 / 0.18) 0%,
      transparent 60%),
    var(--g-surface);
}
.g-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--g-ink);
}
.g-faq-item summary::-webkit-details-marker { display: none; }
.g-faq-item summary::after {
  content: "+";
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--g-accent);
  transition: transform 0.2s;
  line-height: 1;
}
.g-faq-item[open] summary::after { content: "−"; }
.g-faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--g-ink-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ----- Footer ------------------------------------------------------ */
.g-footer {
  background: var(--g-sunken);
  border-top: 1px solid var(--g-line);
  color: var(--g-ink-2);
  padding: 64px 32px 28px;
}
.g-footer-inner {
  max-width: 1240px;
  margin: 0 auto 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.g-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.g-footer-brand strong {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: var(--g-ink);
}
.g-footer-brand p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--g-ink-3);
}
.g-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.g-footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--g-ink-2);
  transition: color 0.15s;
}
.g-footer-links a:hover { color: var(--g-accent); }

.g-footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--g-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--g-ink-4);
}
/* Mandatory Nexa 360 credit — discreet, per workflow rules */
.g-credit { font-size: 10px; opacity: 0.5; }
.g-credit a { color: var(--g-ink-3); text-decoration: none; }
.g-credit a:hover { color: var(--g-accent); }

/* ----- Responsive -------------------------------------------------- */
@media (max-width: 980px) {
  .g-hero { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; }
  .g-device { transform: none; max-width: 620px; }
  .g-steps { grid-template-columns: 1fr; }
  .g-spot, .g-spot-rev {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
  }
  .g-spot-rev .g-spot-text, .g-spot-rev .g-spot-shot { order: unset; }
  .g-pricing { grid-template-columns: 1fr; }
  .g-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .g-dl-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .g-section { padding: 72px 20px; }
  .g-hero { padding: 48px 20px; }
  .g-header { padding: 12px 20px; gap: 12px; }
  .g-nav { display: none; }
  .g-preview-grid { grid-template-columns: 1fr; }
  .g-cta-card { padding: 44px 24px; }
  .g-footer-bottom { flex-direction: column; }
  .g-band-text { padding: 48px 24px; }
}
