/* ==========================================================================
   Product LP Base CSS — Universal Template System
   3-Layer Token Architecture: Primitives > Semantic > Components
   Mobile-first | 375px primary | 1200px desktop

   Class prefix: gn (replaced per-site for anti-correlation)
   ========================================================================== */


/* ==========================================================================
   LAYER 1 — PRIMITIVE TOKENS
   Raw design values. Never reference these directly in component styles.
   ========================================================================== */

:root {
  /* --- Neutral Palette --- */
  --clr-white: #FFFFFF;
  --clr-black: #000000;
  --clr-gray-50: #F9FAFB;
  --clr-gray-100: #F3F4F6;
  --clr-gray-200: #E5E7EB;
  --clr-gray-300: #D1D5DB;
  --clr-gray-400: #9CA3AF;
  --clr-gray-500: #6B7280;
  --clr-gray-600: #4B5563;
  --clr-gray-700: #374151;
  --clr-gray-800: #1F2937;
  --clr-gray-900: #111827;
  --clr-gray-950: #030712;

  /* --- Spacing Scale (4px base) --- */
  --sz-1: 4px;
  --sz-2: 8px;
  --sz-3: 12px;
  --sz-4: 16px;
  --sz-5: 20px;
  --sz-6: 24px;
  --sz-8: 32px;
  --sz-10: 40px;
  --sz-12: 48px;
  --sz-16: 64px;
  --sz-20: 80px;
  --sz-24: 96px;

  /* --- Typography Scale --- */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 30px;
  --fs-4xl: 36px;
  --fs-5xl: 48px;
  --fs-6xl: 64px;

  /* --- Border Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* --- Transitions --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}


/* ==========================================================================
   LAYER 2 — SEMANTIC TOKENS
   Meaningful aliases that themes override. Components use ONLY these.
   ========================================================================== */

:root {
  /* --- Backgrounds --- */
  --bg-page: var(--clr-white);
  --bg-surface: var(--clr-gray-50);
  --bg-card: var(--clr-white);
  --bg-nav: var(--clr-white);
  --bg-footer: var(--clr-gray-900);
  --bg-sticky-cta: var(--clr-white);

  /* --- Text --- */
  --text-primary: var(--clr-gray-900);
  --text-secondary: var(--clr-gray-600);
  --text-muted: var(--clr-gray-400);
  --text-inverse: var(--clr-white);
  --text-on-accent: var(--clr-white);

  /* --- Accent (overridden at runtime by config.js) --- */
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-light: rgba(37, 99, 235, 0.1);

  /* --- Typography Families --- */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* --- Borders --- */
  --border-color: var(--clr-gray-200);
  --border-light: var(--clr-gray-100);

  /* --- Rating Stars --- */
  --star-filled: #FBBF24;
  --star-empty: var(--clr-gray-300);
}


/* ==========================================================================
   LAYER 3 — COMPONENT STYLES
   All visual rules. Reference only semantic tokens from Layer 2.
   ========================================================================== */


/* --------------------------------------------------------------------------
   3.0  Reset & Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Focus visible — accessibility baseline */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}


/* --------------------------------------------------------------------------
   3.1  Utility Classes
   -------------------------------------------------------------------------- */

.gn-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sz-4);
  padding-right: var(--sz-4);
}

.gn-section {
  padding-top: var(--sz-12);
  padding-bottom: var(--sz-12);
}

@media (min-width: 1024px) {
  .gn-section {
    padding-top: var(--sz-16);
    padding-bottom: var(--sz-16);
  }
}

.gn-text-center {
  text-align: center;
}

.gn-hidden {
  display: none !important;
}

.gn-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gn-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: var(--sz-3);
}

.gn-section-subheading {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 640px;
}

.gn-text-center .gn-section-subheading {
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   3.2  NAV (sticky)
   -------------------------------------------------------------------------- */

.gn-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding-left: var(--sz-4);
  padding-right: var(--sz-4);
}

.gn-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gn-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sz-2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--text-primary);
  white-space: nowrap;
  min-width: 0;
}

.gn-nav-logo img {
  height: 36px;
  width: auto;
}

.gn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 var(--sz-5);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: var(--fs-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease-out);
}

.gn-nav-cta:hover {
  background: var(--accent-hover);
}

@media (min-width: 1024px) {
  .gn-nav {
    height: 72px;
  }

  .gn-nav-logo {
    font-size: var(--fs-xl);
  }

  .gn-nav-logo img {
    height: 44px;
  }

  .gn-nav-cta {
    height: 44px;
    padding: 0 var(--sz-6);
    font-size: var(--fs-base);
  }
}


/* --------------------------------------------------------------------------
   3.3  HERO Section
   -------------------------------------------------------------------------- */

.gn-hero {
  min-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--sz-8);
  padding-bottom: var(--sz-8);
}

.gn-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sz-6);
}

.gn-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.gn-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 540px;
}

.gn-hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.gn-hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sz-3);
}

@media (min-width: 1024px) {
  .gn-hero {
    min-height: calc(100svh - 72px);
  }

  .gn-hero-image {
    max-height: 500px;
  }

  .gn-hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

/* --- Hero Layout: Split (text left, image right) --- */

[data-hero-style="split"] .gn-hero-content {
  gap: var(--sz-8);
}

@media (min-width: 1024px) {
  [data-hero-style="split"] .gn-hero-content {
    flex-direction: row;
    align-items: center;
  }

  [data-hero-style="split"] .gn-hero-text {
    flex: 0 0 58%;
    max-width: 58%;
  }

  [data-hero-style="split"] .gn-hero-media {
    flex: 0 0 42%;
    max-width: 42%;
  }
}

/* --- Hero Layout: Stacked (image top, text bottom, centered) --- */

[data-hero-style="stacked"] .gn-hero-content {
  align-items: center;
  text-align: center;
}

[data-hero-style="stacked"] .gn-hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

[data-hero-style="stacked"] .gn-hero-media {
  order: -1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

[data-hero-style="stacked"] .gn-hero-actions {
  align-items: center;
}

/* --- Hero Layout: Video (background media with overlay) --- */

[data-hero-style="video"] {
  position: relative;
}

[data-hero-style="video"] .gn-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

[data-hero-style="video"] .gn-hero-bg img,
[data-hero-style="video"] .gn-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-hero-style="video"] .gn-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

[data-hero-style="video"] .gn-hero-content {
  position: relative;
  z-index: 1;
}

[data-hero-style="video"] .gn-hero h1,
[data-hero-style="video"] .gn-hero-subtitle {
  color: var(--text-inverse);
}

[data-hero-style="video"] .gn-hero-subtitle {
  opacity: 0.9;
}

/* --- Hero Layout: Overlay (full-width image, text overlay) --- */

[data-hero-style="overlay"] {
  position: relative;
}

[data-hero-style="overlay"] .gn-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

[data-hero-style="overlay"] .gn-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-hero-style="overlay"] .gn-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

[data-hero-style="overlay"] .gn-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

[data-hero-style="overlay"] .gn-hero h1,
[data-hero-style="overlay"] .gn-hero-subtitle {
  color: var(--text-inverse);
}

[data-hero-style="overlay"] .gn-hero-subtitle {
  opacity: 0.9;
}


/* --------------------------------------------------------------------------
   3.4  CTA Buttons
   -------------------------------------------------------------------------- */

.gn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sz-2);
  min-height: 52px;
  padding: var(--sz-4) var(--sz-10);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: var(--fs-lg);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
  text-decoration: none;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.gn-cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.gn-cta-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.gn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sz-2);
  min-height: 52px;
  padding: var(--sz-4) var(--sz-10);
  background: transparent;
  color: var(--accent);
  font-size: var(--fs-lg);
  font-weight: 700;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
  text-decoration: none;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.gn-cta-secondary:hover {
  background: var(--accent-light);
}

.gn-cta-secondary:active {
  background: var(--accent);
  color: var(--text-on-accent);
}

@media (min-width: 640px) {
  .gn-cta-primary,
  .gn-cta-secondary {
    width: auto;
    min-width: 280px;
  }
}


/* --------------------------------------------------------------------------
   3.5  TRUST BAR
   -------------------------------------------------------------------------- */

.gn-trust {
  background: var(--bg-surface);
  padding: var(--sz-4) 0;
  overflow: hidden;
}

.gn-trust-list {
  display: flex;
  gap: var(--sz-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--sz-2) var(--sz-4);
  scrollbar-width: none;
}

.gn-trust-list::-webkit-scrollbar {
  display: none;
}

.gn-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sz-3);
  flex-shrink: 0;
  scroll-snap-align: start;
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.gn-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent);
}

.gn-trust-icon svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .gn-trust-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding: var(--sz-2) 0;
    gap: var(--sz-4);
  }

  .gn-trust-item {
    justify-content: center;
  }
}


/* --------------------------------------------------------------------------
   3.6  BENEFITS Cards
   -------------------------------------------------------------------------- */

.gn-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sz-6);
}

@media (min-width: 640px) {
  .gn-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gn-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gn-benefit-card {
  padding: var(--sz-6);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.gn-benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.gn-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--sz-4);
  color: var(--accent);
}

.gn-benefit-icon svg {
  width: 32px;
  height: 32px;
}

.gn-benefit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--text-primary);
  margin-bottom: var(--sz-2);
}

.gn-benefit-desc {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   3.7  SHOWCASE Gallery
   -------------------------------------------------------------------------- */

.gn-showcase {
  overflow: hidden;
}

.gn-showcase-track {
  display: flex;
  gap: var(--sz-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--sz-4);
  scrollbar-width: none;
}

.gn-showcase-track::-webkit-scrollbar {
  display: none;
}

.gn-showcase-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
}

.gn-showcase-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.gn-showcase-dots {
  display: flex;
  justify-content: center;
  gap: var(--sz-2);
  margin-top: var(--sz-4);
}

.gn-showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--clr-gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.gn-showcase-dot[aria-current="true"],
.gn-showcase-dot.active {
  background: var(--accent);
  width: 24px;
}

@media (min-width: 640px) {
  .gn-showcase-slide {
    flex: 0 0 60%;
  }
}

@media (min-width: 1024px) {
  .gn-showcase-track {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .gn-showcase-slide {
    flex: 0 0 70%;
  }
}


/* --------------------------------------------------------------------------
   3.8  SOCIAL PROOF (Reviews/Testimonials)
   -------------------------------------------------------------------------- */

.gn-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sz-6);
}

@media (min-width: 640px) {
  .gn-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gn-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gn-review-card {
  padding: var(--sz-6);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.gn-review-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sz-3);
  right: var(--sz-4);
  font-size: var(--fs-6xl);
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  pointer-events: none;
}

.gn-review-header {
  display: flex;
  align-items: center;
  gap: var(--sz-3);
  margin-bottom: var(--sz-3);
}

.gn-review-photo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.gn-review-author {
  min-width: 0;
}

.gn-review-name {
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--text-primary);
}

.gn-review-city {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.gn-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sz-3);
}

.gn-review-star {
  width: 16px;
  height: 16px;
}

.gn-review-star--filled {
  color: var(--star-filled);
}

.gn-review-star--empty {
  color: var(--star-empty);
}

.gn-review-text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}


/* --------------------------------------------------------------------------
   3.9  HOW IT WORKS (Steps)
   -------------------------------------------------------------------------- */

.gn-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--sz-8);
  counter-reset: step-counter;
}

.gn-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sz-5);
  counter-increment: step-counter;
}

.gn-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
}

.gn-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--text-primary);
  margin-bottom: var(--sz-1);
}

.gn-step-desc {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .gn-steps-list {
    flex-direction: row;
    gap: var(--sz-8);
    position: relative;
  }

  .gn-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
  }

  /* Connecting line between steps */
  .gn-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: var(--border-color);
  }

  .gn-step-number {
    position: relative;
    z-index: 1;
  }
}


/* --------------------------------------------------------------------------
   3.10  SPECS Table
   -------------------------------------------------------------------------- */

.gn-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.gn-specs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.gn-specs-table tr:nth-child(even) {
  background: var(--bg-surface);
}

.gn-specs-table th,
.gn-specs-table td {
  padding: var(--sz-3) var(--sz-4);
  text-align: left;
  font-size: var(--fs-base);
  vertical-align: top;
}

.gn-specs-table th {
  font-weight: 700;
  color: var(--text-primary);
  width: 40%;
}

.gn-specs-table td {
  color: var(--text-secondary);
}

/* dl-based variant */
.gn-specs-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.gn-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sz-2);
  padding: var(--sz-3) var(--sz-4);
  border-bottom: 1px solid var(--border-light);
}

.gn-specs-row:nth-child(even) {
  background: var(--bg-surface);
}

.gn-specs-row dt {
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--fs-base);
}

.gn-specs-row dd {
  color: var(--text-secondary);
  font-size: var(--fs-base);
}

@media (max-width: 639px) {
  .gn-specs-row {
    grid-template-columns: 1fr;
    gap: var(--sz-1);
  }
}


/* --------------------------------------------------------------------------
   3.11  COMPARISON Table
   -------------------------------------------------------------------------- */

.gn-comparison-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Right edge fade for scroll hint */
.gn-comparison-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32px;
  background: linear-gradient(to right, transparent, var(--bg-page));
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.gn-comparison-wrapper.scrolled-end::after {
  opacity: 0;
}

.gn-comparison {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.gn-comparison thead th {
  padding: var(--sz-3) var(--sz-4);
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.gn-comparison thead th:first-child {
  text-align: left;
}

/* Highlighted column (our product) */
.gn-comparison th.gn-highlight,
.gn-comparison td.gn-highlight {
  background: var(--accent-light);
}

.gn-comparison thead th.gn-highlight {
  border-top: 3px solid var(--accent);
  color: var(--accent);
}

.gn-comparison tbody td {
  padding: var(--sz-3) var(--sz-4);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.gn-comparison tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  position: sticky;
  left: 0;
  background: var(--bg-page);
  z-index: 1;
}

.gn-comparison tbody tr:nth-child(even) td:first-child {
  background: var(--bg-surface);
}

.gn-comparison tbody tr:nth-child(even) {
  background: var(--bg-surface);
}

/* Checkmarks and X marks */
.gn-check {
  color: #16A34A;
  font-weight: 700;
}

.gn-xmark {
  color: var(--clr-gray-300);
}


/* --------------------------------------------------------------------------
   3.12  PRICING
   -------------------------------------------------------------------------- */

.gn-pricing {
  text-align: center;
}

.gn-price-original {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: var(--sz-1);
}

.gn-price-current {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sz-2);
  font-family: var(--font-heading);
}

.gn-price-currency {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 700;
}

.gn-price-installments {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  margin-bottom: var(--sz-6);
}

.gn-payment-icons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sz-2);
  justify-content: center;
  margin-top: var(--sz-4);
  margin-bottom: var(--sz-6);
}

.gn-payment-icon {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.gn-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--sz-3);
  padding: var(--sz-3) var(--sz-5);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-top: var(--sz-6);
}

.gn-guarantee-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #16A34A;
}


/* --------------------------------------------------------------------------
   3.13  FAQ (details/summary)
   -------------------------------------------------------------------------- */

.gn-faq-list {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.gn-faq-item {
  border-bottom: 1px solid var(--border-color);
}

.gn-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sz-4);
  padding: var(--sz-4) 0;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

/* Remove default marker (Safari, Chrome) */
.gn-faq-item summary::-webkit-details-marker {
  display: none;
}

.gn-faq-item summary::marker {
  content: '';
}

/* Custom chevron indicator */
.gn-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
}

.gn-faq-item[open] .gn-faq-chevron {
  transform: rotate(180deg);
}

/* Smooth open/close using grid trick */
.gn-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-normal) var(--ease-out);
}

.gn-faq-item[open] .gn-faq-body {
  grid-template-rows: 1fr;
}

.gn-faq-body-inner {
  overflow: hidden;
}

.gn-faq-answer {
  padding-bottom: var(--sz-4);
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   3.14  STICKY CTA BAR (mobile only)
   -------------------------------------------------------------------------- */

.gn-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(72px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  align-items: center;
  padding-left: var(--sz-4);
  padding-right: var(--sz-4);
  gap: var(--sz-3);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.gn-sticky-cta.visible {
  transform: translateY(0);
}

.gn-sticky-info {
  flex: 1;
  min-width: 0;
}

.gn-sticky-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gn-sticky-price {
  font-size: var(--fs-base);
  font-weight: 800;
  color: var(--accent);
}

.gn-sticky-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 var(--sz-6);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: var(--fs-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease-out);
}

.gn-sticky-btn:hover {
  background: var(--accent-hover);
}

@media (min-width: 1024px) {
  .gn-sticky-cta {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   3.15  CTA FINAL Section
   -------------------------------------------------------------------------- */

.gn-cta-final {
  background: var(--accent);
  color: var(--text-on-accent);
  text-align: center;
  padding: var(--sz-20) 0;
}

.gn-cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--sz-4);
}

.gn-cta-final-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  opacity: 0.9;
  margin-bottom: var(--sz-8);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.gn-cta-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sz-2);
  min-height: 56px;
  padding: var(--sz-4) var(--sz-12);
  background: var(--clr-white);
  color: var(--accent);
  font-size: var(--fs-lg);
  font-weight: 800;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.gn-cta-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.gn-cta-final-btn:active {
  transform: translateY(0);
}

.gn-cta-final-guarantee {
  margin-top: var(--sz-5);
  font-size: var(--fs-sm);
  opacity: 0.85;
}


/* --------------------------------------------------------------------------
   3.16  FOOTER
   -------------------------------------------------------------------------- */

.gn-footer {
  background: var(--bg-footer);
  color: var(--text-inverse);
  padding: var(--sz-12) 0 var(--sz-6);
}

.gn-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sz-8);
  margin-bottom: var(--sz-8);
}

@media (min-width: 768px) {
  .gn-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gn-footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-base);
  margin-bottom: var(--sz-3);
  opacity: 1;
}

.gn-footer-link {
  display: block;
  font-size: var(--fs-sm);
  opacity: 0.7;
  padding: var(--sz-1) 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.gn-footer-link:hover {
  opacity: 1;
}

.gn-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--sz-6);
  font-size: var(--fs-sm);
  opacity: 0.6;
  line-height: 1.6;
}

.gn-footer-legal p + p {
  margin-top: var(--sz-1);
}


/* --------------------------------------------------------------------------
   3.17  Scroll Reveal Animation
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
[data-reveal-stagger] > [data-reveal]:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(6) { transition-delay: 400ms; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* --------------------------------------------------------------------------
   3.18  Print Styles
   -------------------------------------------------------------------------- */

@media print {
  .gn-nav,
  .gn-sticky-cta,
  .gn-cta-final {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* === THEME: gaming-neon === */
/* ==========================================================================
   GAMING NEON THEME — Product LP Semantic Token Overrides
   High-energy neon aesthetic for GAMING products
   (PS5 controllers, headsets, gaming mice, keyboards, gaming peripherals)
   ========================================================================== */


/* ==========================================================================
   LAYER 2 OVERRIDES — SEMANTIC TOKENS
   All other styles inherit from base style.css. Only customize colors,
   fonts, and borders here.
   ========================================================================== */

:root {
  /* --- Backgrounds --- */
  --bg-page: #0A0A0F;
  --bg-surface: #111827;
  --bg-card: #1A1D2E;
  --bg-nav: rgba(10, 10, 15, 0.95);
  --bg-footer: #050508;
  --bg-sticky-cta: rgba(10, 10, 15, 0.98);

  /* --- Text --- */
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #6B6B7E;
  --text-inverse: #0A0A0F;
  --text-on-accent: #FFFFFF;

  /* --- Accent (Electric Blue) --- */
  --accent: #00D4FF;
  --accent-hover: #00A3CC;
  --accent-light: rgba(0, 212, 255, 0.15);

  /* --- Secondary Accent (Neon Purple) --- */
  --accent-secondary: #BF00FF;
  --accent-secondary-hover: #9D00D9;
  --accent-secondary-light: rgba(191, 0, 255, 0.15);

  /* --- Typography Families --- */
  --font-heading: 'Rajdhani', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Exo 2', 'Inter', system-ui, -apple-system, sans-serif;

  /* --- Borders --- */
  --border-color: rgba(0, 212, 255, 0.1);
  --border-light: rgba(0, 212, 255, 0.05);

  /* --- Rating Stars --- */
  --star-filled: #FFE14D;
  --star-empty: #3A3A4A;
}


/* ==========================================================================
   LAYER 3 OVERRIDES — COMPONENT ENHANCEMENTS
   Add theme-specific visual effects only. Do NOT duplicate base layout.
   ========================================================================== */


/* --------------------------------------------------------------------------
   3.0  Global Effects
   -------------------------------------------------------------------------- */

/* Selection styling — gaming accent */
::selection {
  background: var(--accent);
  color: var(--text-inverse);
}

::-moz-selection {
  background: var(--accent);
  color: var(--text-inverse);
}

/* Scrollbar — thin neon blue */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
  transition: background var(--duration-fast) var(--ease-out);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Firefox scrollbar */
* {
  scrollbar-color: var(--accent) transparent;
  scrollbar-width: thin;
}


/* --------------------------------------------------------------------------
   3.1  NAV — Dark with Neon Accent Border
   -------------------------------------------------------------------------- */

.gn-nav {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
  transition: all var(--duration-normal) var(--ease-out);
}

.gn-nav-logo {
  color: var(--text-primary);
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
}

.gn-nav-logo:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
  transition: all var(--duration-fast) var(--ease-out);
}

.gn-nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: var(--text-inverse);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  transition:
    background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.gn-nav-cta:hover {
  box-shadow:
    0 0 25px rgba(0, 212, 255, 0.6),
    0 0 40px rgba(191, 0, 255, 0.4);
  transform: translateY(-2px);
}

.gn-nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}


/* --------------------------------------------------------------------------
   3.2  HERO — High-Energy Neon Gradient
   -------------------------------------------------------------------------- */

.gn-hero {
  background: linear-gradient(
    135deg,
    #0A0A0F 0%,
    #1a0a2e 50%,
    #16213e 100%
  );
  position: relative;
  overflow: hidden;
}

/* Animated neon grid background */
.gn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(191, 0, 255, 0.05) 25%, rgba(191, 0, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(191, 0, 255, 0.05) 75%, rgba(191, 0, 255, 0.05) 76%, transparent 77%, transparent);
  background-size: 60px 60px;
  pointer-events: none;
  animation: gaming-grid-shift 8s linear infinite;
}

@keyframes gaming-grid-shift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

.gn-hero h1 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 30px rgba(0, 212, 255, 0.3),
    0 0 60px rgba(191, 0, 255, 0.2);
  position: relative;
  z-index: 1;
}

.gn-hero-subtitle {
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.gn-hero-image {
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  box-shadow:
    0 0 30px rgba(0, 212, 255, 0.3),
    inset 0 0 20px rgba(0, 212, 255, 0.1);
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

.gn-hero-image:hover {
  border-color: var(--accent-secondary);
  box-shadow:
    0 0 40px rgba(0, 212, 255, 0.4),
    0 0 60px rgba(191, 0, 255, 0.3),
    inset 0 0 30px rgba(191, 0, 255, 0.1);
}

/* Hero split layout — neon gradient overlay */
[data-hero-style="split"] .gn-hero-image {
  position: relative;
  overflow: hidden;
}

[data-hero-style="split"] .gn-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1) 0%,
    rgba(191, 0, 255, 0.1) 50%,
    transparent 100%
  );
  pointer-events: none;
}


/* --------------------------------------------------------------------------
   3.3  HEADINGS — Uppercase Neon Style
   -------------------------------------------------------------------------- */

.gn-section-heading {
  font-family: var(--font-heading);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
}

.gn-section-heading:hover {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent);
  transition: all var(--duration-normal) var(--ease-out);
}

.gn-section-subheading {
  color: var(--text-secondary);
  font-family: var(--font-body);
}


/* --------------------------------------------------------------------------
   3.4  CTA BUTTONS — Gradient Neon Glow
   -------------------------------------------------------------------------- */

.gn-cta-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.5);
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.gn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(0, 212, 255, 0.6),
    0 0 50px rgba(191, 0, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: var(--accent-secondary);
}

.gn-cta-primary:active {
  transform: translateY(0);
  box-shadow:
    0 0 15px rgba(0, 212, 255, 0.4),
    inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gn-cta-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition:
    all var(--duration-fast) var(--ease-out);
}

.gn-cta-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  box-shadow: 0 0 20px rgba(191, 0, 255, 0.3);
}

.gn-cta-secondary:active {
  background: rgba(0, 212, 255, 0.2);
}


/* --------------------------------------------------------------------------
   3.5  CARDS — Border Glow on Hover
   -------------------------------------------------------------------------- */

.gn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sz-6);
  transition:
    all var(--duration-normal) var(--ease-out);
}

.gn-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}

.gn-card:hover::before {
  animation: neon-border-glow 2s ease-in-out infinite;
}

@keyframes neon-border-glow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(0, 212, 255, 0.3),
      inset 0 0 15px rgba(0, 212, 255, 0.05);
  }
  50% {
    box-shadow:
      0 0 30px rgba(191, 0, 255, 0.3),
      inset 0 0 15px rgba(191, 0, 255, 0.05);
  }
}


/* --------------------------------------------------------------------------
   3.6  PRICE — Gradient Text Effect
   -------------------------------------------------------------------------- */

.gn-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: 0.02em;
}

.gn-price-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* --------------------------------------------------------------------------
   3.7  SPECS TABLE — Neon Blue Labels
   -------------------------------------------------------------------------- */

.gn-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.gn-specs-table th {
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--accent);
}

.gn-specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}

.gn-specs-table tr:hover {
  background: rgba(0, 212, 255, 0.05);
  transition: background var(--duration-fast) var(--ease-out);
}

.gn-specs-table tr:last-child td {
  border-bottom: none;
}


/* --------------------------------------------------------------------------
   3.8  FAQ — Neon Blue Chevrons
   -------------------------------------------------------------------------- */

.gn-faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: var(--sz-4) 0;
}

.gn-faq-item:last-child {
  border-bottom: none;
}

.gn-faq-question {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--duration-fast) var(--ease-out);
}

.gn-faq-question:hover {
  color: var(--accent);
}

.gn-faq-chevron {
  color: var(--accent);
  font-weight: 700;
  transition: transform var(--duration-normal) var(--ease-out);
}

.gn-faq-item.active .gn-faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-secondary);
}

.gn-faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
  max-height: 500px;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.gn-faq-item:not(.active) .gn-faq-answer {
  max-height: 0;
  padding: 0;
}

.gn-faq-item.active .gn-faq-answer {
  max-height: 500px;
  padding: var(--sz-4) 0;
}


/* --------------------------------------------------------------------------
   3.9  BENEFITS SECTION — Neon Badges
   -------------------------------------------------------------------------- */

.gn-benefit-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-right: var(--sz-2);
  margin-bottom: var(--sz-2);
  transition: all var(--duration-fast) var(--ease-out);
}

.gn-benefit-badge:hover {
  background: var(--accent);
  color: var(--text-inverse);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}


/* --------------------------------------------------------------------------
   3.10  SOCIAL PROOF — Stars and Testimonials
   -------------------------------------------------------------------------- */

.gn-star {
  color: var(--star-filled);
  display: inline-block;
  font-size: 14px;
  margin-right: 2px;
  text-shadow: 0 0 8px rgba(255, 225, 77, 0.3);
  animation: star-twinkle 3s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255, 225, 77, 0.3);
  }
  50% {
    text-shadow: 0 0 16px rgba(255, 225, 77, 0.6);
  }
}

.gn-testimonial {
  background: rgba(0, 212, 255, 0.05);
  border-left: 3px solid var(--accent);
  padding: var(--sz-4) var(--sz-6);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.gn-testimonial:hover {
  background: rgba(0, 212, 255, 0.1);
  border-left-color: var(--accent-secondary);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.gn-testimonial-text {
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: var(--sz-3);
}

.gn-testimonial-author {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-heading);
}


/* --------------------------------------------------------------------------
   3.11  CTA FINAL (Sticky) — Pulsing Glow
   -------------------------------------------------------------------------- */

.gn-cta-sticky {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  box-shadow:
    0 -4px 20px rgba(0, 212, 255, 0.3),
    0 0 30px rgba(191, 0, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.6);
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  transition: all var(--duration-fast) var(--ease-out);
  animation: gaming-pulse 2s ease-in-out infinite;
}

@keyframes gaming-pulse {
  0%, 100% {
    box-shadow:
      0 -4px 20px rgba(0, 212, 255, 0.3),
      0 0 30px rgba(191, 0, 255, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 -4px 30px rgba(0, 212, 255, 0.5),
      0 0 50px rgba(191, 0, 255, 0.4);
    transform: scale(1.02);
  }
}

.gn-cta-sticky:hover {
  box-shadow:
    0 -4px 40px rgba(0, 212, 255, 0.6),
    0 0 60px rgba(191, 0, 255, 0.5);
  transform: translateY(-2px) scale(1.05);
  animation: none;
}


/* --------------------------------------------------------------------------
   3.12  FOOTER — Dark with Accent Accents
   -------------------------------------------------------------------------- */

.gn-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.gn-footer-link {
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out);
}

.gn-footer-link:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.gn-footer-text {
  font-size: 12px;
  color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   3.13  DIVIDER — Neon Gradient Line
   -------------------------------------------------------------------------- */

.gn-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 25%,
    var(--accent-secondary) 50%,
    var(--accent) 75%,
    transparent 100%
  );
  margin: var(--sz-8) 0;
}


/* --------------------------------------------------------------------------
   3.14  FORM ELEMENTS — Neon Outline
   -------------------------------------------------------------------------- */

.gn-input,
.gn-textarea,
.gn-select {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: all var(--duration-fast) var(--ease-out);
}

.gn-input::placeholder,
.gn-textarea::placeholder {
  color: var(--text-muted);
}

.gn-input:focus,
.gn-textarea:focus,
.gn-select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.gn-input:focus:invalid,
.gn-textarea:focus:invalid {
  border-color: #FF0055;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}


/* --------------------------------------------------------------------------
   3.15  Responsive Adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .gn-cta-sticky {
    bottom: 16px;
    right: 16px;
    left: 16px;
    padding: 14px 20px;
    font-size: 12px;
  }

  .gn-nav-cta {
    padding: 8px 12px;
    font-size: 11px;
  }

  .gn-section-heading {
    font-size: 24px;
  }

  .gn-price {
    font-size: 28px;
  }

  .gn-hero-image {
    border-width: 1px;
  }

  .gn-faq-question {
    font-size: 14px;
  }

  .gn-specs-table {
    font-size: 13px;
  }

  .gn-specs-table th,
  .gn-specs-table td {
    padding: 8px 12px;
  }
}

@media (min-width: 1024px) {
  .gn-nav {
    height: 70px;
  }

  .gn-nav-logo {
    font-size: 16px;
  }

  .gn-cta-primary {
    padding: 16px 32px;
    font-size: 14px;
  }

  .gn-price {
    font-size: 48px;
  }

  .gn-section-heading {
    font-size: 42px;
  }
}
