/* edirneinfluencer.com — koyu, premium, sinematik */
:root {
  --bg: #0c0b09;
  --bg-2: #14120e;
  --line: rgba(245, 240, 232, 0.1);
  --text: #f5f0e8;
  --text-dim: #a39c8f;
  --accent: #e8a33d;
  --accent-dim: rgba(232, 163, 61, 0.14);
  --radius: 14px;
  --font-sans: "Sora", system-ui, sans-serif;
  --font-mono: "Space Grotesk", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(12, 11, 9, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-weight: 800; font-size: 1.06rem; letter-spacing: -0.02em; }
.logo em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 0.92rem; color: var(--text-dim); }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  background: var(--accent); color: #171106; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }
.nav .btn { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Sinematik hero (scroll-scrub) ---------- */
.cine { height: 280vh; position: relative; }
.cine-sticky {
  position: sticky; top: 0; height: 100dvh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cine-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 50% 60%, var(--accent-dim), transparent 70%);
}
.cine-char {
  position: absolute; top: 50%; left: 50%;
  will-change: transform;
  z-index: 2;
}
.cine-left  { transform: translate(-72%, -46%); }
.cine-right { transform: translate(-28%, -46%); }
.cine-char canvas {
  height: 80dvh; width: auto; display: block;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.5));
}
.cine-copy {
  position: absolute; z-index: 3;
  left: 50%; top: 50%;
  transform: translate(-50%, -44%);
  width: min(600px, 44vw);
  text-align: center;
  opacity: 0; will-change: opacity, transform;
  pointer-events: none;
}
.cine-copy.active { pointer-events: auto; }
.cine-copy h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 800;
}
.cine-copy h1 em { font-style: italic; color: var(--accent); line-height: 1.1; display: inline-block; padding-bottom: 4px; margin-right: 0.18em; }
.cine-copy p.sub { margin: 22px auto 30px; max-width: 40ch; color: var(--text-dim); font-size: 1.02rem; }
.cine-copy .hero-cta { justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px;
  align-items: center;
  padding-top: 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 78% 30%, var(--accent-dim), transparent 70%);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 800;
}
.hero h1 em { font-style: italic; color: var(--accent); line-height: 1.1; display: inline-block; padding-bottom: 4px; margin-right: 0.18em; }
.hero p.sub {
  margin: 26px 0 36px; max-width: 46ch; color: var(--text-dim); font-size: 1.08rem;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; height: 72dvh; min-height: 480px; }
.hero-visual .hv-img {
  position: absolute; border-radius: var(--radius); object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.hv-1 { width: 62%; height: 68%; top: 4%; right: 8%; z-index: 2; }
.hv-2 { width: 44%; height: 46%; bottom: 2%; left: 0; z-index: 3; border: 1px solid var(--line); }
.hv-badge {
  position: absolute; z-index: 4; top: 12%; left: 4%;
  background: rgba(20, 18, 14, 0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-family: var(--font-mono); font-size: 0.82rem;
  display: flex; gap: 8px; align-items: center;
}
.hv-badge strong { color: var(--accent); }

/* ---------- Stats strip ---------- */
.stats {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 40px 0;
}
.stat { padding: 0 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { font-family: var(--font-mono); font-size: 2rem; color: var(--accent); display: block; letter-spacing: -0.02em; }
.stat span { color: var(--text-dim); font-size: 0.88rem; }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.sec-head { margin-bottom: 56px; max-width: 640px; }
.sec-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; flex-wrap: wrap; }
.sec-head-row > div { max-width: 640px; }
.sec-head-link { flex-shrink: 0; padding: 12px 22px; font-size: 0.9rem; white-space: nowrap; }
.sec-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  letter-spacing: -0.03em; line-height: 1.08; font-weight: 800;
}
.sec-head p { margin-top: 16px; color: var(--text-dim); }

/* ---------- Influencer grid ---------- */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
/* Ana sayfa önizlemesi: her zaman 3 kart görünür, fazlası yana kaydırılır (ok butonları + otomatik kayma ile) */
.inf-strip-wrap { position: relative; }
.inf-strip {
  display: flex; gap: 22px; overflow-x: auto; padding-bottom: 10px;
  scroll-snap-type: x proximity; scrollbar-width: thin; scroll-behavior: smooth;
}
.inf-strip .card { flex: 0 0 calc((100% - 44px) / 3); min-width: 240px; scroll-snap-align: start; }
.inf-arrow {
  position: absolute; top: 44%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(20, 18, 14, 0.9); border: 1px solid var(--line); color: var(--text);
  font-size: 1.4rem; line-height: 1; cursor: pointer; backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, opacity 0.2s;
}
.inf-arrow:hover { border-color: var(--accent); color: var(--accent); }
.inf-arrow:disabled { opacity: 0.25; cursor: default; }
.inf-arrow:disabled:hover { border-color: var(--line); color: var(--text); }
.inf-arrow-prev { left: -23px; }
.inf-arrow-next { right: -23px; }
@media (max-width: 900px) {
  .inf-strip .card { flex: 0 0 80%; }
  .inf-arrow { display: none; }
}
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(232, 163, 61, 0.45); }
.card-photo { aspect-ratio: 4 / 4.6; overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover .card-photo img { transform: scale(1.045); }
.card-body { padding: 20px 22px 24px; }
.card-cat { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); }
.card-name { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; }
.card-handle { color: var(--text-dim); font-size: 0.88rem; }
.card-platforms { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.cp {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim);
}
.cp img { width: 15px; height: 15px; opacity: 0.85; border-radius: 3px; object-fit: cover; }
.cp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.cp b { color: var(--text); font-weight: 600; }

/* ---------- Nasıl çalışır ---------- */
.how { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.how-list { display: flex; flex-direction: column; gap: 8px; }
.how-item {
  padding: 26px 28px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.how-item:hover { border-color: var(--line); background: rgba(245, 240, 232, 0.03); }
.how-item h3 { font-size: 1.15rem; letter-spacing: -0.02em; }
.how-item h3 span { color: var(--accent); font-family: var(--font-mono); margin-right: 12px; }
.how-item p { color: var(--text-dim); font-size: 0.95rem; margin-top: 8px; }
.how-visual { border-radius: var(--radius); overflow: hidden; height: 520px; background: var(--bg-2); }
.how-visual img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- CTA band ---------- */
.cta-band { text-align: left; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 20% 100%, var(--accent-dim), transparent 70%);
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.06; max-width: 16ch; font-weight: 800; }
.cta-band .row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.cta-band p { color: var(--text-dim); max-width: 42ch; margin-top: 18px; }

/* ---------- Forms ---------- */
.forms { background: var(--bg-2); border-top: 1px solid var(--line); }
.forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px;
}
.form-card h3 { font-size: 1.4rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.form-card > p { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; color: var(--text); font-family: var(--font-sans); font-size: 0.95rem;
  outline: none; transition: border-color 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 96px; }
.field-hint { color: var(--text-dim); font-weight: 400; font-size: 0.82rem; }
.check-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 14px; cursor: pointer; transition: border-color 0.2s;
}
.check-item:hover { border-color: rgba(232, 163, 61, 0.4); }
.check-item input { accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.check-item span { font-size: 0.9rem; }
.check-item-cat { color: var(--text-dim); font-size: 0.85em; }

/* Influencer çoklu seçim dropdown'ı */
.multiselect { position: relative; }
.multiselect-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; color: var(--text); font-family: var(--font-sans); font-size: 0.95rem;
  cursor: pointer; transition: border-color 0.25s;
}
.multiselect-toggle:hover, .multiselect-toggle.is-open { border-color: var(--accent); }
.multiselect-arrow { color: var(--text-dim); transition: transform 0.2s; font-size: 0.8rem; }
.multiselect-toggle.is-open .multiselect-arrow { transform: rotate(180deg); }
.multiselect-panel {
  position: absolute; z-index: 30; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.multiselect-search {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 14px; color: var(--text); font-family: var(--font-sans); font-size: 0.9rem;
  outline: none; margin-bottom: 10px;
}
.multiselect-search:focus { border-color: var(--accent); }
.multiselect-list { display: flex; flex-direction: column; gap: 6px; max-height: 260px; overflow-y: auto; }
.form-msg { margin-top: 14px; font-size: 0.9rem; color: var(--accent); min-height: 1.4em; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 48px 0; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.88rem; }
.foot a:hover { color: var(--accent); }

/* ---------- Profil sayfası ---------- */
.profile-hero { position: relative; height: 46dvh; min-height: 340px; overflow: hidden; }
.profile-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.profile-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 4%, transparent 70%);
}
.profile-head {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  margin-top: -120px; position: relative; z-index: 2; align-items: end;
}
.profile-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.profile-info h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; line-height: 1.05; }
.profile-info .handle { color: var(--accent); font-family: var(--font-mono); margin-top: 6px; }
.profile-info .bio { color: var(--text-dim); max-width: 56ch; margin-top: 18px; }
.profile-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag-pill {
  font-size: 0.82rem; padding: 6px 14px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text-dim);
}
.tag-pill-accent { color: var(--accent); border-color: var(--accent); }
.collab-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.collab-tags .tag-pill { font-size: 0.88rem; padding: 9px 18px; }
.profile-stats { display: flex; gap: 14px; margin: 60px 0 0; flex-wrap: wrap; }
.pstat {
  flex: 1; min-width: 180px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px;
}
.pstat .cp { margin-bottom: 8px; }
.pstat b { font-family: var(--font-mono); font-size: 1.7rem; color: var(--text); display: block; }
.pstat span { color: var(--text-dim); font-size: 0.85rem; }
.pstat-link { display: block; color: inherit; transition: border-color 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.pstat-link:hover { border-color: rgba(232, 163, 61, 0.5); transform: translateY(-3px); }
.pstat-go { color: var(--accent); font-weight: 700; }
.reels-strip {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 6px;
  scroll-snap-type: x proximity;
}
.reel-card {
  flex: 0 0 auto; width: 220px; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.reel-card:hover { transform: translateY(-4px); border-color: rgba(232, 163, 61, 0.45); }
.reel-card-disabled { cursor: default; }
.reel-card-disabled:hover { transform: none; border-color: var(--line); }
.reel-thumb { position: relative; aspect-ratio: 9 / 16; background: var(--bg-2); }
.reel-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.reel-card:hover .reel-thumb img { transform: scale(1.04); }
.reel-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 45%);
}
.reel-play, .reel-soon {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.reel-play { background: var(--accent); color: #171106; }
.reel-play img { width: 14px; height: 14px; filter: none; }
.reel-soon { background: rgba(20,18,14,0.85); color: var(--text-dim); border: 1px solid var(--line); font-weight: 600; }

/* Gömülü YouTube oynatıcı (kapak yoksa) */
.reel-embed { cursor: pointer; }
.reel-embed .reel-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; z-index: 3; }
.reel-embed.is-playing { cursor: default; }
.reel-embed.is-playing:hover { transform: none; }
.reel-embed.is-playing .reel-thumb::after,
.reel-embed.is-playing .reel-play { display: none; }

/* İşbirliği video kartları (yatay, gömülü) */
.collab-videos { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 22px; }
.collab-card { width: 220px; max-width: 100%; }
.collab-thumb { position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.collab-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collab-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%); }
.collab-card.reel-embed { cursor: pointer; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.collab-card.reel-embed:hover { transform: translateY(-4px); }
.collab-card .reel-play { position: absolute; left: 12px; bottom: 12px; z-index: 2; }
.collab-card-name { margin-top: 10px; font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; }
.collab-card.reel-embed .collab-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; z-index: 3; }
.collab-card.reel-embed.is-playing { cursor: default; transform: none; }
.collab-card.reel-embed.is-playing .collab-thumb::after,
.collab-card.reel-embed.is-playing .reel-play { display: none; }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .card-photo img { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobil ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .cine { height: 220vh; }
  .cine-char canvas { height: 46dvh; }
  .cine-left  { transform: translate(-68%, -78%); }
  .cine-right { transform: translate(-32%, -78%); }
  .cine-copy {
    left: 24px; right: 24px; top: auto; bottom: 7dvh; transform: none; width: auto;
  }
  .hero { grid-template-columns: 1fr; padding-top: 110px; min-height: auto; padding-bottom: 60px; }
  .hero-visual { height: 52dvh; min-height: 360px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .stat:nth-child(3) { border-left: none; }
  .grid { grid-template-columns: 1fr; }
  .card:nth-child(3n+2) { margin-top: 0; }
  .how-flow { grid-template-columns: 1fr; }
  .how-visual { height: 320px; }
  .forms-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .profile-head { grid-template-columns: 1fr; gap: 24px; margin-top: -80px; }
  .profile-photo { max-width: 220px; }
  .reel-card { width: 168px; }
  section { padding: 72px 0; }
}

/* ---------- SSS / SEO içerik bölümü ---------- */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro .sec-head { margin-bottom: 22px; }
.seo-lede { color: var(--text-dim); font-size: 0.98rem; line-height: 1.7; }
.seo-lede p { margin-bottom: 14px; }
.seo-lede strong { color: var(--text); font-weight: 600; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); overflow: hidden; transition: border-color 0.25s, background 0.25s;
}
.faq-item[open] { border-color: rgba(232, 163, 61, 0.35); background: rgba(245, 240, 232, 0.02); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0; font-weight: 400; font-size: 1.5rem; line-height: 1;
  color: var(--accent); transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; color: var(--text-dim); line-height: 1.72; font-size: 0.97rem; }
.faq-item .faq-a a { color: var(--accent); }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-intro { position: static; }
}
