/* ==========================================================================
   Nisa Oto Kurtarma — Ankara 7/24 Oto Kurtarma & Yol Yardım
   Tasarım sistemi: koyu zemin + acil durum kehribar (amber) vurgusu
   ========================================================================== */

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

:root {
  --black:      #08090b;
  --dark:       #0e1013;
  --card:       #14171c;
  --card-2:     #191d23;
  --border:     rgba(255,255,255,0.08);
  --white:      #f6f7f8;
  --silver:     #c5cad2;
  --muted:      #868e9b;
  --amber:      #FF8A00;
  --amber-lite: #FFB43D;
  --amber-deep: #E06A00;
  --wa:         #25D366;
  --ok:         #4ade80;
  --no:         #f87171;
  --radius:     12px;
  --radius-lg:  20px;
  --font-display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-h: 40px;
  --shadow-card: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,138,0,0.05);
}

@media (max-width: 640px) { :root { --topbar-h: 36px; } }

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

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: rgba(255,138,0,0.25); color: #fff; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,138,0,0.25); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,138,0,0.5); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--amber); color: #111; padding: 10px 18px; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ================================ TOP EMERGENCY BAR ====================== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 220;
  height: var(--topbar-h);
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
  color: #1b1000;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.2px;
  padding: 0 14px; text-align: center;
}
.topbar a { color: #1b1000; text-decoration: underline; text-underline-offset: 2px; }
.topbar .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #1b1000;
  margin-right: 9px; flex-shrink: 0; animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }
@media (max-width: 640px) { .topbar { font-size: 11.5px; } }

/* ================================ NAVBAR ================================= */
.navbar {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 200;
  padding: 14px 0; transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,9,11,0.93);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.navbar:has(.nav-hamburger.active) { background: rgba(8,9,11,0.98); backdrop-filter: blur(16px); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--amber-lite), var(--amber-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(255,138,0,0.28);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text b { font-size: 16px; font-weight: 800; letter-spacing: -0.2px; color: var(--white); }
.nav-logo-text span { font-size: 10px; color: var(--amber-lite); font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--silver); transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }

.nav-drop > a::after { content: '▾'; margin-left: 5px; font-size: 10px; opacity: .7; }
.nav-drop-menu {
  position: absolute; top: 100%; left: -14px; padding-top: 14px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu ul {
  list-style: none; background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 10px; min-width: 240px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6); display: grid; gap: 2px;
}
.nav-drop-menu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 13.5px; color: var(--silver); }
.nav-drop-menu a:hover { background: rgba(255,138,0,.10); color: var(--amber-lite); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #1b1000 !important; font-weight: 800 !important;
  padding: 11px 20px; border-radius: 9px; font-size: 14px !important;
  transition: background .2s, transform .15s var(--spring), box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--amber-lite); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(255,138,0,.3); }
.nav-cta:active { transform: scale(.96); }

.nav-hamburger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; padding: 9px; background: none; border: 0; border-radius: 8px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed; top: calc(var(--topbar-h) + 68px); left: 0;
  width: 100%; max-height: calc(100vh - var(--topbar-h) - 68px); overflow-y: auto;
  background: #08090b; border-top: 1px solid rgba(255,138,0,.25); z-index: 199;
  padding: 8px 24px 32px; flex-direction: column; box-shadow: 0 14px 44px rgba(0,0,0,.65);
}
#mobile-menu.open { display: flex; }
#mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid #1c2026; color: #fff; font-size: 16.5px; font-weight: 500; }
#mobile-menu a:hover { color: var(--amber-lite); }
#mobile-menu .mm-head { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 18px 0 4px; border: 0; font-weight: 700; }
#mobile-menu .mm-cta { border-bottom: none; color: var(--amber); font-weight: 800; margin-top: 12px; }

/* ================================ BUTTONS ================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  font-family: var(--font-sans); letter-spacing: .2px;
  transition: background .2s, border-color .2s, transform .15s var(--spring), box-shadow .2s;
}
.btn-primary { background: var(--amber); color: #1b1000; }
.btn-primary:hover { background: var(--amber-lite); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(255,138,0,.34); }
.btn-primary:active { transform: scale(.975); transition-duration: 80ms; }
.btn-wa { background: var(--wa); color: #06210f; }
.btn-wa:hover { background: #2ee474; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(37,211,102,.3); }
.btn-wa:active { transform: scale(.975); transition-duration: 80ms; }
.btn-ghost { background: rgba(255,255,255,.05); border-color: var(--border); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-lg { font-size: 16.5px; padding: 17px 30px; }
.btn-block { width: 100%; }

/* ================================ HERO =================================== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; background: #06070a; isolation: isolate;
  padding: calc(var(--topbar-h) + 130px) 0 90px;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background-image: image-set(url('/assets/img/hero-oto-kurtarma-ankara.webp') type('image/webp'),
                              url('/assets/img/hero-oto-kurtarma-ankara.jpg') type('image/jpeg'));
  background-image: -webkit-image-set(url('/assets/img/hero-oto-kurtarma-ankara.webp') 1x);
  background-size: cover; background-position: 65% center;
  transform: scale(1.06); animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.13) translate3d(-1.6%,-1%,0); }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(6,7,10,.96) 0%, rgba(6,7,10,.86) 32%, rgba(6,7,10,.45) 58%, rgba(6,7,10,.12) 80%, rgba(6,7,10,.45) 100%),
    linear-gradient(to top, rgba(6,7,10,.92) 0%, rgba(6,7,10,0) 45%);
}
.hero-inner { max-width: 720px; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber-lite); margin-bottom: 22px;
  background: rgba(255,138,0,.10); border: 1px solid rgba(255,138,0,.24);
  padding: 7px 14px; border-radius: 99px;
}
.hero-eyebrow .live { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); animation: pulseDot 1.6s infinite; }
.hero h1 {
  font-size: clamp(38px, 6vw, 76px); font-weight: 800; line-height: 1.02;
  letter-spacing: -1.8px; margin-bottom: 20px; color: #fff;
}
.hero h1 em { font-style: normal; color: var(--amber-lite); }
.hero-sub { font-size: clamp(15.5px, 1.3vw, 18.5px); font-weight: 400; color: rgba(255,255,255,.78); margin-bottom: 30px; max-width: 34em; }
.hero-cta-row { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.hero-phone {
  display: inline-flex; flex-direction: column; margin-top: 26px;
  font-size: 13px; color: rgba(255,255,255,.6);
}
.hero-phone b { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1.15; }
.hero-phone b:hover { color: var(--amber-lite); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); }
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.68); }
.hero-trust-item svg { color: var(--amber); flex-shrink: 0; }
.hero-trust-item strong { color: #fff; font-weight: 700; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: calc(var(--topbar-h) + 96px) 0 64px; }
  .hero-media {
    background-image: image-set(url('/assets/img/hero-oto-kurtarma-ankara-mobil.webp') type('image/webp'),
                                url('/assets/img/hero-oto-kurtarma-ankara-mobil.jpg') type('image/jpeg'));
    background-position: center center;
  }
  .hero::before { background: linear-gradient(180deg, rgba(6,7,10,.80) 0%, rgba(6,7,10,.58) 40%, rgba(6,7,10,.96) 100%); }
  .hero h1 { font-size: clamp(31px, 8.4vw, 50px); letter-spacing: -1px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-row > * { width: 100%; }
}

/* ================================ SECTION BASE =========================== */
section { padding: 92px 0; }
.section-tag { display: inline-block; font-size: 11.5px; font-weight: 800; color: var(--amber); letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 16px; }
.section-title em { font-style: normal; color: var(--amber-lite); }
.section-sub { font-size: 16.5px; color: var(--muted); max-width: 620px; line-height: 1.72; }
.section-header { margin-bottom: 54px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ================================ STATS ================================== */
.stats { background: var(--dark); padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 44px 24px; border-right: 1px solid rgba(255,255,255,.06); }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; color: var(--amber); letter-spacing: -1.6px; line-height: 1; font-variant-numeric: tabular-nums; margin-bottom: 10px; }
.stat-num span { font-size: .5em; vertical-align: .35em; color: var(--amber-lite); }
.stat-label { font-size: 12.5px; color: var(--muted); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 30px 14px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.06); }
}

/* ================================ SERVICE CARDS ========================== */
.services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .25s, transform .2s var(--spring), box-shadow .25s;
}
.svc-card:hover { border-color: rgba(255,138,0,.32); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent); opacity: 0; transition: opacity .3s;
}
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 50px; height: 50px; border-radius: 13px; margin-bottom: 18px;
  background: rgba(255,138,0,.10); border: 1px solid rgba(255,138,0,.22);
  display: flex; align-items: center; justify-content: center; color: var(--amber-lite);
}
.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.3px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.68; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--amber); margin-top: 18px; transition: gap .2s; }
.svc-card:hover .svc-link { gap: 11px; }

/* ================================ WHY / COMPARE ========================== */
.why { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 38px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; transition: transform .2s var(--spring); }
.why-feature:hover { transform: translateX(5px); }
.why-ficon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; margin-top: 2px;
  background: rgba(255,138,0,.08); border: 1px solid rgba(255,138,0,.18);
  display: flex; align-items: center; justify-content: center; color: var(--amber-lite);
}
.why-feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.why-feature p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.panel {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; position: relative; overflow: hidden;
  box-shadow: 0 34px 74px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.04);
}
.panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--amber), var(--amber-lite), transparent); }
.panel h3 { font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.cmp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; align-items: center; gap: 8px; }
.cmp-row:last-child { border-bottom: none; }
.cmp-row.head { font-size: 10.5px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.cmp-row .c-us { color: var(--ok); font-weight: 700; text-align: center; }
.cmp-row .c-them { color: var(--muted); text-align: center; }
.cmp-row .c-lbl { color: var(--silver); }

/* ================================ PROCESS ================================ */
.process { background: var(--dark); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; margin-top: 12px; }
.steps::before {
  content: ''; position: absolute; top: 31px; left: calc(12.5% + 32px); right: calc(12.5% + 32px); height: 1px;
  background: linear-gradient(90deg, rgba(255,138,0,.75), rgba(255,138,0,.18));
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.step-n {
  width: 62px; height: 62px; border-radius: 50%; background: var(--card); border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center; font-size: 21px; font-weight: 800;
  color: var(--amber); margin-bottom: 18px; position: relative; z-index: 1;
  box-shadow: 0 0 0 5px rgba(255,138,0,.07), 0 8px 24px rgba(0,0,0,.35);
  transition: transform .22s var(--spring), box-shadow .22s;
}
.step:hover .step-n { transform: scale(1.09) rotate(-4deg); box-shadow: 0 0 0 8px rgba(255,138,0,.12), 0 16px 40px rgba(0,0,0,.4); }
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 32px; } .steps::before { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ================================ AREAS ================================== */
.areas { background: var(--black); }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; font-size: 14.5px; font-weight: 600; color: var(--silver);
  transition: border-color .2s, background .2s, transform .15s var(--spring), color .2s;
}
.area-chip:hover { border-color: rgba(255,138,0,.3); background: var(--card-2); color: #fff; transform: translateY(-2px); }
.area-chip span { color: var(--amber); font-size: 15px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .area-grid { grid-template-columns: 1fr; } }

/* ================================ TESTIMONIALS =========================== */
.tst { background: var(--dark); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tst-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; position: relative; transition: border-color .25s, transform .2s var(--spring), box-shadow .25s;
}
.tst-card:hover { border-color: rgba(255,138,0,.22); transform: translateY(-4px); box-shadow: 0 20px 54px rgba(0,0,0,.42); }
.stars { display: flex; gap: 3px; margin-bottom: 13px; color: var(--amber); font-size: 14px; }
.tst-text { font-size: 14.5px; color: var(--silver); line-height: 1.72; margin-bottom: 18px; }
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--amber-lite), var(--amber-deep));
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #1b1000;
}
.tst-author b { display: block; font-size: 14px; font-weight: 700; }
.tst-author small { display: block; font-size: 12px; color: var(--muted); }

/* ================================ FAQ ==================================== */
.faq { background: var(--black); }
.faq-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: none; color: var(--white); font-size: 15px; font-weight: 600; cursor: pointer;
  text-align: left; font-family: var(--font-sans); transition: color .15s;
}
.faq-q:hover { color: var(--amber-lite); }
.faq-ic {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,138,0,.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--amber);
  transition: transform .3s;
}
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--smooth); }
.faq-item.open .faq-a { max-height: 620px; }
.faq-a p { padding: 16px 22px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); }

/* ================================ CTA PANEL ============================== */
.cta-panel { position: sticky; top: 110px; }
.cta-panel h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.cta-panel > p { font-size: 14.5px; color: var(--muted); line-height: 1.72; margin-bottom: 22px; }
.cta-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
.cta-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--silver); }
.cta-item .ic {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px; background: rgba(255,138,0,.09);
  display: flex; align-items: center; justify-content: center; color: var(--amber-lite);
}
.cta-item a { color: var(--amber); font-weight: 700; }
.cta-item a:hover { color: var(--amber-lite); }
.cta-hours { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 13px; color: var(--silver); }
.cta-hours b { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 6px; }

/* ================================ BIG CTA BAND =========================== */
.band {
  background: linear-gradient(120deg, #1a0e00 0%, #12141a 55%, #08090b 100%);
  border-top: 1px solid rgba(255,138,0,.18); border-bottom: 1px solid rgba(255,138,0,.18);
  text-align: center;
}
.band h2 { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.band p { font-size: 16.5px; color: var(--silver); max-width: 620px; margin: 0 auto 28px; }
.band .btn-row { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ================================ ARTICLE / PROSE ======================== */
.page-head { padding: calc(var(--topbar-h) + 130px) 0 52px; background: linear-gradient(180deg, #10131a 0%, var(--black) 100%); border-bottom: 1px solid var(--border); }
.page-head h1 { font-size: clamp(30px, 4.6vw, 54px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.06; margin-bottom: 16px; }
.page-head .lead { font-size: 17px; color: var(--silver); max-width: 760px; line-height: 1.75; }
.page-head .btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--amber-lite); }
.crumbs span { opacity: .5; }

.prose { font-size: 16px; color: var(--silver); line-height: 1.85; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: #fff; margin: 44px 0 14px; letter-spacing: -.5px; }
.prose h3 { font-size: 19px; font-weight: 700; color: #fff; margin: 30px 0 10px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px 20px; display: flex; flex-direction: column; gap: 9px; }
.prose li { line-height: 1.75; }
.prose a { color: var(--amber-lite); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--amber); }
.prose strong { color: #fff; }
.prose img { border-radius: var(--radius-lg); border: 1px solid var(--border); margin: 26px 0; }

.checklist { list-style: none; margin: 0 0 26px 0 !important; }
.checklist li { position: relative; padding-left: 30px; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,138,0,.14); border: 1px solid rgba(255,138,0,.4);
}
.checklist li::after { content: ''; position: absolute; left: 5px; top: 14px; width: 5px; height: 8px; border: solid var(--amber); border-width: 0 2px 2px 0; transform: rotate(42deg); }

.callout {
  background: linear-gradient(120deg, rgba(255,138,0,.10), rgba(255,138,0,.02));
  border: 1px solid rgba(255,138,0,.24); border-left: 3px solid var(--amber);
  border-radius: 12px; padding: 20px 22px; margin: 26px 0;
}
.callout p { margin: 0; font-size: 15px; color: var(--silver); }
.callout b { color: #fff; }

.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.toc { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin: 0 0 34px; }
.toc b { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--amber); margin-bottom: 12px; }
.toc ol { margin: 0 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
.toc a { color: var(--silver); font-size: 14.5px; text-decoration: none; }
.toc a:hover { color: var(--amber-lite); }

/* ================================ POST / LINK CARDS ====================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.link-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; transition: border-color .25s, transform .2s var(--spring), box-shadow .25s;
}
.link-card:hover { border-color: rgba(255,138,0,.3); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.link-card small { font-size: 12px; color: var(--amber); font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 10px; }
.link-card h3 { font-size: 18.5px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; letter-spacing: -.3px; }
.link-card p { font-size: 14px; color: var(--muted); line-height: 1.68; flex: 1; }
.link-card .more { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--amber); }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }

/* ================================ CONTACT / FORM ========================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--silver); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 9px;
  padding: 13px 15px; color: var(--white); font-size: 15px; font-family: var(--font-sans);
  transition: border-color .2s; outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(255,138,0,.55); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 300px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } .form-row { grid-template-columns: 1fr; } }

/* ================================ FOOTER ================================= */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; margin-bottom: 44px; }
.footer-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.72; max-width: 320px; margin: 16px 0 18px; }
.footer-phone { display: inline-flex; flex-direction: column; gap: 2px; }
.footer-phone small { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.footer-phone b { font-size: 22px; font-weight: 800; color: var(--amber-lite); letter-spacing: -.4px; }
.footer-col h4 { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.3px; margin-bottom: 16px; color: #fff; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--amber-lite); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 26px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-size: 12.5px; color: var(--muted); }
.footer-bottom a:hover { color: var(--amber-lite); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ================================ FLOAT WIDGET =========================== */
.float-widget {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 210;
  background: rgba(18,20,24,.74); border: 1px solid rgba(255,255,255,.10); border-radius: 16px;
  overflow: hidden; backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: flex; flex-direction: column; min-width: 152px;
  box-shadow: 0 18px 50px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.float-widget-btn {
  display: flex; flex-direction: row; align-items: center; gap: 12px; padding: 13px 16px;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.07); white-space: nowrap;
  transition: background .15s ease, transform .1s var(--spring);
}
.float-widget-btn:last-child { border-bottom: none; }
.float-widget-btn:hover { background: rgba(255,255,255,.05); }
.float-widget-btn:active { transform: scale(.93); transition-duration: 60ms; }
.float-widget-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,138,0,.10); border: 1px solid rgba(255,138,0,.24);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .2s, background .2s, border-color .2s;
}
.float-widget-btn:hover .float-widget-icon { background: rgba(255,138,0,.2); box-shadow: 0 0 16px rgba(255,138,0,.32); }
.float-widget-btn.is-wa .float-widget-icon { background: rgba(37,211,102,.10); border-color: rgba(37,211,102,.30); }
.float-widget-btn.is-wa:hover .float-widget-icon { background: rgba(37,211,102,.2); box-shadow: 0 0 16px rgba(37,211,102,.4); }
.float-widget-label { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: .2px; }

@media (max-width: 768px) {
  .float-widget {
    right: 0; left: 0; bottom: 0; top: auto; transform: none; border-radius: 0;
    border-left: none; border-right: none; border-bottom: none; border-top: 1px solid var(--amber);
    flex-direction: row; min-width: unset; width: 100%;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .float-widget-btn {
    flex: 1; flex-direction: column; gap: 3px; padding: 9px 6px;
    justify-content: center; align-items: center; border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.07); text-align: center;
  }
  .float-widget-btn:last-child { border-right: none; }
  .float-widget-icon { width: 30px; height: 30px; }
  .float-widget-icon svg { width: 17px; height: 17px; }
  .float-widget-label { font-size: 10px; letter-spacing: .4px; }
  footer { padding-bottom: 84px; }
}

/* ================================ RESPONSIVE ============================= */
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 42px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-panel { position: static; }
  .tst-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 62px 0; }
  .page-head { padding: calc(var(--topbar-h) + 100px) 0 40px; }
  .panel { padding: 26px 22px; }
}

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