/* =============================================
   Lingoras — Marketing site
   Primary: #0b1632 / Accent: #4272f2
   ============================================= */

:root {
  --primary: #0b1632;
  --primary-light: #142042;
  --primary-deep: #060d22;
  --accent: #4272f2;
  --accent-light: #6b8ff7;
  --accent-glow: rgba(66, 114, 242, 0.4);
  --accent-2: #7c3aed;
  --text: #f0f4ff;
  --text-muted: #8b95b3;
  --text-dim: #5e6a8a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-hover: rgba(255, 255, 255, 0.05);
  --success: #22c55e;
  --warning: #f59e0b;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 10px 60px var(--accent-glow);

  --container-max: 1200px;
}

/* =============================================
   I18N — bilingual visibility
   Her cevirilebilir element <span lang="tr"> ve <span lang="en"> ile
   ikilenmis durumda. Aktif dil disindaki span'ler gizleniyor. Boylece
   JS dictionary'siz, FOUC'suz cift dil destegi saglaniyor.
   ============================================= */
html[lang="tr"] [lang="en"] { display: none !important; }
html[lang="en"] [lang="tr"] { display: none !important; }

/* =============================================
   LANG SWITCHER
   ============================================= */
.lang-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  background: transparent;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: rgba(66, 114, 242, 0.18);
  color: var(--accent-light);
  box-shadow: 0 1px 6px rgba(66, 114, 242, 0.18);
}

/* =============================================
   RESET / BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--primary);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(66, 114, 242, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(124, 58, 237, 0.10), transparent);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button { cursor: pointer; font: inherit; color: inherit; background: none; border: none; }

code {
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 0.875em;
  background: rgba(66, 114, 242, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-light);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY UTILS
   ============================================= */
.grad-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-light);
  text-transform: uppercase;
  background: rgba(66, 114, 242, 0.12);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(66, 114, 242, 0.25);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
.eyebrow-light { background: transparent; border-color: var(--border-strong); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-large { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 4px 20px rgba(66, 114, 242, 0.35);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(66, 114, 242, 0.55);
}

.btn-secondary {
  background: white;
  color: var(--primary);
}
.btn-secondary:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--accent);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 22, 50, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--text); }
.brand-icon { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 860px) {
  /* Mobile nav-links: nav'in altina absolute olarak yerlesir, varsayilan
     gizli; .open sinifi geldiginde gosterilir. position:absolute + top:100%
     nav yuksekligine otomatik uyum saglar (nav buyurse menu de kayar). */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  /* Mobile nav cramped olmasin: install butonu gizle, lang-switch ve toggle kalsin */
  .nav-inner > .btn { display: none; }
  .nav-inner { gap: 12px; flex-wrap: nowrap; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(66, 114, 242, 0.18), transparent),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(124, 58, 237, 0.15), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 24px 0 20px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-meta span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero visual: browser mockup */
.hero-visual {
  position: relative;
  perspective: 1200px;
}

.browser-mock {
  background: var(--primary-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.hero-visual:hover .browser-mock {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border);
}
.browser-bar .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--text-dim);
}
.browser-bar .dot.red { background: #ef4444; }
.browser-bar .dot.yellow { background: #f59e0b; }
.browser-bar .dot.green { background: #22c55e; }
.browser-url {
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.browser-url svg { color: var(--success); }

.browser-content {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1f3a, #0b1632);
}

.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 50%, rgba(66, 114, 242, 0.3), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.3), transparent 60%),
    linear-gradient(135deg, #2a1f4a 0%, #0b1632 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  position: relative;
  z-index: 2;
  opacity: 0.85;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.video-decor { position: absolute; inset: 0; }
.video-decor .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}
.orb-1 { width: 200px; height: 200px; background: var(--accent); top: 10%; left: 10%; }
.orb-2 { width: 150px; height: 150px; background: var(--accent-2); bottom: 20%; right: 15%; }
.orb-3 { width: 100px; height: 100px; background: #ec4899; top: 50%; left: 60%; }

.subtitle-overlay {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  z-index: 3;
  width: 90%;
}
.subtitle {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}
.subtitle.main {
  background: rgba(0, 0, 0, 0.78);
  color: white;
  font-size: 15px;
}
.subtitle.second {
  background: rgba(0, 0, 0, 0.6);
  color: #d1d5db;
  font-size: 12px;
}

/* Floating cards around mockup */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 32, 66, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.fc-icon {
  width: 36px; height: 36px;
  background: rgba(66, 114, 242, 0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}
.fc-text { display: flex; flex-direction: column; }
.fc-text strong { font-size: 13px; color: var(--text); }
.fc-text span { font-size: 11px; color: var(--text-muted); }

.card-1 { top: 8%; left: -12%; animation-delay: 0s; }
.card-2 { bottom: 12%; right: -8%; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { order: -1; max-width: 540px; margin: 0 auto; }
  .floating-card.card-1 { left: -8px; }
  .floating-card.card-2 { right: -8px; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
}

/* =============================================
   LOGOS / SUPPORTED PLATFORMS
   ============================================= */
.logos { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-title {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.logo-pill {
  padding: 8px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.logo-pill:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(66, 114, 242, 0.1);
}

/* =============================================
   SECTION HEADS
   ============================================= */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66, 114, 242, 0.05), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(66, 114, 242, 0.4);
  background: var(--card-bg-hover);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(66, 114, 242, 0.12);
  border: 1px solid rgba(66, 114, 242, 0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
  margin-bottom: 20px;
  position: relative;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  position: relative;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

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

/* =============================================
   HOW IT WORKS
   ============================================= */
.how { background: rgba(255, 255, 255, 0.015); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 56px;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong) 30%, var(--border-strong) 70%, transparent);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  display: inline-flex;
  width: 100px; height: 100px;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--primary);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--accent-light);
  background-image: linear-gradient(135deg, rgba(66, 114, 242, 0.1), rgba(124, 58, 237, 0.05));
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

.how-cta { text-align: center; }

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

/* =============================================
   USE CASES
   ============================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.case-card.accent {
  background: linear-gradient(135deg, rgba(66, 114, 242, 0.08), rgba(124, 58, 237, 0.04));
  border-color: rgba(66, 114, 242, 0.3);
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.case-card.accent:hover { border-color: rgba(66, 114, 242, 0.5); }

.case-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: rgba(66, 114, 242, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(66, 114, 242, 0.2);
}
.case-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* =============================================
   PROVIDERS
   ============================================= */
.provider-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.provider-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.provider-card.recommended {
  border-color: rgba(66, 114, 242, 0.4);
  background:
    linear-gradient(180deg, rgba(66, 114, 242, 0.08), transparent 60%),
    var(--card-bg);
  box-shadow: 0 0 0 1px rgba(66, 114, 242, 0.2), 0 20px 50px rgba(66, 114, 242, 0.12);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.provider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.provider-head h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-tag.free { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.price-tag.paid { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }

.provider-tagline {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.55;
}

.provider-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.provider-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.provider-features li:last-child { border-bottom: none; }
.provider-features li span {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.providers-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 40px auto 0;
  line-height: 1.6;
}

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

/* =============================================
   LANGUAGES
   ============================================= */
.languages { background: rgba(255, 255, 255, 0.015); }

.lang-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.lang-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.lang-cloud span:hover {
  border-color: var(--accent);
  background: rgba(66, 114, 242, 0.1);
  transform: translateY(-2px);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.faq-item[open] {
  background: var(--card-bg-hover);
  border-color: rgba(66, 114, 242, 0.3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  background: rgba(66, 114, 242, 0.12);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-body {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-body strong { color: var(--text); }
.faq-body code { font-size: 13px; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta { padding: 100px 0; }

.cta-card {
  background: linear-gradient(135deg, rgba(66, 114, 242, 0.15), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(66, 114, 242, 0.3);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(66, 114, 242, 0.1), transparent 70%);
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
}
.cta-card p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
}
.cta-meta {
  font-size: 13px;
  color: var(--text-dim);
  position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--primary-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
}
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   PRIVACY PAGE
   ============================================= */
.legal {
  padding: 140px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.legal .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}
.legal h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-top: 48px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal ul, .legal ol {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15.5px;
}
.legal ul, .legal ol { padding-left: 24px; }
.legal ul li, .legal ol li { margin-bottom: 8px; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--accent-light); }
.legal a:hover { text-decoration: underline; }
.legal .legal-toc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 48px;
}
.legal .legal-toc h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal .legal-toc ol {
  padding-left: 20px;
  margin: 0;
  font-size: 14.5px;
}
.legal .legal-toc li { margin-bottom: 4px; }
.legal .legal-toc a { color: var(--text); font-weight: 500; }
.legal table {
  width: 100%;
  margin: 16px 0 24px;
  border-collapse: collapse;
  font-size: 14px;
}
.legal table th, .legal table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.legal table th {
  font-weight: 700;
  color: var(--text);
  background: var(--card-bg);
}
.legal table td { color: var(--text-muted); }
.legal table code { font-size: 12.5px; }
