/* ═══════════════════════════════════════════════════════════════
   INFUMIA LEAD PANEL — Design System
   Dark-first, orange-accent, grid-textured, glow-driven.
   Tüm tokenlar CSS custom property olarak tanımlı → kolay tema.
   ═══════════════════════════════════════════════════════════════ */

/* ── Fontlar ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Renkler — Dark (default) */
  --bg:            #0A0B0F;
  --bg-soft:       #0F1115;
  --surface:       #13161C;
  --surface-2:     #181C24;
  --surface-hover: #1E232C;

  --orange:        #FF6B1A;
  --orange-2:      #E8431A;
  --orange-soft:   #FF8A47;
  --orange-glow:   rgba(255, 107, 26, 0.18);
  --orange-glow-strong: rgba(255, 107, 26, 0.32);

  --text:          #F0F2F5;
  --text-soft:     #A8AEB8;
  --text-muted:    #6B7280;

  --border:        rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  --shadow:        0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.35);
  --shadow-hover:  0 1px 0 rgba(255,255,255,0.06) inset, 0 18px 40px rgba(0,0,0,0.55);

  --grad-orange:   linear-gradient(135deg, #FF6B1A, #E8431A);

  /* Tipografi */
  --font-display:  'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  /* Layout */
  --container: 1200px;
  --nav-h: 68px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t-fast: .16s;
  --t: .26s;
}

/* ── Light theme ──────────────────────────────────────────────────── */
:root[data-theme="light"] {
  --bg:            #F7F8FA;
  --bg-soft:       #FFFFFF;
  --surface:       #FFFFFF;
  --surface-2:     #F1F3F6;
  --surface-hover: #ECEFF3;

  --text:          #0F1115;
  --text-soft:     #4B5563;
  --text-muted:    #8A909C;

  --border:        rgba(15, 17, 21, 0.08);
  --border-strong: rgba(15, 17, 21, 0.16);

  --orange-glow:   rgba(255, 107, 26, 0.14);
  --shadow:        0 1px 0 rgba(255,255,255,0.5) inset, 0 8px 24px rgba(15,17,21,0.08);
  --shadow-hover:  0 1px 0 rgba(255,255,255,0.6) inset, 0 18px 40px rgba(15,17,21,0.14);
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--orange); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); background-clip: padding-box; border: 2px solid transparent; }

/* ── Container ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 640px) { .container { padding-inline: 18px; } }

/* ── Tipografi ────────────────────────────────────────────────────── */
.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p  { color: var(--text-soft); }

.grad-text {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--orange);
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  background: var(--orange-glow);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px var(--orange);
}

.lead-text { font-size: 1.1rem; color: var(--text-soft); max-width: 60ch; }

/* ── Arka plan dekorasyonları ─────────────────────────────────────── */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: .9;
}
.glow {
  position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  filter: blur(70px); opacity: .8;
}
.glow-orange { background: radial-gradient(circle, var(--orange-glow-strong), transparent 65%); }

/* ── Bölümler ─────────────────────────────────────────────────────── */
.section { position: relative; padding-block: clamp(64px, 9vw, 120px); }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head p { margin-top: 16px; font-size: 1.08rem; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), backdrop-filter 0s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand .logo { width: 34px; height: 34px; }
.brand .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 99px; font-size: .92rem; font-weight: 500;
  color: var(--text-soft); transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 99px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--text-soft); transition: all var(--t-fast);
}
.theme-toggle:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .sun { display: none; }
:root[data-theme="light"] .theme-toggle .sun { display: block; }
:root[data-theme="light"] .theme-toggle .moon { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  --btn-bg: var(--surface);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 12px 20px; border-radius: var(--r-md);
  border: 1px solid var(--border-strong); background: var(--btn-bg);
  color: var(--text);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t-fast), border-color var(--t-fast), opacity var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

.btn-primary {
  --btn-bg: transparent;
  background-image: var(--grad-orange);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-primary:hover { box-shadow: 0 14px 36px var(--orange-glow-strong); }

.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--surface); border-color: var(--orange); color: var(--orange); }

.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   BADGES / PILLS
   ═══════════════════════════════════════════════════════════════ */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 99px; font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--text-soft);
}
.pill-orange { color: var(--orange); border-color: color-mix(in srgb, var(--orange) 40%, transparent); background: var(--orange-glow); }
.pill-green  { color: #34d399; border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.1); }
.pill-red    { color: #f87171; border-color: rgba(248,113,113,.35); background: rgba(248,113,113,.1); }
.pill-blue   { color: #60a5fa; border-color: rgba(96,165,250,.35); background: rgba(96,165,250,.1); }
.pill-yellow { color: #fbbf24; border-color: rgba(251,191,36,.35); background: rgba(251,191,36,.1); }
.pill-purple { color: #c084fc; border-color: rgba(192,132,252,.35); background: rgba(192,132,252,.1); }

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--border-strong); }

/* Spotlight hover efekti (data-spotlight attribute ile) */
[data-spotlight]::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), var(--orange-glow), transparent 60%);
  opacity: 0; transition: opacity var(--t);
  pointer-events: none;
}
[data-spotlight]:hover::before { opacity: 1; }

/* Numbered card (01, 02, 03) */
.num-card { counter-increment: step; }
.num-card .num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
  background: var(--grad-orange); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.num-card h3 { margin: 12px 0 8px; }
.num-card p { font-size: .96rem; }

/* ═══════════════════════════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════════════════════════ */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stat {
  text-align: center; padding: 8px 12px;
}
.stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1;
  background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .label { margin-top: 8px; font-size: .9rem; color: var(--text-soft); }

/* ═══════════════════════════════════════════════════════════════
   PROCESS FLOW
   ═══════════════════════════════════════════════════════════════ */
.process { counter-reset: step; position: relative; }
.process::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(var(--orange), transparent);
  transform: translateX(-50%);
  opacity: .35;
}
@media (max-width: 980px) { .process::before { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.accordion-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--surface); overflow: hidden; margin-bottom: 12px;
  transition: border-color var(--t-fast);
}
.accordion-item[open] { border-color: var(--border-strong); }
.accordion-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; font-family: var(--font-display); font-weight: 600;
  list-style: none;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .icon {
  flex-shrink: 0; width: 22px; height: 22px; display: grid; place-items: center;
  border: 1px solid var(--border-strong); border-radius: 50%; color: var(--orange);
  transition: transform var(--t) var(--ease), background var(--t-fast);
}
.accordion-item[open] summary .icon { transform: rotate(45deg); background: var(--orange-glow); }
.accordion-item .body { padding: 0 22px 20px; color: var(--text-soft); }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════ */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FF6B1A, #E8431A);
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center; color: #fff;
  box-shadow: 0 30px 80px rgba(255, 107, 26, 0.3);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent 75%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin: 14px auto 0; max-width: 56ch; }
.cta-band .btn-primary { background: #0A0B0F; background-image: none; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.cta-band .btn-primary:hover { background: #1a1c22; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(0,0,0,.15); }
.cta-band .btn-ghost:hover { background: rgba(0,0,0,.28); border-color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   FORM
   ═══════════════════════════════════════════════════════════════ */
.field { margin-bottom: 14px; }
.field label {
  display: block; margin-bottom: 7px; font-size: .85rem; font-weight: 600;
  color: var(--text-soft); font-family: var(--font-display);
}
.input, .select, .textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  font-size: .95rem;
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.textarea { resize: vertical; min-height: 90px; }
.select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A8AEB8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}

/* Toggle switch */
.switch { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.switch input { position: absolute; opacity: 0; }
.switch .track {
  width: 38px; height: 22px; border-radius: 99px; background: var(--surface-2);
  border: 1px solid var(--border-strong); position: relative; transition: background var(--t-fast);
}
.switch .track::after {
  content: ''; position: absolute; left: 2px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--text-soft);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast);
}
.switch input:checked + .track { background: var(--orange-glow); border-color: var(--orange); }
.switch input:checked + .track::after { transform: translate(16px, -50%); background: var(--orange); }

/* ═══════════════════════════════════════════════════════════════
   FLOATING UI (WhatsApp + scroll-top)
   ═══════════════════════════════════════════════════════════════ */
.fab-stack {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
  border: 1px solid var(--border-strong);
}
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab svg { width: 24px; height: 24px; }
.fab-wa { background: #25D366; border-color: transparent; }
.fab-top { background: var(--surface); color: var(--orange); opacity: 0; pointer-events: none; transform: translateY(10px); }
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].delay-1 { transition-delay: .1s; }
[data-reveal].delay-2 { transition-delay: .2s; }
[data-reveal].delay-3 { transition-delay: .3s; }
[data-reveal].delay-4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   LOGO INTRO (giriş animasyonu)
   ═══════════════════════════════════════════════════════════════ */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .6s var(--ease), visibility .6s;
}
.intro-overlay.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-logo {
  position: relative; width: 120px; height: 120px;
  animation: introPop 1s var(--ease) both;
}
.intro-logo svg { width: 100%; height: 100%; filter: drop-shadow(0 0 30px var(--orange-glow-strong)); }
.intro-ring {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 2px solid var(--orange); opacity: 0;
  animation: introRing 1.6s var(--ease) .2s both;
}
.intro-word {
  position: absolute; top: calc(50% + 80px); left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--text-soft);
  opacity: 0; animation: introFade 1s var(--ease) .6s both;
}
.intro-word .grad-text { letter-spacing: .3em; }
@keyframes introPop {
  0%   { transform: scale(.4) rotate(-12deg); opacity: 0; }
  60%  { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes introRing {
  0% { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes introFade {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .intro-logo, .intro-ring, .intro-word { animation: none; }
  .intro-overlay { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════ */
.toast-wrap {
  position: fixed; top: 84px; right: 22px; z-index: 200;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-hover); color: var(--text); font-size: .9rem;
  min-width: 240px; max-width: 360px;
  animation: toastIn .3s var(--ease);
}
.toast.ok    { border-left: 3px solid #34d399; }
.toast.err   { border-left: 3px solid #f87171; }
.toast.info  { border-left: 3px solid var(--orange); }
.toast.hide  { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn  { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to   { opacity: 0; transform: translateX(20px); } }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border); background: var(--bg-soft);
  padding-block: 56px 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: .92rem; margin-bottom: 14px; color: var(--text); }
.footer a { display: block; color: var(--text-soft); font-size: .92rem; padding: 4px 0; transition: color var(--t-fast); }
.footer a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .86rem; color: var(--text-muted);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--text-soft); transition: all var(--t-fast);
}
.socials a:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
