/* ============================================
   SEORAR — Siyah Tema / Altın-Turuncu Vurgu
   ============================================ */
:root {
  --bg: #060606;
  --bg-2: #0c0c0e;
  --bg-3: #121215;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-border: rgba(255, 176, 66, 0.16);
  --text: #eeeae2;
  --text-dim: #a9a49a;
  --gold: #f5a623;
  --gold-2: #ffcf5c;
  --orange: #ff7a1a;
  --grad: linear-gradient(100deg, #ffd76a 0%, #f5a623 45%, #ff7a1a 100%);
  --radius: 16px;
  --header-h: 76px;
  --max-w: 1180px;
  --shadow-gold: 0 0 32px rgba(245, 166, 35, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: rgba(245, 166, 35, 0.35); color: #fff; }

/* ---------- Parçacık arka plan ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(245, 166, 35, 0.07), transparent 60%),
    radial-gradient(900px 500px at 85% 110%, rgba(255, 122, 26, 0.05), transparent 60%),
    linear-gradient(to bottom, rgba(6,6,6,0) 0%, rgba(6,6,6,0.25) 100%);
}

.site { position: relative; z-index: 2; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6, 6, 6, 0.55);
  border-bottom: 1px solid rgba(245, 166, 35, 0.10);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.header.scrolled {
  background: rgba(6, 6, 6, 0.85);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- Logo (animasyonlu) ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  user-select: none;
}
.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}
.logo-mark .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--orange);
  animation: spin 3.2s linear infinite;
}
.logo-mark .ring.r2 {
  inset: 6px;
  border-top-color: var(--orange);
  border-right-color: transparent;
  border-left-color: var(--gold-2);
  animation: spin-rev 2.2s linear infinite;
}
.logo-mark .core {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(245, 166, 35, 0.65);
  animation: pulse 2.4s ease-in-out infinite;
}
/* Logo görseli (animasyonlu SVG) */
.logo-img { height: 46px; width: auto; display: block; filter: drop-shadow(0 0 14px rgba(255, 107, 0, 0.25)); }
.footer-logo { height: 40px; }

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3.5s linear infinite;
}
.logo-text small {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--text-dim);
  -webkit-text-fill-color: var(--text-dim);
  margin-top: -4px;
  text-transform: uppercase;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.82); opacity: 0.75; }
}
@keyframes shine { to { background-position: 200% center; } }
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ---------- Nav ---------- */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold-2); background: rgba(245, 166, 35, 0.08); }
.nav a.active {
  color: #111;
  background: var(--grad);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.nav a.panel-btn {
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: var(--gold-2);
  margin-left: 6px;
}
.nav a.panel-btn:hover { background: rgba(245, 166, 35, 0.14); }
.nav a.panel-btn.active { color: #111; border-color: transparent; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 10px;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Genel bölüm düzeni ---------- */
main { padding-top: var(--header-h); }

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 84px 24px;
}
.section.tight { padding: 48px 24px; }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
  background: rgba(245, 166, 35, 0.06);
}

h1, h2, h3 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5.4vw, 3.7rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
h3 { font-size: 1.15rem; }

.grad-text {
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s linear infinite;
}

.lead { color: var(--text-dim); font-size: 1.08rem; max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(92vh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero .section { padding-top: 40px; padding-bottom: 60px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}
.btn-gold { background: var(--grad); color: #141005; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(245, 166, 35, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(245, 166, 35, 0.45);
}
.btn-ghost:hover { background: rgba(245, 166, 35, 0.1); transform: translateY(-2px); }

/* ---------- İstatistik şeridi ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 22px; margin-top: 44px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--panel-border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 166, 35, 0.08);
}
.card:hover::before { opacity: 1; }
.card .icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.12), rgba(255, 107, 0, 0.05));
  border: 1px solid rgba(245, 166, 35, 0.28);
  margin-bottom: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card .icon svg { width: 26px; height: 26px; filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.35)); }
.card:hover .icon { transform: scale(1.08) rotate(-3deg); box-shadow: 0 0 22px rgba(245, 166, 35, 0.2); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.95rem; }
.card .more {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.card .more:hover { color: var(--gold-2); }

/* ---------- Fiyat kartları ---------- */
.price-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 38px 28px;
}
.price-card .plan { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }
.price-card .price {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 12px 0 4px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card .per { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 22px; }
.price-card ul { list-style: none; text-align: left; margin: 0 0 26px; flex: 1; }
.price-card li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.93rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 800;
}
.price-card li.no::before { content: "—"; color: #555; }
.price-card.featured {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 0 44px rgba(245, 166, 35, 0.12);
  transform: scale(1.03);
}
.price-card.featured::before { opacity: 1; }
.badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad);
  color: #141005;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* ---------- Süreç adımları ---------- */
.steps { counter-reset: step; }
.step { padding-left: 78px; position: relative; }
.step::after {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 22px; top: 28px;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Referans / yorum ---------- */
.quote { font-style: italic; color: var(--text); }
.quote-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #141005;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}
.quote-author b { display: block; font-size: 0.95rem; }
.quote-author span { font-size: 0.82rem; color: var(--text-dim); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }

/* ---------- Blog ---------- */
.blog-card { padding: 0; }
.blog-thumb {
  height: 170px;
  background:
    radial-gradient(300px 150px at 30% 20%, rgba(245, 166, 35, 0.35), transparent 70%),
    radial-gradient(260px 160px at 80% 90%, rgba(255, 122, 26, 0.28), transparent 70%),
    var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-thumb svg { width: 58px; height: 58px; opacity: 0.9; filter: drop-shadow(0 0 16px rgba(245, 166, 35, 0.4)); }
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card .excerpt { color: var(--text-dim); font-size: 0.92rem; margin-top: 8px; }
.blog-body { padding: 24px 24px 28px; }
.blog-meta { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.blog-meta b { color: var(--gold); }

/* ---------- Müşteri paneli / formlar ---------- */
.auth-wrap {
  max-width: 460px;
  margin: 40px auto 0;
}
.form-card { padding: 40px 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 7px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}
.form-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; font-size: 0.85rem; }
.form-foot a { color: var(--gold); text-decoration: none; }
.w100 { width: 100%; justify-content: center; }

/* ---------- CTA bandı ---------- */
.cta-band {
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(245, 166, 35, 0.12), transparent 60%),
    radial-gradient(500px 260px at 90% 100%, rgba(255, 122, 26, 0.10), transparent 60%),
    var(--panel);
  padding: 60px 40px;
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(245, 166, 35, 0.12);
  background: rgba(8, 8, 8, 0.8);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--gold-2); }
.footer a { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.9rem; padding: 4px 0; }
.footer a:hover { color: var(--gold); }
.footer p { color: var(--text-dim); font-size: 0.9rem; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid.c4 { grid-template-columns: repeat(2, 1fr); }
  .grid.c3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 8, 8, 0.97);
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
    padding: 14px 20px 20px;
    gap: 6px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px 16px; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .grid.c2, .grid.c3, .grid.c4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .section { padding: 60px 20px; }
}

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

/* ---------- Makale sayfaları ---------- */
.article-meta { color: var(--text-dim); font-size: 0.9rem; margin-top: 14px; }
.article { max-width: 840px; margin: 0 auto; background: var(--panel); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 48px 52px; }
.article h2 { font-size: 1.45rem; margin: 36px 0 14px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 26px 0 10px; }
.article p { color: var(--text-dim); margin: 0 0 16px; }
.article ul { margin: 0 0 18px 4px; padding-left: 22px; color: var(--text-dim); }
.article li { margin-bottom: 10px; }
.article a { color: var(--gold); text-decoration: none; border-bottom: 1px dashed rgba(245,166,35,0.4); }
.article a:hover { color: var(--gold-2); border-bottom-style: solid; }
.article strong { color: var(--text); }
.article em { color: var(--gold-2); font-style: normal; }
.faq details { border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 15px 20px; margin-bottom: 10px; background: rgba(255,255,255,0.02); }
.faq details:hover, .faq details[open] { border-color: rgba(245,166,35,0.35); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--text); }
.faq details p { margin: 12px 0 0; }
.article-related { max-width: 840px; margin: 34px auto 0; background: rgba(245,166,35,0.04); border: 1px solid rgba(245,166,35,0.18); border-radius: var(--radius); padding: 24px 30px; }
.article-related h3 { color: var(--gold-2); margin-bottom: 12px; font-size: 1rem; }
.related-link { display: block; color: var(--text-dim); text-decoration: none; padding: 7px 0; border-bottom: 1px dashed rgba(255,255,255,0.07); }
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--gold); }
.article-actions { max-width: 840px; margin: 30px auto 0; display: flex; gap: 14px; flex-wrap: wrap; justify-content: space-between; }
@media (max-width: 640px) { .article { padding: 30px 22px; } }

/* ---------- Araç sayfaları ---------- */
.tool-label { display: block; font-weight: 700; margin-bottom: 10px; }
.tool-input, .tool-line { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 14px 16px; color: var(--text); font-size: 0.97rem; font-family: inherit; resize: vertical; }
.tool-input:focus, .tool-line:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.tool-stats { margin-top: 26px; }
.dens-row { display: flex; align-items: center; gap: 14px; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.07); }
.dens-row span { min-width: 130px; color: var(--text); font-weight: 600; }
.dens-row b { min-width: 90px; text-align: right; color: var(--gold); font-size: 0.88rem; }
.dens-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.dens-bar i { display: block; height: 100%; background: var(--grad); border-radius: 99px; }
.check-item { display: flex; gap: 14px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; margin-bottom: 10px; align-items: flex-start; }
.check-item p { margin: 3px 0 0; font-size: 0.9rem; }
.check-ic { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; flex: 0 0 auto; font-size: 0.85rem; }
.check-item.ok .check-ic { background: rgba(80,200,120,0.15); color: #5c6; }
.check-item.warn .check-ic { background: rgba(245,166,35,0.15); color: var(--gold); }
.check-item.fail .check-ic { background: rgba(220,80,80,0.15); color: #e66; }
.serp-card { background: #fff; border-radius: 12px; padding: 22px 26px; max-width: 640px; }
.serp-url { color: #202124; font-size: 13px; font-family: Arial, sans-serif; margin-bottom: 4px; }
.serp-title { color: #1a0dab; font-size: 20px; font-family: Arial, sans-serif; line-height: 1.3; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.serp-desc { color: #4d5156; font-size: 14px; font-family: Arial, sans-serif; line-height: 1.55; }
.meter { height: 7px; background: rgba(255,255,255,0.07); border-radius: 99px; margin-top: 9px; overflow: hidden; }
.meter i { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 99px; transition: width 0.2s; }
.meter i.near { background: linear-gradient(90deg, #f5a623, #ff7a1a); }
.meter i.over { background: #e05555; }
.meter-info { color: var(--text-dim); display: block; margin-top: 6px; }
.result-line { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.result-line code { flex: 1; min-width: 200px; background: rgba(255,255,255,0.05); border: 1px solid rgba(245,166,35,0.3); border-radius: 10px; padding: 14px 16px; color: var(--gold-2); font-size: 1rem; word-break: break-all; }
.code-box { background: #0d0d10; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 18px; overflow-x: auto; }
.code-box pre { color: #cdc9c0; font-size: 0.82rem; line-height: 1.5; white-space: pre-wrap; word-break: break-word; }
.faq-row { display: grid; gap: 8px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px dashed rgba(255,255,255,0.08); }
