/* ═══════════════════════════════════════════════════════════
   FORGE Command — Landing Page Stylesheet
   forgecommand.co.uk
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ──────────────────────────────────── */
:root {
  --fc-bg-primary: #0A0A0A;
  --fc-bg-secondary: #111111;
  --fc-bg-tertiary: #1A1A1A;
  --fc-bg-card: #111111;

  --fc-text-primary: #FFFFFF;
  --fc-text-secondary: #B0B0B0;
  --fc-text-tertiary: #707070;

  --fc-accent: #FFD000;
  --fc-accent-light: #FFE04D;
  --fc-accent-dark: #CCA600;
  --fc-accent-muted: rgba(255,208,0,0.08);

  --fc-success: #34C759;
  --fc-danger: #FF453A;

  --fc-border: #1E1E1E;
  --fc-border-light: #2A2A2A;

  --fc-radius-sm: 8px;
  --fc-radius-md: 12px;
  --fc-radius-lg: 16px;
  --fc-radius-xl: 24px;

  --fc-shadow: 0 4px 24px rgba(0,0,0,0.5);
  --fc-shadow-accent: 0 4px 20px rgba(255,208,0,0.15);

  --fc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fc-max-width: 1200px;

  --fc-nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fc-font);
  background-color: var(--fc-bg-primary);
  color: var(--fc-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--fc-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--fc-accent-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}


/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fc-text-primary);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p {
  color: var(--fc-text-secondary);
  line-height: 1.7;
}


/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--fc-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--fc-bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--fc-accent);
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--fc-accent-muted);
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,208,0,0.12);
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--fc-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.accent {
  color: var(--fc-accent);
}


/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--fc-radius-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  font-family: var(--fc-font);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--fc-accent);
  color: #000;
  box-shadow: var(--fc-shadow-accent);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,208,0,0.25);
  background: var(--fc-accent-light);
  color: #000;
}

.btn--ghost {
  background: transparent;
  color: var(--fc-text-primary);
  border: 2px solid var(--fc-border-light);
}
.btn--ghost:hover {
  border-color: var(--fc-accent);
  color: var(--fc-accent);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--fc-radius-lg);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}


/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--fc-nav-height);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  background: #0A0A0A;
}

.nav--scrolled {
  background: #0A0A0A;
  box-shadow: 0 1px 0 var(--fc-border);
}

.nav__inner {
  max-width: var(--fc-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--fc-text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo:hover {
  color: var(--fc-text-primary);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--fc-accent);
  border-radius: var(--fc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-icon svg {
  width: 20px;
  height: 20px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fc-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--fc-text-primary);
}

.nav__cta {
  margin-left: 8px;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fc-text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--fc-nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fc-bg-primary);
  padding: 32px 24px;
  z-index: 999;
}

.nav__mobile.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--fc-text-secondary);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--fc-border);
}
.nav__mobile a:hover {
  color: var(--fc-accent);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
}


/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: calc(var(--fc-nav-height) + 80px) 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,208,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255,208,0,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--fc-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fc-accent-muted);
  border: 1px solid rgba(255,208,0,0.12);
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-accent);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--fc-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--fc-text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--fc-border);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--fc-text-primary);
}

.hero__stat-label {
  font-size: 12px;
  color: var(--fc-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero__stat + .hero__stat {
  padding-left: 24px;
  border-left: 1px solid var(--fc-border);
}

/* Hero visual - phone mockup placeholder */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__phone {
  width: 280px;
  height: 560px;
  background: var(--fc-bg-tertiary);
  border-radius: 36px;
  border: 3px solid var(--fc-border-light);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(255,208,0,0.05);
}

.hero__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__phone-header {
  text-align: center;
  padding: 8px 0 12px;
}

.hero__phone-header-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fc-text-primary);
}

.hero__phone-header-sub {
  font-size: 10px;
  color: var(--fc-text-tertiary);
  margin-top: 2px;
}

.hero__phone-card {
  background: var(--fc-bg-card);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-sm);
  padding: 12px;
}

.hero__phone-card-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fc-text-tertiary);
  margin-bottom: 6px;
}

.hero__phone-card-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--fc-text-primary);
}

.hero__phone-card-value--accent {
  color: var(--fc-accent);
}

.hero__phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero__phone-mini {
  background: var(--fc-bg-card);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-sm);
  padding: 10px;
  text-align: center;
}

.hero__phone-mini-icon {
  font-size: 16px;
  margin-bottom: 4px;
}

.hero__phone-mini-label {
  font-size: 9px;
  color: var(--fc-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__phone-mini-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--fc-text-primary);
  margin-top: 2px;
}

.hero__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,0,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (max-width: 968px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__proof {
    justify-content: center;
  }
  .hero__visual {
    order: -1;
  }
  .hero__phone {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--fc-nav-height) + 48px);
    padding-bottom: 64px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__proof {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero__stat + .hero__stat {
    padding-left: 16px;
  }
}


/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--fc-border);
  border-bottom: 1px solid var(--fc-border);
  background: var(--fc-bg-secondary);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fc-text-tertiary);
  font-size: 14px;
  font-weight: 500;
}

.trust-bar__icon {
  width: 20px;
  height: 20px;
  color: var(--fc-accent);
  flex-shrink: 0;
}


/* ── FEATURES ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--fc-bg-card);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: 36px 28px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fc-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--fc-border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--fc-accent-muted);
  border: 1px solid rgba(255,208,0,0.12);
  border-radius: var(--fc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--fc-accent);
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fc-text-primary);
}

.feature-card__desc {
  font-size: 14px;
  color: var(--fc-text-secondary);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* ── HOW IT WORKS ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--fc-border), var(--fc-accent), var(--fc-border));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fc-bg-tertiary);
  border: 2px solid var(--fc-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: 800;
  color: var(--fc-accent);
  position: relative;
  z-index: 1;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: var(--fc-text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps::before {
    display: none;
  }
}


/* ── PRICING ────────────────────────────────────────────── */
.pricing {
  text-align: center;
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--fc-bg-card);
  border: 2px solid var(--fc-accent);
  border-radius: var(--fc-radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fc-accent);
}

.pricing-card__badge {
  display: inline-block;
  background: var(--fc-accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pricing-card__price {
  font-size: 56px;
  font-weight: 800;
  color: var(--fc-text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price-note {
  font-size: 16px;
  color: var(--fc-text-tertiary);
  margin-bottom: 32px;
  font-weight: 500;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 36px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--fc-border);
  font-size: 15px;
  color: var(--fc-text-secondary);
}

.pricing-card__feature:last-child {
  border-bottom: none;
}

.pricing-card__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--fc-success);
  margin-top: 1px;
}

.pricing-card__cta {
  width: 100%;
}

.pricing-compare {
  margin-top: 48px;
  padding: 32px;
  background: var(--fc-bg-tertiary);
  border-radius: var(--fc-radius-lg);
  border: 1px solid var(--fc-border);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-compare__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fc-text-primary);
}

.pricing-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-compare__table th,
.pricing-compare__table td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--fc-border);
}

.pricing-compare__table th {
  color: var(--fc-text-tertiary);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-compare__table td {
  color: var(--fc-text-secondary);
}

.pricing-compare__table tr:last-child td {
  border-bottom: none;
}

.pricing-compare__highlight {
  color: var(--fc-accent) !important;
  font-weight: 700;
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 36px 24px;
  }
  .pricing-card__price {
    font-size: 44px;
  }
}


/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--fc-bg-card);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial__star {
  width: 16px;
  height: 16px;
  color: var(--fc-accent);
}

.testimonial__text {
  font-size: 15px;
  color: var(--fc-text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--fc-border);
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fc-bg-tertiary);
  border: 2px solid var(--fc-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--fc-accent);
}

.testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--fc-text-primary);
}

.testimonial__role {
  font-size: 12px;
  color: var(--fc-text-tertiary);
  margin-top: 1px;
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}


/* ── ROLES SECTION ──────────────────────────────────────── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.role-card {
  background: var(--fc-bg-card);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s;
}

.role-card:hover {
  border-color: var(--fc-border-light);
}

.role-card__icon {
  width: 40px;
  height: 40px;
  background: var(--fc-accent-muted);
  border-radius: var(--fc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.role-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--fc-accent);
}

.role-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fc-text-primary);
  margin-bottom: 4px;
}

.role-card__desc {
  font-size: 13px;
  color: var(--fc-text-tertiary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }
}


/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--fc-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--fc-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--fc-text-primary);
  text-align: left;
  transition: color 0.2s;
}

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

.faq-question__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--fc-text-tertiary);
  transition: transform 0.3s, color 0.2s;
}

.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
  color: var(--fc-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer__inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--fc-text-secondary);
  line-height: 1.7;
}


/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,208,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-section__subtitle {
  font-size: 17px;
  color: var(--fc-text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--fc-bg-tertiary);
  border: 1px solid var(--fc-border-light);
  border-radius: var(--fc-radius-md);
  padding: 0 20px;
  color: var(--fc-text-primary);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 600;
}

.store-badge:hover {
  border-color: var(--fc-accent);
  color: var(--fc-text-primary);
  transform: translateY(-2px);
}

.store-badge svg {
  width: 20px;
  height: 20px;
}


/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--fc-border);
  background: var(--fc-bg-primary);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--fc-text-primary);
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--fc-accent);
  border-radius: var(--fc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-icon svg {
  width: 18px;
  height: 18px;
}

.footer__desc {
  font-size: 14px;
  color: var(--fc-text-tertiary);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fc-text-tertiary);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: var(--fc-text-secondary);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__link:hover {
  color: var(--fc-accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--fc-border);
  font-size: 13px;
  color: var(--fc-text-tertiary);
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  color: var(--fc-text-tertiary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer__legal-link:hover {
  color: var(--fc-accent);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}


/* ── LEGAL PAGES (Terms & Privacy) ──────────────────────── */
.legal {
  padding: calc(var(--fc-nav-height) + 60px) 0 100px;
}

.legal__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 8px;
}

.legal__updated {
  font-size: 14px;
  color: var(--fc-text-tertiary);
  margin-bottom: 48px;
}

.legal__content h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--fc-border);
}

.legal__content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal__content h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal__content p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.legal__content ul, .legal__content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal__content ul {
  list-style: disc;
}

.legal__content ol {
  list-style: decimal;
}

.legal__content li {
  font-size: 15px;
  color: var(--fc-text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal__content a {
  color: var(--fc-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }


/* ── UTILITY ────────────────────────────────────────────── */
.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;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
