/* =========================================================
   Lynex — Premium minimal stylesheet
   Inspired by Apple / Tesla / high-tech design language
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --ink-2: #1d1d1f;
  --muted: #6e6e73;
  --muted-2: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --line-2: rgba(0, 0, 0, 0.14);
  --accent: #f8b414;
  --accent-2: #ffd84d;
  --success: #2bb673;
  --radius: 18px;
  --radius-lg: 26px;
  /* Unified radius scale (corp pages) */
  --r-xs: 6px;    /* küçük ikon kutuları, mini chip */
  --r-sm: 10px;   /* orta kartlar, button, input */
  --r-md: 14px;   /* büyük içerik kartları (works, capability) */
  --r-lg: 20px;   /* panel/cta düzeyi */
  --r-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #000; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.link-quiet { color: var(--ink-2); font-size: 14px; }
.link-quiet:hover { color: var(--ink); }

/* ---------- Topbar ---------- */
.topbar {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  position: relative;
  z-index: 101;
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.005em;
}
.topbar-item svg { opacity: .55; }
.topbar-item strong {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-left: 2px;
}
.topbar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.10);
}

/* status pill */
.topbar-status { color: rgba(255,255,255,0.85); font-weight: 500; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  display: inline-block;
  margin-right: 2px;
}
.status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #22c55e;
  opacity: .55;
  animation: status-pulse 1.8s ease-out infinite;
}
@keyframes status-pulse {
  0%   { transform: scale(0.6); opacity: .55; }
  80%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Currency dropdown — compact, dark topbar */
.currency-dd {
  position: relative;
}
.currency-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 7px;
  color: rgba(255,255,255,0.92);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.currency-dd-trigger:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}
.currency-dd.is-open .currency-dd-trigger {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
}
.currency-dd-sym {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  font-variant-numeric: tabular-nums;
}
.currency-dd-code { color: #fff; }
.currency-dd-caret {
  color: rgba(255,255,255,0.55);
  transition: transform .2s ease;
  margin-left: 1px;
}
.currency-dd.is-open .currency-dd-caret { transform: rotate(180deg); }

.currency-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.30);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 50;
}
.currency-dd.is-open .currency-dd-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.currency-dd-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 7px;
  cursor: pointer;
  transition: background .12s ease;
}
.currency-dd-menu li:hover { background: var(--bg-alt); }
.currency-dd-menu li[aria-selected="true"] { background: rgba(248,180,20,0.08); color: #f8b414; }
.currency-dd-menu li .currency-dd-sym {
  width: 18px; height: 18px;
  background: var(--bg-alt);
  border-radius: 5px;
  font-size: 11px;
  color: var(--ink);
}
.currency-dd-menu li[aria-selected="true"] .currency-dd-sym {
  background: rgba(248,180,20,0.12);
  color: #f8b414;
}
.currency-dd-menu li em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-left: auto;
}

/* Live FX rate ticker */
.rate-ticker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  cursor: default;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.rate-ticker:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}
.rate-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  flex-shrink: 0;
}
.rate-pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #22c55e;
  opacity: .5;
  animation: status-pulse 1.8s ease-out infinite;
}
.rate-ticker.is-loading .rate-pulse { background: #f59e0b; }
.rate-ticker.is-loading .rate-pulse::after { background: #f59e0b; }
.rate-ticker.is-error .rate-pulse { background: #ef4444; }
.rate-ticker.is-error .rate-pulse::after { background: #ef4444; }

.rate-label {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.rate-value {
  color: #fff;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--ink);
}
/* ---------- Nav links + minimal mega menu ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a,
.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links > a:hover,
.nav-item > .nav-link:hover,
.nav-item.is-open > .nav-link {
  color: var(--ink);
  background: rgba(10,10,10,0.04);
}
.nav-chev {
  color: var(--muted);
  transition: transform .2s var(--ease);
}
.nav-item.is-open .nav-chev { transform: rotate(180deg); }

.nav-item.has-mega { position: static; }
.nav { position: sticky; } /* keep, just ensure nav is the containing block */
.nav-inner { position: relative; }

/* ============================================================
   MEGA SCRIM — mega menü açıkken sayfanın arkasını
   karartıp blur'lar. Nav'ın HEMEN ALTINDAN başlar; topbar ve
   nav'a hiç değmez. Top değeri JS tarafından canlı set edilir.
   ============================================================ */
.mega-scrim {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--scrim-top, 100px);
  bottom: 0;
  background: rgba(8, 10, 16, 0.42);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s var(--ease), visibility 0s linear .28s;
  z-index: 70; /* topbar (101) ve nav (100) altında, sayfa içeriği üstünde */
  isolation: isolate;
}
/* Açılırken görünür */
body:has(.nav-item.has-mega.is-open) .mega-scrim,
.mega-scrim.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s var(--ease), visibility 0s linear 0s;
}
/* page-dark için biraz daha yoğun karartı, daha az saturasyon */
body.page-dark .mega-scrim {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

/* ============================================================
   MEGA PANEL — Command-center stili
   Pozisyon JS ile dinamik (--mega-x var'ı tetikleyicinin
   merkezine göre hesaplanıp viewport'a clamp edilir).
   Üst ok (::before) aktif tetikleyiciyi gösterir.
   ============================================================ */
.mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  right: auto;
  width: min(1280px, calc(100vw - 48px));
  transform: translate(-50%, -8px) scale(0.992);
  transform-origin: top center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow:
    0 24px 60px -16px rgba(10,10,10,0.18),
    0 6px 18px -8px rgba(10,10,10,0.10),
    0 0 0 1px rgba(10,10,10,0.02);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: visible;
  transition: opacity .22s var(--ease), transform .26s var(--ease), visibility 0s linear .26s;
  z-index: 90;
}
.nav-item.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition: opacity .22s var(--ease), transform .26s var(--ease), visibility 0s;
}

/* invisible hover bridge (panel ↔ tetikleyici) */
.mega-panel::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}

/* Üst ok — tetikleyicinin altına işaret eder
   --mega-arrow-x: tetikleyici merkezi - panel sol kenarı (px) */
.mega-arrow-tip {
  position: absolute;
  top: -7px;
  left: var(--mega-arrow-x, 50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
  border-top-left-radius: 3px;
  pointer-events: none;
  transition: left .28s var(--ease);
}

/* Panel iç yapı — overflow visible olduğu için iç scroll/clip için sarmalayıcı */
.mega-clip {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

/* üst aksent çizgi — açılırken çiziliyor gibi */
.mega-clip::after {
  content: "";
  position: absolute;
  top: 0; left: 24px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .35s var(--ease) .08s;
  z-index: 2;
}
.nav-item.is-open .mega-clip::after { width: 48px; }

/* page-dark variant tonu mega aksent çizgisine de yansır */
body.page-dark .mega-clip::after { background: var(--nav-accent, var(--accent)); }

.mega-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  padding: 24px 26px 20px;
}
.mega-col-main { padding-right: 24px; border-right: 1px solid var(--border); }
.mega-col-aside { padding-left: 24px; display: flex; align-items: stretch; }

.mega-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 4px 12px;
}
.mega-eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.18);
}

/* Kart grid (2x2) */
.mega-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px 13px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  position: relative;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.mega-card:hover {
  background: rgba(10,10,10,0.04);
}
.mega-card-ic {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--bg-alt, #f3f3ee);
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.mega-card:hover .mega-card-ic {
  background: var(--ink);
  color: #fff;
}
.mega-card-ic svg { width: 16px; height: 16px; }
.mega-card-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mega-card-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-arrow {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  transform: translateX(0);
  opacity: 0;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.mega-card:hover .mega-arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--accent);
}
.mega-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 400;
}
.mega-card-tag {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(248,180,20,0.14);
  color: #b07a04;
  text-transform: uppercase;
}

/* Sağdaki vurgu/promo kartı */
.mega-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(248,180,20,0.18), transparent 60%),
    linear-gradient(180deg, #0f1115 0%, #1a1d24 100%);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease);
}
.mega-feature:hover { transform: translateY(-2px); }
.mega-feature::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(248,180,20,0.35), transparent 70%);
  filter: blur(8px);
  opacity: .8;
  pointer-events: none;
}
.mega-feature-tag {
  align-self: flex-start;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #0f1115;
  text-transform: uppercase;
  z-index: 1;
}
.mega-feature-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
  z-index: 1;
  margin-top: 8px;
}
.mega-feature-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  z-index: 1;
}
.mega-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  z-index: 1;
  margin-top: auto;
}
.mega-feature-cta svg { transition: transform .25s var(--ease); }
.mega-feature:hover .mega-feature-cta svg { transform: translateX(4px); }

/* Alt şerit — quick links */
.mega-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--bg-alt, #f7f7f3);
  border-top: 1px solid var(--border);
}
.mega-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-decoration: none;
  border-radius: 7px;
  transition: color .15s, background .15s;
}
.mega-foot a:hover { color: var(--ink); background: rgba(10,10,10,0.04); }
.mega-foot a svg { opacity: .6; }
.mega-foot-sep { flex: 1; }
.mega-foot-kbd {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* Aktif sayfa nav linki — alt accent çizgi */
.nav-link.is-active {
  color: var(--ink) !important;
  position: relative;
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

@media (max-width: 1100px) {
  .mega-panel { width: calc(100vw - 32px); max-width: 760px; }
  .mega-inner { grid-template-columns: 1fr; }
  .mega-col-main { padding-right: 0; padding-bottom: 16px; border-right: 0; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
  .mega-col-aside { padding-left: 0; }
}
@media (max-width: 600px) {
  .mega-cards { grid-template-columns: 1fr; }
}

/* === PAGE-DARK varyantı === */
body.page-dark .mega-panel {
  background: rgba(18, 19, 22, 0.96);
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    0 24px 60px -16px rgba(0,0,0,0.6),
    0 6px 18px -8px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04);
}
body.page-dark .mega-col-main { border-right-color: rgba(255,255,255,0.08); }
body.page-dark .mega-eyebrow { color: rgba(255,255,255,0.5); }
body.page-dark .mega-card { color: #fff; }
body.page-dark .mega-card:hover { background: rgba(255,255,255,0.06); }
body.page-dark .mega-card-ic { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
body.page-dark .mega-card:hover .mega-card-ic { background: var(--accent); color: #0f1115; }
body.page-dark .mega-card-title { color: #fff; }
body.page-dark .mega-card-desc { color: rgba(255,255,255,0.55); }
body.page-dark .mega-arrow { color: rgba(255,255,255,0.4); }
body.page-dark .mega-foot {
  background: var(--foot-tint, rgba(255,255,255,0.03));
  border-top-color: var(--foot-tint-border, rgba(255,255,255,0.06));
}
body.page-dark .mega-foot a { color: rgba(15,17,21,0.78); }
body.page-dark .mega-foot a:hover { color: #0f1115; background: rgba(0,0,0,0.08); }
body.page-dark .mega-foot a svg { opacity: 0.7; }
body.page-dark .mega-foot-kbd { background: rgba(0,0,0,0.10); border-color: rgba(0,0,0,0.15); color: rgba(15,17,21,0.78); }
body.page-dark .mega-arrow-tip {
  background: rgba(18, 19, 22, 0.96);
  border-left-color: rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.08);
}
body.page-dark .nav-link.is-active { color: #fff !important; }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-burger { display: none; background: none; border: 0; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .25s var(--ease); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-actions .link-quiet { display: none; }
  .nav-burger { display: block; }
  .topbar-hide-sm { display: none !important; }
  .topbar-inner { padding: 7px 18px; }
  .topbar-left { gap: 10px; }
  .topbar { font-size: 11px; }
  .rate-ticker { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 60%, #ffffff 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 75%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: orb-float 14s ease-in-out infinite;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(255,216,77,0.55), transparent 70%);
}
.hero-orb-2 {
  width: 480px; height: 480px;
  top: 40px; right: -100px;
  background: radial-gradient(circle, rgba(120,80,255,0.30), transparent 70%);
  animation-delay: -7s;
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,30px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  text-align: left;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-content { max-width: 580px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 20px;
}

/* Hero badge / announcement chip */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 28px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.hero-badge:hover { border-color: #cfcfd2; transform: translateY(-1px); }
.hero-badge-tag {
  background: var(--ink);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-badge svg { color: var(--muted); }

/* Hero title */
.hero-title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 22px;
}
.hero-accent {
  background: linear-gradient(135deg, #f8b414 0%, #ffd84d 50%, #f5a800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-cta .btn { display: inline-flex; align-items: center; gap: 8px; }

/* Trust strip */
.hero-trust-wrap {
  margin-top: 80px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-trust > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  align-items: center;
}
.hero-trust-logos span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #b5b5b8;
  transition: color .25s var(--ease);
  font-family: 'Inter', sans-serif;
}
.hero-trust-logos span:hover { color: var(--ink); }

.hero-meta {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 560px;
}
.hero-meta div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hero-meta strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.hero-meta span {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* =========================================================
   Hero Visual — cPanel hosting mockup
   ========================================================= */
.hero-visual {
  position: relative;
  height: 560px;
}
.hv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 30px 60px -20px rgba(0,0,0,0.18),
    0 18px 36px -18px rgba(255,216,77,0.10);
}

/* cPanel-like dashboard */
.hv-cpanel {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  max-width: 540px;
  transform: rotate(-0.4deg);
  animation: hv-float-1 9s ease-in-out infinite;
}

/* Window chrome */
.hv-window {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: linear-gradient(180deg, #f5f5f7, #ececef);
  border-bottom: 1px solid var(--line);
}
.hv-window-dots {
  display: flex;
  gap: 6px;
}
.hv-window-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #d4d4d8;
}
.hv-window-dots span:nth-child(1) { background: #fc615d; }
.hv-window-dots span:nth-child(2) { background: #fdbe40; }
.hv-window-dots span:nth-child(3) { background: #34c84a; }
.hv-window-url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 11.5px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  max-width: 280px;
  margin: 0 auto;
}
.hv-window-url svg { color: #16a34a; flex-shrink: 0; }

/* Shell: sidebar + main */
.hv-cp-shell {
  display: flex;
  background: #fff;
}
.hv-cp-side {
  width: 144px;
  flex-shrink: 0;
  background: #fafafa;
  border-right: 1px solid var(--line);
  padding: 16px 10px;
}
.hv-cp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.hv-cp-brand-text { min-width: 0; flex: 1; }
.hv-cp-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8b414, #f5a800);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-cp-host {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-family: 'SF Mono', Menlo, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hv-cp-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
  letter-spacing: 0.02em;
}
.hv-cp-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hv-cp-nav span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: default;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.hv-cp-nav span svg {
  width: 14px; height: 14px;
  color: var(--muted);
  flex-shrink: 0;
}
.hv-cp-nav span.active {
  background: #fff;
  color: #f8b414;
  border: 1px solid var(--line);
  font-weight: 600;
}
.hv-cp-nav span.active svg { color: #f8b414; }

/* Main panel */
.hv-cp-main {
  flex: 1;
  min-width: 0;
  padding: 18px 18px 16px;
}

/* Top stats row — clean hierarchy: label → value → bar */
.hv-cp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.hv-cp-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hv-cp-stat-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.hv-cp-stat-num {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.hv-cp-stat-num strong {
  font-size: 20px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hv-cp-stat-num em {
  font-style: normal;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 500;
}
.hv-bar {
  height: 3px;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 2px;
}
.hv-bar i {
  display: block;
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  transition: width .8s var(--ease);
}
.hv-cp-stat:first-child .hv-bar i { background: #f8b414; }

/* Tile grid — 3×2, sade, tek aksan */
.hv-cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.hv-cp-tile {
  background: #fafafa;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.hv-cp-tile:hover {
  background: #fff;
  border-color: var(--line);
}
.hv-cp-tile.is-active {
  background: #fff;
  border-color: rgba(248,180,20,0.25);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.06);
}
.hv-cp-ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.hv-cp-ic svg { width: 16px; height: 16px; }
.hv-cp-tile.is-active .hv-cp-ic {
  color: #f8b414;
  border-color: rgba(248,180,20,0.25);
}
.hv-cp-tile-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.hv-cp-tile.is-active .hv-cp-tile-name { color: var(--ink); font-weight: 600; }

/* Tile is now a button — reset */
button.hv-cp-tile {
  font-family: inherit;
  cursor: pointer;
  text-align: center;
}
button.hv-cp-tile:focus-visible {
  outline: 2px solid rgba(248,180,20,0.4);
  outline-offset: 2px;
}

/* Module info drawer (overlays main panel from right) */
.hv-cp-main { position: relative; }
.hv-drawer {
  position: absolute;
  inset: 0;
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  z-index: 5;
}
.hv-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.hv-drawer-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hv-drawer-ic {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(248,180,20,0.10);
  color: #f8b414;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-drawer-ic svg { width: 18px; height: 18px; }
.hv-drawer-titles { flex: 1; min-width: 0; }
.hv-drawer-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hv-drawer-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.hv-drawer-close {
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.hv-drawer-close:hover {
  background: var(--bg-alt);
  color: var(--ink);
}
.hv-drawer-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 2px 0 0;
}
.hv-drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hv-drawer-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.hv-drawer-list li::before {
  content: '';
  width: 14px; height: 14px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f8b414 0 4px, transparent 5px),
    rgba(248,180,20,0.10);
  flex-shrink: 0;
}
.hv-drawer-foot {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  align-self: flex-start;
}

/* WordPress quick install row */
.hv-cp-app {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px 11px 13px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.hv-cp-app-ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.hv-cp-app-ic.wp { background: #21759b; color: #fff; }
.hv-cp-app-ic.proj { background: #0a0a0a; color: #f8b414; }
.hv-cp-app-info { flex: 1; min-width: 0; }
.hv-cp-app-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hv-cp-app-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.hv-mini-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #16a34a;
  display: inline-block;
}
.hv-cp-app-cta {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  border: 0;
  padding: 7px 16px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.hv-cp-app-cta:hover { background: #000; }

/* Bottom status bar */
.hv-cp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: #fafafa;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.hv-cp-foot-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #16a34a;
}
.hv-cp-foot-meta { font-variant-numeric: tabular-nums; }

/* Online pill (re-use) */
.hv-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.hv-pill.ok {
  background: rgba(34,197,94,0.10);
  color: #16a34a;
}
.hv-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #16a34a;
  position: relative;
}
.hv-pill-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #16a34a;
  opacity: .5;
  animation: status-pulse 1.8s ease-out infinite;
}

/* Floating uptime chip — kartın üst-sağ dışında, URL barını ÖRTMEZ */
.hv-chip {
  position: absolute;
  top: -14px;
  right: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  animation: hv-float-3 7s ease-in-out infinite;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.18);
}
.hv-chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

/* Floating PageSpeed mini card — alt-sağ köşeden taşar */
.hv-mini {
  position: absolute;
  bottom: 24px;
  right: -24px;
  width: 188px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  z-index: 4;
  transform: rotate(1.5deg);
  animation: hv-float-2 9s ease-in-out infinite;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 24px 48px -18px rgba(0,0,0,0.22);
}
.hv-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.hv-mini-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.hv-mini-val {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #16a34a;
  font-variant-numeric: tabular-nums;
}
.hv-mini-bar {
  height: 4px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hv-mini-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #16a34a;
  transition: width .8s var(--ease);
}
.hv-mini-foot {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Floating backup chip — bottom-left, PageSpeed kartını dengeler */
.hv-backup {
  position: absolute;
  bottom: 60px;
  left: -22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 4;
  transform: rotate(-1.5deg);
  animation: hv-float-3 8s ease-in-out infinite;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 18px 36px -16px rgba(0,0,0,0.20);
}
.hv-backup-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(248,180,20,0.10);
  color: #f8b414;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-backup-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.hv-backup-meta {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}

@keyframes hv-float-1 {
  0%,100% { transform: rotate(-0.4deg) translateY(0); }
  50%     { transform: rotate(-0.4deg) translateY(-8px); }
}
@keyframes hv-float-2 {
  0%,100% { transform: rotate(1.5deg) translateY(0); }
  50%     { transform: rotate(1.5deg) translateY(-6px); }
}
@keyframes hv-float-3 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: left; }
  .hero-visual { height: 580px; max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .hero-trust-logos { gap: 24px; }
  .hero-trust-logos span { font-size: 15px; }
  .hero-badge { font-size: 12px; }
  .hero-visual { height: 480px; }
  .hv-cpanel { width: 100%; max-width: 100%; }
  .hv-cp-side { width: 124px; }
  .hv-cp-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hv-cp-stats > :last-child { grid-column: span 2; }
  .hv-cp-grid { grid-template-columns: repeat(3, 1fr); }
  .hv-chip { font-size: 11px; padding: 7px 11px; right: 16px; }
  .hv-mini, .hv-backup { display: none; }
}

/* ---------- Section ---------- */
.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.section-sub {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

/* ---------- Domain search ---------- */
.domain-search {
  max-width: 1080px;
  margin: 0 auto;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.search-bar:focus-within { border-color: var(--ink); }
.search-icon { color: var(--muted); flex-shrink: 0; }
.search-bar input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 18px;
  padding: 16px 8px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  letter-spacing: -0.01em;
}
.search-bar input::placeholder { color: var(--muted-2); }
.search-bar select {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0 14px;
  outline: 0;
  border-left: 1px solid var(--line);
  cursor: pointer;
}

/* Trust strip */
.search-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 20px 0 8px;
  font-size: 13px;
  color: var(--muted);
}
.search-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.search-trust svg { color: var(--success); }

/* Filter chips */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 28px;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Results panel */
.results-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Empty state */
.results-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--muted);
}
.empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.results-empty h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.results-empty p {
  margin: 0 auto;
  max-width: 420px;
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- Discover panel (initial state) ---------- */
.discover { padding: 28px; }
.discover-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 28px;
}
.discover-col-side {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.discover-head { margin-bottom: 16px; }
.discover-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  flex: none;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(34,197,94,0.35);
  animation: liveDotPulse 1.8s ease-out infinite;
}
@keyframes liveDotPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.discover-head h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}

/* Price table */
.price-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.price-thead {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 10px 16px;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-thead span:not(:first-child) { text-align: right; }
.price-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background .12s var(--ease);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row:hover { background: #fafafa; }

.price-tld {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.price-tld-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.price-tld-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(10,10,10,0.06);
  color: var(--muted);
  white-space: nowrap;
}
.price-tld-tag-hot { background: rgba(248,180,20,0.14); color: #8a5a00; }
.price-tld-tag-premium { background: rgba(10,10,10,0.92); color: #fff; }
.price-tld-tag-deal { background: #eafaf0; color: #166534; }

.price-cell {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.price-now {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.price-old {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-muted {
  font-size: 14px;
  color: var(--muted);
}
.price-note {
  margin: 14px 2px 0;
  padding: 0;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  line-height: 1.5;
}
.price-note > span { display: inline-flex; align-items: center; gap: 6px; }
.price-note a {
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.price-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Price table footer (inside the bordered table) */
.price-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #fafafa;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.4;
  flex-wrap: wrap;
}
.price-foot-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.price-foot-left svg { color: var(--muted); flex: none; }
.price-foot-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.price-foot-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Side: name suggestions */
.discover-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.discover-item { margin: 0; }
.discover-name {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: background .12s var(--ease), border-color .12s var(--ease);
}
.discover-name:hover {
  background: #fafafa;
  border-color: var(--line);
}
.discover-name-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex: none;
}
.discover-name-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.discover-name-text em {
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
}
.discover-name-price {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.discover-name-arrow {
  color: var(--muted);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity .15s var(--ease), transform .15s var(--ease), color .15s var(--ease);
  flex: none;
}
.discover-name:hover .discover-name-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--ink);
}
.discover-name:hover .discover-name-price {
  color: var(--ink);
}

/* Side: live stats */
.discover-stat {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.discover-stat-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.discover-stat-sep {
  height: 1px;
  background: var(--line);
}
.discover-stat-num {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
  flex: none;
}
.discover-stat-num small {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 1px;
}
.discover-stat-label {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .discover { padding: 20px; }
  .discover-grid { grid-template-columns: 1fr; gap: 24px; }
  .discover-col-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .price-thead { display: none; }
  .price-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    padding: 14px;
  }
  .price-tld { grid-column: 1 / -1; }
  .price-cell { justify-content: space-between; }
  .price-cell::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
}

/* Toolbar (tabs + stats) */
.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.results-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  padding: 4px;
  border-radius: 10px;
}
.results-tabs button {
  border: 0;
  background: transparent;
  padding: 7px 14px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
  transition: all .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.results-tabs button .count {
  font-size: 11px;
  background: rgba(0,0,0,0.06);
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 600;
}
.results-tabs button:hover { color: var(--ink); }
.results-tabs button.active {
  background: #fff;
  color: var(--ink);
}
.results-tabs button.active .count { background: var(--ink); color: #fff; }

.results-stats {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}
.results-stats b {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}

/* Featured "best match" hero card */
.result-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 28px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1d1d1f 100%);
  color: #fff;
  border-bottom: 1px solid var(--line);
}
.result-hero .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  margin-bottom: 12px;
}
.result-hero h3 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.result-hero h3 .tld {
  background: linear-gradient(135deg, var(--accent-2), #ffe88a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result-hero p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
}
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.hero-meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

.hero-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.hero-price .price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero-price .old {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.hero-price .new {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-price .new small { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; margin-left: 2px; }
.hero-price .renew {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}
.hero-price .btn-primary {
  background: #fff;
  color: var(--ink);
}
.hero-price .btn-primary:hover { background: #f0f0f0; }

/* Result rows */
.results-list { padding: 4px 0; }

.result-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr) auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.result-row:last-child { border-bottom: 0; }
.result-row:hover { background: #fafafa; }

.result-name-wrap { min-width: 0; }
.result-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.result-name .tld { color: var(--accent); font-weight: 600; }
.result-tags {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--muted);
}
.tag.premium { background: #fff4e0; color: #b06a00; }
.tag.sale    { background: #ffe5ec; color: #c4324c; }
.tag.new     { background: #fff7d6; color: var(--accent); }
.tag.hot     { background: #ffe9e0; color: #c44a1d; }

.result-meta {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.result-meta b { color: var(--ink-2); font-weight: 500; }

.result-status {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  white-space: nowrap;
}
.result-status.available { color: var(--success); }
.result-status.taken     { color: var(--muted-2); }
.result-status.premium   { color: #b06a00; }
.result-status .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.result-price {
  text-align: right;
  white-space: nowrap;
}
.result-price .now {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.result-price .now small { color: var(--muted); font-weight: 400; font-size: 12px; margin-left: 2px; }
.result-price .was {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 1px;
}
.result-price .renew {
  display: block;
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 2px;
}

.result-action .btn { padding: 9px 18px; font-size: 13px; }

/* Footer strip */
.results-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
  padding: 16px 22px;
  background: var(--bg-alt);
  border-radius: 14px;
  font-size: 13.5px;
  color: var(--muted);
}
.results-footer-left { display: inline-flex; align-items: center; gap: 10px; }
.results-footer-left svg { color: var(--accent); }
.results-footer .link-quiet {
  color: var(--accent);
  font-weight: 500;
}
.results-footer .link-quiet:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 820px) {
  .result-row {
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 16px 18px;
  }
  .result-name-wrap { grid-column: 1 / -1; }
  .result-meta { grid-column: 1 / -1; order: 5; }
  .result-status { grid-column: 1; order: 2; }
  .result-price { grid-column: 2; order: 3; }
  .result-action { grid-column: 1 / -1; order: 4; margin-top: 6px; }
  .result-action .btn { width: 100%; }

  .result-hero {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 18px;
  }
  .hero-price { text-align: left; align-items: flex-start; }
  .hero-price .btn { width: 100%; justify-content: center; }
  .results-toolbar { padding: 12px 14px; }
  .results-tabs button { padding: 6px 10px; font-size: 12.5px; }
}

@media (max-width: 640px) {
  .search-bar { flex-wrap: wrap; border-radius: 22px; padding: 10px; }
  .search-bar input { width: 100%; padding: 10px 4px; font-size: 16px; }
  .search-bar select { border-left: 0; padding: 0 8px; }
  .search-bar .btn { width: 100%; }
  .search-trust { gap: 8px 18px; font-size: 12.5px; }
  .results-stats { font-size: 12px; gap: 12px; }
}

/* ---------- Hosting plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.plan.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.plan.featured .plan-list li::before { background: #fff; }
.plan.featured header p,
.plan.featured .price .currency,
.plan.featured .price .period { color: rgba(255,255,255,0.65); }
.plan .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.plan header p { margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.plan .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.plan .currency { font-size: 18px; color: var(--muted); font-weight: 500; }
.plan .amount { font-size: 52px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.plan .period { font-size: 15px; color: var(--muted); margin-left: 4px; }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.plan-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14.5px;
}
.plan-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  background:
    linear-gradient(transparent calc(100% - 1.5px), currentColor 0) 0 0/14px 100% no-repeat,
    linear-gradient(90deg, transparent calc(100% - 1.5px), currentColor 0) 100% 0/100% 8px no-repeat;
  transform: rotate(45deg) scale(.6);
  opacity: .9;
}
/* simpler check */
.plan-list li::before {
  content: '✓';
  background: none;
  transform: none;
  width: auto; height: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  top: 0;
}
.plan.featured .plan-list li::before { color: var(--accent-2); background: none; }

/* ---------- Billing toggle ---------- */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 36px;
  flex-wrap: wrap;
}
.billing-opt {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  font-size: 14.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s var(--ease);
}
.billing-opt:hover { border-color: var(--ink-2); }
.billing-opt.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.billing-save {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(248,180,20,0.18);
  color: #8a5a00;
}
.billing-opt.is-active .billing-save {
  background: var(--accent);
  color: var(--ink);
}
.billing-save-best { background: rgba(248,180,20,0.28); }
.billing-hint {
  width: 100%;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
}

/* Price note (total billed) */
.price-note {
  margin: -18px 0 24px;
  font-size: 13px;
  color: var(--muted);
}
.plan.featured .price-note { color: rgba(255,255,255,0.6); }
.price-total { color: var(--ink); font-weight: 500; }
.plan.featured .price-total { color: #fff; }

/* Plan card layout: button before list */
.plan .btn-block { margin-bottom: 28px; }
.plan-list { margin-bottom: 16px; }

/* Plan more (collapsible) */
.plan-more {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.plan.featured .plan-more { border-top-color: rgba(255,255,255,0.12); }
.plan-more summary {
  list-style: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  padding: 4px 0;
}
.plan-more summary::-webkit-details-marker { display: none; }
.plan-more summary::after {
  content: '↓';
  display: inline-block;
  transition: transform .25s var(--ease);
  font-size: 11px;
}
.plan-more[open] summary::after { transform: rotate(180deg); }
.plan-more[open] summary { margin-bottom: 12px; }
.plan.featured .plan-more summary { color: var(--accent-2); }
.plan-list-more { margin: 0; }

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


/* ---------- Comparison: trigger + dialog ---------- */
.compare-trigger-wrap {
  display: flex;
  justify-content: center;
  margin: 64px 0 0;
}
.compare-trigger {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px 18px 18px;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  color: var(--ink);
  transition: all .3s var(--ease);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  min-width: 360px;
  max-width: 100%;
}
.compare-trigger:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.18);
}
.compare-trigger-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(248,180,20,0.12);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.compare-trigger-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.compare-trigger-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.compare-trigger-sub {
  font-size: 12.5px;
  color: var(--muted);
}
.compare-trigger-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.compare-trigger:hover .compare-trigger-arrow { transform: rotate(45deg); }

.compare-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: stretch;
  justify-content: center;
}
.compare-dialog.is-open { display: flex; }
.compare-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: cmpFade .3s var(--ease) forwards;
}
.compare-panel {
  position: relative;
  background: #fff;
  width: min(1180px, calc(100vw - 48px));
  max-height: calc(100vh - 64px);
  margin: 32px auto;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.04);
  transform: translateY(20px) scale(.98);
  opacity: 0;
  animation: cmpRise .35s var(--ease) .05s forwards;
}
@keyframes cmpFade { to { opacity: 1; } }
@keyframes cmpRise { to { transform: none; opacity: 1; } }

.compare-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.compare-panel-head .eyebrow { margin-bottom: 6px; }
.compare-panel-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.compare-close {
  appearance: none;
  background: var(--bg-alt);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background .2s var(--ease);
}
.compare-close:hover { background: var(--ink); color: #fff; }

.compare-panel-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: auto;
}
.compare-panel-foot {
  border-top: 1px solid var(--line);
  background: #fafafa;
  flex-shrink: 0;
}
.compare-foot-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}
.compare-foot-cell {
  padding: 16px 20px;
  border-left: 1px solid var(--line);
}
.compare-foot-cell:first-child { border-left: 0; }
.compare-foot-cell.ct-featured { background: rgba(248,180,20,0.08); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.compare-foot-hint {
  margin: 0;
  padding: 12px 32px 16px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.compare-table {
  display: grid;
  font-size: 14px;
  min-width: 760px;
}
.ct-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.ct-row:last-child { border-bottom: 0; }
.ct-row > div {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--line);
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.ct-row > div:first-child {
  border-left: 0;
  font-weight: 500;
  color: var(--ink);
}
.ct-row.ct-head {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0 1px 0 var(--line);
}
.ct-row.ct-head > div {
  padding: 18px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.ct-row.ct-head > div:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  flex-direction: row;
  align-items: center;
}
.ct-plan-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ct-plan-badge {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 4px;
}
.ct-plan-price {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.ct-plan-price small { font-size: 11px; opacity: .8; }

.ct-section {
  background: #fafafa;
  border-bottom: 1px solid var(--line);
}
.ct-section > div {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  grid-column: 1 / -1;
  border-left: 0;
}
.ct-featured {
  background: rgba(248,180,20,0.05);
  font-weight: 500 !important;
  color: var(--ink) !important;
}
.ct-row.ct-head .ct-featured {
  background: rgba(248,180,20,0.10);
  position: relative;
}
.ct-row.ct-head .ct-featured::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
}
.ct-y { color: var(--accent) !important; font-weight: 700; }
.ct-n { color: var(--muted-2); }

body.compare-open { overflow: hidden; }

@media (max-width: 900px) {
  .compare-trigger { min-width: 0; width: 100%; }
  .compare-panel { width: 100vw; max-height: 100vh; margin: 0; border-radius: 20px 20px 0 0; align-self: flex-end; }
  .compare-panel-head { padding: 20px 20px; }
  .compare-panel-head h3 { font-size: 18px; }
  .compare-foot-row { grid-template-columns: 1fr 1fr 1fr; }
  .compare-foot-cell:first-child { display: none; }
  .compare-foot-hint { padding: 10px 16px 14px; }
}
@media (max-width: 640px) {
  .ct-plan-name { font-size: 13px; }
  .ct-row > div { padding: 10px 12px; font-size: 12.5px; }
  .ct-row.ct-head > div { padding: 12px 10px; }
}


/* ---------- VPS Slider ---------- */
.vps-section { background: var(--bg-dark); color: #fff; padding-bottom: 140px; }
.vps-section .eyebrow { color: var(--muted-2); }
.vps-section .section-sub { color: rgba(255,255,255,0.6); }

.slider-wrap {
  position: relative;
  margin-top: 24px;
}
.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px max(24px, calc((100vw - 1320px) / 2)) 40px;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }

.vps-card {
  flex: 0 0 340px;
  scroll-snap-align: center;
  background: linear-gradient(180deg, #161618 0%, #0e0e10 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px 28px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.vps-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
}
.vps-card.highlight {
  background: linear-gradient(180deg, #3a2e08 0%, #1a1405 100%);
  border-color: rgba(255,216,77,0.4);
}

.vps-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.vps-head .tier {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tier-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.tier-tag.pop {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.vps-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
}
.vps-price span { font-size: 22px; color: rgba(255,255,255,0.6); font-weight: 500; align-self: flex-start; margin-top: 6px; }
.vps-price small { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400; margin-left: 4px; }

.vps-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.vps-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vps-specs li:last-child { border-bottom: 0; }
.vps-specs span { color: rgba(255,255,255,0.55); }
.vps-specs b { font-weight: 600; letter-spacing: -0.01em; }

.vps-card .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.vps-card .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.vps-card .btn-primary {
  background: #fff;
  color: var(--ink);
}
.vps-card .btn-primary:hover { background: #f0f0f0; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}
.slider-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.05);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.2);
  padding: 0;
  transition: all .25s var(--ease);
}
.slider-dots button.active {
  background: #fff;
  width: 24px;
  border-radius: 999px;
}

/* ---------- Features — Her pakette aynı altyapı ---------- */
.features-section { padding: 120px 0; }
.features-section .section-head { margin-bottom: 64px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feat {
  padding: 28px 24px 26px;
  background: #fff;
  transition: background .25s var(--ease);
  position: relative;
}
.feat:hover { background: var(--bg-alt); }
.feat-ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(248,180,20,0.08);
  color: #f8b414;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feat-ic svg { width: 19px; height: 19px; }
.feat h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feat p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Stack disclosure block */
.features-stack {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  color: #fff;
}
.features-stack-text .eyebrow { color: rgba(255,255,255,0.55); }
.features-stack-text h3 {
  margin: 14px 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 700;
}
.features-stack-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
}
.features-stack-text strong { color: #fff; font-weight: 600; }

.features-stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
}
.features-stack-list li {
  padding: 22px 20px;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.features-stack-list li strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.features-stack-list li span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-stack { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .features-stack-list { grid-template-columns: 1fr; }
}

/* ---------- CTA (Dark premium card) ---------- */
.cta-section {
  padding: 120px 0;
  background: var(--bg);
}
.cta-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.04);
}
.cta-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-grid-tex {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
}
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.cta-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -150px; left: -100px;
  opacity: 0.35;
}
.cta-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
  bottom: -120px; right: -80px;
  opacity: 0.25;
}
.cta-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 64px;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.cta-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.cta-card h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.cta-card h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 560px;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-lg { padding: 14px 22px; font-size: 14.5px; font-weight: 600; gap: 8px; }
.btn-ghost-dark {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s var(--ease);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}
.cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}
.cta-bullets svg { color: var(--accent); flex: none; }

.cta-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cta-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-stat-row:first-child { padding-top: 0; }
.cta-stat-row:last-of-type { border-bottom: 0; padding-bottom: 18px; }
.cta-stat { display: flex; flex-direction: column; gap: 4px; }
.cta-stat-num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cta-stat-lbl {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.cta-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.cta-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.15);
  animation: ctaPulse 2s ease-in-out infinite;
  flex: none;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}
.cta-status-link {
  margin-left: auto;
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  text-decoration: none;
  transition: color .18s var(--ease);
}
.cta-status-link:hover { color: var(--accent); }

@media (max-width: 980px) {
  .cta-card-inner { grid-template-columns: 1fr; padding: 48px 36px; gap: 36px; }
  .cta-section { padding: 80px 0; }
}
@media (max-width: 540px) {
  .cta-card { border-radius: 20px; }
  .cta-card-inner { padding: 36px 24px; }
  .cta-stat-card { padding: 20px; }
  .cta-stat-num { font-size: 24px; }
}

/* ---------- Footer (Dark, comprehensive) ---------- */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248,180,20,0.4), transparent);
}

/* Top: Brand + Newsletter */
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo-light { color: #fff; font-weight: 700; }
.logo-light:hover { color: #fff; }
.footer-brand-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 18px 0 24px;
  max-width: 420px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: all .2s var(--ease);
}
.footer-social a:hover {
  background: rgba(248,180,20,0.12);
  border-color: rgba(248,180,20,0.35);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-newsletter {
  max-width: 440px;
  margin-left: auto;
  width: 100%;
}
.footer-h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.footer-newsletter-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 5px;
  transition: border-color .2s var(--ease);
}
.footer-newsletter-form:focus-within {
  border-color: rgba(248,180,20,0.5);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.12);
}
.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  color: #fff;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form button {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #1a1100;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .18s var(--ease);
}
.footer-newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 16px -4px rgba(248,180,20,0.4); }
.footer-newsletter-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 12px 0 0;
}
.footer-newsletter-hint a { color: rgba(255,255,255,0.7); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); }
.footer-newsletter-hint a:hover { color: var(--accent); }

/* Middle columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 32px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col h5 {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  padding: 5px 0;
  text-decoration: none;
  transition: color .18s var(--ease), transform .18s var(--ease);
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(2px);
}

/* Trust strip */
.footer-trust {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
}
.footer-trust-item svg {
  color: var(--accent);
  flex: none;
  opacity: 0.85;
}
.footer-trust-item strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.footer-trust-item span {
  display: block;
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  font-size: 12.5px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-left a {
  color: rgba(255,255,255,0.55);
  transition: color .18s var(--ease);
  text-decoration: none;
}
.footer-bottom-left a:hover { color: #fff; }
.footer-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  padding: 7px 12px;
  border-radius: 8px;
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
  transition: all .18s var(--ease);
}
.footer-locale:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-status a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .18s var(--ease);
}
.footer-status a:hover { color: #fff; }
.footer-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
  animation: ctaPulse 2s ease-in-out infinite;
}

@media (max-width: 1080px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-trust { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-newsletter { margin-left: 0; max-width: none; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; padding: 40px 0; }
  .footer-trust { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .footer { padding: 56px 0 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-trust { grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom-right { flex-wrap: wrap; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Works / Portfolio — agency case study grid
   ============================================================ */
.works-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 40px;
}
.works-filter {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.works-filter:hover { background: var(--bg-alt); color: var(--ink); }
.works-filter.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.work:hover { border-color: #d8d8dc; transform: translateY(-2px); }

.work-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-cover-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(10,10,10,0.92);
}
.work-cover[data-theme="dark"] { background: #0a0a0a; }
.work-cover[data-theme="dark"] .work-cover-art { color: #fff; }
.work-cover[data-theme="amber"] { background: #f8b414; }
.work-cover[data-theme="amber"] .work-cover-art { color: #0a0a0a; }
.work-cover[data-theme="ink-grid"] {
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/24px 24px,
    #0a0a0a;
}
.work-cover[data-theme="ink-grid"] .work-cover-art { color: #fff; }
.work-cover[data-theme="cream"] { background: #f5f1ea; }

.work-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.work-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.work-title {
  margin: 2px 0 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.work-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

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

/* =========================================================
   Services section — dark theme override
   ========================================================= */
#services.section {
  background: #0a0a0a;
  color: #fff;
  position: relative;
}
/* subtle radial glow */
#services.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 360px at 50% -10%, rgba(248,180,20,0.08), transparent 60%),
    radial-gradient(700px 300px at 100% 100%, rgba(248,180,20,0.04), transparent 60%);
  pointer-events: none;
}
#services .container { position: relative; z-index: 1; }

#services .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
#services .section-head h2 {
  color: #fff;
}
#services .section-head h2 .hero-accent {
  color: var(--accent);
}
#services .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* Borderless grid on dark bg — hairline separators only */
#services .features-grid {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  gap: 1px;
  overflow: hidden;
}
#services .features-grid > .feat {
  background: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 32px 28px 30px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
#services .feat h4 {
  color: #fff;
  font-size: 15.5px;
}
#services .feat p {
  color: rgba(255, 255, 255, 0.55);
}
#services .feat-ic {
  background: rgba(248, 180, 20, 0.1);
  color: var(--accent);
  border: 1px solid rgba(248, 180, 20, 0.18);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

/* Hover: subtle lift, amber-tinted surface — no harsh black square */
#services .feat:hover {
  background: #141414;
}
#services .feat:hover .feat-ic {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  transform: translateY(-2px);
}
#services .feat:hover p {
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   About / Founders — Editorial layout
   ========================================================= */
#about.section {
  position: relative;
  padding: 140px 0 120px;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Atmospheric layers */
.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  opacity: 0.6;
}
.about-bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(248,180,20,0.18), transparent 60%);
  filter: blur(20px);
}

#about .container { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.about-head {
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
}
.about-head-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.about-head-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}
.about-head-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: aboutPulse 1.8s ease-in-out infinite;
}
@keyframes aboutPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.about-head-counter {
  color: rgba(255,255,255,0.5);
}

.about-title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 28px;
}
.about-title em {
  font-style: italic;
  font-weight: 400;
  font-family: inherit;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.about-title-strike {
  position: relative;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}
.about-title-strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 4px;
  background: var(--accent);
  transform: rotate(-2deg);
}

.about-manifesto {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
}
.about-manifesto strong {
  color: #fff;
  font-weight: 600;
}

/* ---------- Founders grid ---------- */
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.founder {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  isolation: isolate;
}
/* Middle card sits 32px lower for asymmetry */
.founder.is-mid {
  margin-top: 40px;
}

/* Watermark number */
.founder-num {
  position: absolute;
  top: -28px; right: -8px;
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.07);
  font-family: inherit;
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color .5s var(--ease), color .5s var(--ease), transform .6s var(--ease);
}

/* Portrait area */
.founder-portrait {
  position: relative;
  height: 220px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 35%, rgba(248,180,20,0.18), transparent 60%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  z-index: 1;
}
.founder-portrait::before {
  /* scanlines */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,0.025) 3px,
    rgba(255,255,255,0.025) 4px
  );
  pointer-events: none;
}
.founder-portrait::after {
  /* corner brackets */
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, rgba(248,180,20,0.4), transparent 30%, transparent 70%, rgba(248,180,20,0.4)) 1;
  pointer-events: none;
}

.founder-mono {
  font-family: inherit;
  font-size: 96px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 28px rgba(248,180,20,0.25);
  transition: color .4s var(--ease), transform .5s var(--ease);
}
.founder-tape {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  white-space: nowrap;
}

/* Body */
.founder-body {
  position: relative;
  z-index: 1;
}
.founder-role {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.founder-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px;
}

.founder-quote {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 2px solid rgba(248,180,20,0.4);
  font-family: inherit;
}
.founder-quote .q {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}

.founder-tags {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.founder-tags li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.founder-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 22px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.founder-stats div { padding-right: 12px; }
.founder-stats div + div { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 16px; padding-right: 0; }
.founder-stats dt {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.founder-stats dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.founder-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.founder-link {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.founder-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.founder-sig {
  font-family: inherit;
  font-style: italic;
  font-size: 18px;
  color: rgba(248,180,20,0.7);
  letter-spacing: 0.02em;
}

/* HOVER — card lifts, watermark amber */
.founder:hover {
  transform: translateY(-6px);
  border-color: rgba(248,180,20,0.35);
  background: rgba(255,255,255,0.035);
}
.founder.is-mid:hover {
  transform: translateY(-46px);
}
.founder:hover .founder-num {
  -webkit-text-stroke-color: rgba(248,180,20,0.5);
  transform: translate(-4px, 4px);
}
.founder:hover .founder-mono {
  color: var(--accent);
  transform: scale(1.04);
}

/* ---------- Trust band ---------- */
.about-band {
  position: relative;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(248,180,20,0.04), transparent 50%),
    rgba(255,255,255,0.02);
}
.about-band-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1.4fr;
  align-items: center;
  gap: 24px;
}
.about-band-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.about-band-item strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.about-band-item span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.about-band-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .founders { grid-template-columns: 1fr; gap: 20px; }
  .founder.is-mid { margin-top: 0; }
  .founder.is-mid:hover { transform: translateY(-6px); }
  .about-band-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .about-band-divider { display: none; }
}
@media (max-width: 600px) {
  #about.section { padding: 90px 0 80px; }
  .about-head { margin-bottom: 56px; }
  .about-title { font-size: 44px; }
  .founder-num { font-size: 160px; top: -16px; }
  .founder-mono { font-size: 76px; }
  .founder-portrait { height: 180px; }
  .about-band { padding: 20px; }
  .about-band-row { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Page hero (hosting.html / domains.html)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, #000 30%, transparent 80%);
  opacity: 0.55;
}
.page-hero-glow {
  position: absolute;
  top: -180px; left: 60%;
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(248,180,20,0.16), transparent 60%);
  filter: blur(20px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-inner { max-width: 760px; }

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.page-hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.page-hero-title {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: #fff;
}
.page-hero-title em {
  font-style: italic;
  font-weight: 400;
  font-family: inherit;
  color: var(--accent);
}
.page-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.66);
  margin: 0 0 36px;
  max-width: 620px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.page-hero .btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.page-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.32);
}

.page-hero-meta {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
}
.page-hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero-meta strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-hero-meta span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Active nav state on subpages */
.nav-link.is-active {
  color: var(--accent);
}

@media (max-width: 720px) {
  .page-hero { padding: 72px 0 56px; }
  .page-hero-title { font-size: 38px; }
  .page-hero-meta { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}


/* =========================================================
   Infra showcase — homepage banner linking to hosting/domains
   ========================================================= */
.infra-showcase {
  padding: 80px 0;
  background: var(--bg-alt, #fafafa);
}
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.infra-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.infra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 100% 0%, rgba(248,180,20,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.infra-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248,180,20,0.4);
  box-shadow: 0 24px 60px -32px rgba(0,0,0,0.18);
}
.infra-card:hover::before { opacity: 1; }
.infra-card > * { position: relative; z-index: 1; }

.infra-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.infra-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(248,180,20,0.08);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.infra-card-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt, #f3f3f3);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.infra-card:hover .infra-card-arrow {
  background: var(--ink);
  color: var(--accent);
  transform: rotate(-8deg) scale(1.05);
}

.infra-card-title {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
.infra-card-title em {
  font-style: italic;
  font-weight: 400;
  font-family: inherit;
  color: var(--accent);
}
.infra-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 460px;
}
.infra-card-meta {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.infra-card-meta strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-right: 4px;
}

@media (max-width: 880px) {
  .infra-grid { grid-template-columns: 1fr; }
  .infra-card { padding: 28px 24px 24px; }
}

/* =========================================================
   CORPORATE BANNER — gateway to kurumsal.html (editorial)
   ========================================================= */
.corporate-banner {
  position: relative;
  background: #fafaf7;
  border-top: 1px solid rgba(15, 17, 21, 0.06);
  border-bottom: 1px solid rgba(15, 17, 21, 0.06);
  overflow: hidden;
}
.corporate-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,17,21,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,17,21,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
}

.corp-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}

.corp-intro { padding-top: 8px; }

.corp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid rgba(15,17,21,0.12);
  border-radius: 999px;
  background: #fff;
}
.corp-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.18);
  animation: pulseAmber 2.4s ease-in-out infinite;
}
@keyframes pulseAmber {
  0%, 100% { box-shadow: 0 0 0 3px rgba(248,180,20,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(248,180,20,0.06); }
}

.corp-title {
  font-family: inherit;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
  margin: 22px 0 20px;
}
.corp-title em {
  font-style: italic;
  font-weight: 500;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  position: relative;
  display: inline-block;
  padding: 0 4px;
  letter-spacing: -0.022em;
}
.corp-title em::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px;
  bottom: 6px;
  height: 8px;
  background: rgba(248,180,20,0.35);
  z-index: -1;
  border-radius: 2px;
}
.corp-title-amp {
  font-family: inherit;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--accent);
}

.corp-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
}

.corp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* RIGHT — capability matrix (bento) */
.corp-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.corp-matrix-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 4px;
}
.corp-matrix-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.corp-matrix-tag-bar {
  width: 22px;
  height: 1px;
  background: rgba(15,17,21,0.25);
  display: inline-block;
}
.corp-matrix-counter {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* Cell — compact */
.corp-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid rgba(15,17,21,0.08);
  border-radius: var(--r-sm);
  text-decoration: none;
  color: var(--ink);
  isolation: isolate;
  overflow: hidden;
  transition: transform .35s var(--ease, cubic-bezier(.2,.7,.2,1)), border-color .25s ease, box-shadow .35s ease, background .25s ease;
}
.corp-cell::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease, cubic-bezier(.2,.7,.2,1));
  z-index: 1;
}
.corp-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(15,17,21,0.18);
  box-shadow: 0 12px 30px -18px rgba(15,17,21,0.18);
}
.corp-cell:hover::before { transform: scaleX(1); }

.corp-cell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.corp-cell-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.corp-cell-ic {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  background: rgba(15,17,21,0.04);
  color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.corp-cell:hover .corp-cell-ic {
  background: var(--accent);
  color: #0f1115;
}

.corp-cell-title {
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.corp-cell-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.corp-cell-arrow-inline {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 15px;
  color: rgba(15,17,21,0.25);
  transition: transform .3s ease, color .3s ease;
}
.corp-cell:hover .corp-cell-arrow-inline {
  color: var(--ink);
  transform: translateX(3px);
}

/* Featured cell (Web) — spans both columns */
.corp-cell-feature {
  grid-column: 1 / -1;
  padding: 22px 22px 20px;
  background: linear-gradient(135deg, #0f1115 0%, #1a1d24 100%);
  color: #fff;
  border-color: transparent;
}
.corp-cell-feature .corp-cell-num { color: rgba(255,255,255,0.55); }
.corp-cell-feature .corp-cell-title { color: #fff; font-size: 22px; }
.corp-cell-feature .corp-cell-desc { color: rgba(255,255,255,0.70); font-size: 14px; max-width: 460px; }
.corp-cell-feature .corp-cell-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f1115;
  background: var(--accent);
  padding: 4px 9px;
  border-radius: 4px;
  font-weight: 600;
}
.corp-cell-feature .corp-cell-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.corp-cell-stack {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.corp-cell-arrow {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #0f1115;
  transition: transform .3s ease;
}
.corp-cell-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -22px rgba(15,17,21,0.55);
}
.corp-cell-feature:hover .corp-cell-arrow { transform: translateX(3px) rotate(-2deg); }
.corp-cell-feature::before { background: var(--accent); }

/* Stat band */
.corp-stats {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(15,17,21,0.10);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.corp-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
  padding-right: 16px;
  border-right: 1px solid rgba(15,17,21,0.06);
}
.corp-stat:last-child { border-right: 0; }
.corp-stat-num {
  font-family: inherit;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  height: 1em;
}
.corp-stat-num sup {
  font-size: 0.42em;
  font-weight: 600;
  color: var(--accent);
  vertical-align: baseline;
  position: relative;
  top: -0.55em;
  line-height: 1;
}
.corp-stat-num small {
  font-size: 0.32em;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: lowercase;
  position: relative;
  top: -0.15em;
  line-height: 1;
}
.corp-stat-label {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0.005em;
}

@media (max-width: 980px) {
  .corp-grid { grid-template-columns: 1fr; gap: 48px; }
  .corp-matrix { gap: 12px; }
  .corp-cell { padding: 16px; }
  .corp-cell-title { font-size: 15.5px; }
  .corp-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; margin-top: 48px; }
  .corp-stat { border-right: 0; padding-right: 0; }
}
@media (max-width: 560px) {
  .corp-matrix { grid-template-columns: 1fr; }
  .corp-cell-feature { grid-column: 1; }
  .corp-stats { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   KURUMSAL PAGE — service cards grid
   ========================================================= */
.kurumsal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(15,17,21,0.08);
  border: 1px solid rgba(15,17,21,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.ks-card {
  background: var(--bg);
  padding: 56px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.ks-card:hover { background: #fafaf7; }

/* Sol üst köşede dev display numara */
.ks-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 16px;
}
.ks-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  line-height: 0.85;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--ink);
  opacity: 0.08;
  margin: 0;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s ease, color 0.35s ease, transform 0.4s var(--ease, ease);
  flex-shrink: 0;
}
.ks-card:hover .ks-card-num {
  opacity: 0.85;
  color: var(--ink);
  transform: translateY(-2px);
}
.ks-card-ic {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(248,180,20,0.10);
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 4px;
}
.ks-card-ic svg { width: 20px; height: 20px; }
.ks-card:hover .ks-card-ic {
  background: var(--accent);
  color: #0f1115;
}

.ks-card-title {
  font-family: inherit;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  position: relative;
  display: inline-block;
}
.ks-card-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 10px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0.5);
  opacity: 0.35;
  transition: transform .35s var(--ease, ease), background .35s ease, opacity .35s ease;
}
.ks-card:hover .ks-card-title::after {
  transform: scaleX(1.8);
  background: var(--accent);
  opacity: 1;
}
.ks-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.ks-card-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(15,17,21,0.10);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ks-card-list li {
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.ks-card-list li::before {
  content: "→";
  font-family: inherit;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.45;
}
.ks-card-cta {
  margin-top: auto;
  padding: 14px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(15,17,21,0.08);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  text-align: left;
  transition: color 0.25s ease, gap 0.25s ease, border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.ks-card-cta:hover {
  color: var(--accent);
  gap: 14px;
  border-top-color: rgba(248,180,20,0.4);
}
.ks-card-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (max-width: 1080px) {
  .kurumsal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .kurumsal-grid { grid-template-columns: 1fr; }
  .ks-card { padding: 28px 24px 24px; }
}

/* ========================================================================
   SECTOR STRIP — Sektörel kapsama özeti (works'ten sonra gelir)
   ======================================================================== */
.sector-strip {
  position: relative;
  background: var(--bg-alt, #fafaf7);
  border-top: 1px solid rgba(15,17,21,0.06);
  border-bottom: 1px solid rgba(15,17,21,0.06);
}
.ss-head {
  max-width: 680px;
  margin: 0 0 44px;
}
.ss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid rgba(15,17,21,0.12);
  border-radius: 999px;
  background: #fff;
  margin-bottom: 18px;
}
.ss-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.18);
}
.ss-title {
  font-family: inherit;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
}
.ss-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.ss-lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 580px;
  margin: 0;
}

/* Grid — 7 sektör chip'i */
.ss-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(15,17,21,0.08);
  border: 1px solid rgba(15,17,21,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ss-chip {
  position: relative;
  background: #fff;
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  transition: background .25s ease;
  overflow: hidden;
}
.ss-chip::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease, cubic-bezier(.2,.7,.2,1));
}
.ss-chip:hover { background: #fafaf7; }
.ss-chip:hover::before { transform: scaleX(1); }

.ss-chip-ic {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,17,21,0.12);
  border-radius: var(--r-xs);
  color: rgba(15,17,21,0.55);
  background: #fff;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}
.ss-chip-ic svg { width: 18px; height: 18px; display: block; }
.ss-chip:hover .ss-chip-ic {
  color: var(--accent);
  border-color: rgba(248,180,20,0.55);
  background: rgba(248,180,20,0.08);
}

.ss-chip-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.ss-chip-name {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.ss-chip-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.ss-chip-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(15,17,21,0.28);
  font-variant-numeric: tabular-nums;
  align-self: start;
  padding-top: 2px;
}

/* CTA chip — siyah "Siz yer alın" */
.ss-chip.ss-chip--cta {
  display: block;
  padding: 0;
  background: #0e0f12;
  color: #fafaf7;
}
.ss-chip.ss-chip--cta::before {
  background: #f8b414;
}
.ss-chip.ss-chip--cta:hover { background: #16181d; }
.ss-chip-link {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 20px;
  min-height: 96px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.ss-chip--cta .ss-chip-ic {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #f8b414;
}
.ss-chip--cta:hover .ss-chip-ic {
  border-color: rgba(248,180,20,0.65);
  background: rgba(248,180,20,0.12);
  color: #f8b414;
}
.ss-chip--cta .ss-chip-name {
  color: #fafaf7;
  font-weight: 600;
}
.ss-chip--cta .ss-chip-meta {
  color: rgba(250,250,247,0.58);
}
.ss-chip--cta .ss-chip-num {
  color: rgba(250,250,247,0.45);
  font-size: 14px;
  letter-spacing: 0;
  transition: transform .3s var(--ease, cubic-bezier(.2,.7,.2,1)), color .3s ease;
}
.ss-chip--cta:hover .ss-chip-num {
  color: #f8b414;
  transform: translate(2px, -2px);
}

/* Foot rule */
.ss-foot {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.ss-foot-line {
  flex: 1;
  height: 1px;
  background: rgba(15,17,21,0.10);
}
.ss-foot-text {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.005em;
}

@media (max-width: 1080px) {
  .ss-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .ss-grid { grid-template-columns: repeat(2, 1fr); }
  .ss-chip { min-height: 88px; padding: 20px 18px 18px; }
}
@media (max-width: 460px) {
  .ss-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   QUOTE DRAWER — sağdan açılan brief/teklif paneli
   ======================================================================== */
.quote-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 10, 14, 0.55);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  z-index: 1090;
  transition: opacity .35s ease;
}
.quote-overlay.is-open { opacity: 1; pointer-events: auto; }

.quote-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(520px, 100vw);
  background: var(--bg, #fafaf7);
  border-left: 1px solid var(--border, rgba(0,0,0,.08));
  box-shadow: -24px 0 60px -20px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
  z-index: 1100;
  overflow: hidden;
}
.quote-drawer.is-open { transform: translateX(0); }

/* HEAD */
.qd-head {
  padding: 28px 32px 22px;
  border-bottom: 1px solid var(--border, rgba(0,0,0,.06));
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), transparent),
    var(--bg-soft, #f3f3ee);
  flex-shrink: 0;
}
.qd-head-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.qd-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted, #6b6b66);
}
.qd-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
  animation: qd-pulse 2.4s ease-in-out infinite;
}
@keyframes qd-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(22,163,74,.05); }
}
.qd-close {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  border: 1px solid transparent;
  color: var(--text, #111);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.qd-close:hover { background: rgba(0,0,0,.08); border-color: var(--border, rgba(0,0,0,.1)); }
.qd-close:active { transform: scale(.94); }
.qd-title {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text, #111);
}
.qd-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted, #6b6b66);
  margin: 0;
  max-width: 42ch;
}

/* FORM */
.qd-form {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  scrollbar-width: thin;
}
.qd-form::-webkit-scrollbar { width: 8px; }
.qd-form::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 4px; }

.qd-section { display: flex; flex-direction: column; gap: 10px; }
.qd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.qd-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.qd-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted, #6b6b66);
}
.qd-label em {
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(107,107,102,.7);
  margin-left: 4px;
  font-size: 11px;
}

.qd-form input[type="text"],
.qd-form input[type="email"],
.qd-form input[type="tel"],
.qd-form textarea {
  width: 100%;
  font: inherit;
  font-size: 14px;
  color: var(--text, #111);
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.1));
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.qd-form textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.qd-form input:focus,
.qd-form textarea:focus {
  outline: none;
  border-color: var(--text, #111);
  box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}
.qd-form input::placeholder,
.qd-form textarea::placeholder { color: rgba(107,107,102,.55); }

/* CHIPS */
.qd-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.qd-chip {
  font: inherit;
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.12));
  color: var(--text, #111);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .15s;
}
.qd-chip:hover { border-color: rgba(0,0,0,.3); }
.qd-chip:active { transform: scale(.97); }
.qd-chip.is-active {
  background: var(--text, #111);
  border-color: var(--text, #111);
  color: var(--bg, #fafaf7);
}

/* CONSENT */
.qd-consent {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px;
  background: rgba(0,0,0,.025);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted, #6b6b66);
  cursor: pointer;
}
.qd-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px; height: 16px;
  accent-color: var(--text, #111);
  cursor: pointer;
  flex-shrink: 0;
}
.qd-consent strong {
  color: var(--text, #111);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* SUBMIT */
.qd-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  background: var(--text, #111);
  color: var(--bg, #fafaf7);
  border: 1px solid var(--text, #111);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s;
  margin-top: 2px;
}
.qd-submit:hover { background: #000; box-shadow: 0 8px 24px -8px rgba(0,0,0,.4); }
.qd-submit:active { transform: scale(.985); }
.qd-submit:disabled { opacity: .5; cursor: not-allowed; }
.qd-submit svg { transition: transform .25s ease; }
.qd-submit:hover svg { transform: translateX(3px); }

/* SUCCESS */
.qd-success {
  display: none;
  text-align: center;
  padding: 28px 12px 8px;
  animation: qd-fadeUp .4s ease both;
}
.qd-success.is-visible { display: block; }
.qd-success-ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(22,163,74,.12);
  color: #16a34a;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.qd-success h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text, #111);
}
.qd-success p {
  font-size: 13px;
  color: var(--text-muted, #6b6b66);
  margin: 0;
  line-height: 1.55;
}
.qd-success a {
  color: var(--text, #111);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@keyframes qd-fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FOOT */
.qd-foot {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 32px;
  border-top: 1px solid var(--border, rgba(0,0,0,.06));
  background: var(--bg-soft, #f3f3ee);
  flex-shrink: 0;
}
.qd-foot-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted, #6b6b66);
}
.qd-foot-item svg { opacity: .65; }

/* body scroll lock helper */
body.qd-locked { overflow: hidden; }

@media (max-width: 600px) {
  .quote-drawer { width: 100vw; border-left: 0; }
  .qd-head { padding: 22px 22px 18px; }
  .qd-form { padding: 20px 22px 24px; }
  .qd-foot { padding: 12px 22px; gap: 14px; }
  .qd-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE-DARK — Overlay (transparent dark) header
   kurumsal.html gibi koyu hero ile bütünleşik nav görünümü
   ============================================================ */

/* Nav-tone varyantları — her sayfanın navı kendi karakter rengini
   taşır. --nav-accent: vurgu (link/buton/aksent çizgi),
   --nav-bg / --nav-bg-scrolled: bandın koyu zemini. */
/* Nav-tone — tüm page-dark sayfalarda aynı koyu nav. Sadece
   --nav-accent (aktif link, buton hover, mega aksent çizgisi) değişebilir. */
body.page-dark {
  --nav-accent: #f8b414;
  --nav-bg: rgba(10, 10, 12, 0.78);
  --nav-bg-scrolled: rgba(8, 8, 10, 0.92);
  --foot-tint: #f8b414;
  --foot-tint-border: rgba(248, 180, 20, 0.55);
}
body.page-dark.nav-tone-teal   { --nav-accent: #2dd4bf; }
body.page-dark.nav-tone-violet { --nav-accent: #a78bfa; }

/* Topbar ile nav arasındaki ayrım çizgisini kaldır, devamlılık ver */
body.page-dark .topbar {
  border-bottom-color: rgba(255,255,255,0.04);
}

/* Nav — koyu cam efekti, tone'a göre zemin */
body.page-dark .nav {
  background: var(--nav-bg, rgba(10, 10, 12, 0.72));
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-bottom: 0;
  color: rgba(255,255,255,0.92);
}
body.page-dark .nav.scrolled {
  background: var(--nav-bg-scrolled, rgba(8, 8, 10, 0.88));
  border-bottom: 0;
}

/* Logo */
body.page-dark .nav .logo { color: #fff; }
body.page-dark .nav .logo svg { color: #fff; }

/* Nav linkleri — açık renk + accent altçizgi */
body.page-dark .nav-link {
  color: rgba(255,255,255,0.78);
}
body.page-dark .nav-link:hover {
  color: #fff;
}
body.page-dark .nav-link.is-active {
  color: var(--nav-accent, #f8b414);
}
body.page-dark .nav-chev { color: rgba(255,255,255,0.55); }

/* Sağdaki "Giriş yap" link-quiet */
body.page-dark .nav .link-quiet {
  color: rgba(255,255,255,0.72);
}
body.page-dark .nav .link-quiet:hover {
  color: #fff;
}

/* "Teklif al" butonu — koyu zeminde ters çevir (beyaz pill / siyah yazı) */
body.page-dark .nav .btn-primary {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
body.page-dark .nav .btn-primary:hover {
  background: var(--nav-accent, #f8b414);
  color: #0a0a0a;
  border-color: var(--nav-accent, #f8b414);
}

/* Burger ikon çubukları */
body.page-dark .nav-burger span {
  background: #fff;
}

/* Mega menü panelleri (varsa) zaten beyaz açılıyor — değiştirme; sadece tetikleyiciler invert */
body.page-dark .nav-item.has-mega.is-open .nav-link { color: #fff; }


/* ==========================================================================
   DOMAIN QUICK SEARCH — kompakt sorgulama (index)
   ========================================================================== */
.domain-quick { background: #fafaf7; }
.dq-wrap { max-width: 920px; margin: 0 auto; text-align: center; }
.dq-head { margin-bottom: 32px; }
.dq-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid rgba(15,17,21,0.12);
  border-radius: var(--r-pill);
  background: #fff;
  margin-bottom: 18px;
}
.dq-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.18);
}
.dq-title {
  font-family: inherit;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.dq-title em { font-style: italic; font-weight: 700; color: var(--accent); }
.dq-lede {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  max-width: 560px; margin: 0 auto;
}

/* Form */
.dq-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto 22px;
}
.dq-input-wrap {
  position: relative;
  display: flex; align-items: center;
  background: #fff;
  border: 1px solid rgba(15,17,21,0.14);
  border-radius: var(--r-sm);
  padding: 0 14px 0 44px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.dq-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.18);
}
.dq-input-ic {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(15,17,21,0.45);
}
.dq-input {
  flex: 1;
  border: 0; outline: 0; background: transparent;
  font: inherit;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 14px 4px;
  min-width: 0;
}
.dq-input::placeholder { color: rgba(15,17,21,0.35); }
.dq-input-tld {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  color: var(--muted);
  padding-left: 8px;
  border-left: 1px solid rgba(15,17,21,0.10);
  margin-left: 8px;
}
.dq-submit {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  padding: 0 22px;
  font-size: 14.5px;
}
.dq-submit svg { transition: transform .25s ease; }
.dq-submit:hover svg { transform: translateX(2px); }

/* Popüler TLD'ler */
.dq-tlds {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
}
.dq-tlds a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(15,17,21,0.10);
  border-radius: var(--r-pill);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12.5px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.dq-tlds a span {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.dq-tlds a:hover { border-color: var(--accent); background: rgba(248,180,20,0.05); }
.dq-tlds-more a {
  font-family: inherit;
  color: var(--muted);
  font-size: 12.5px;
  border-style: dashed;
}
.dq-tlds-more a:hover { color: var(--ink); border-color: var(--ink); background: #fff; }

@media (max-width: 640px) {
  .dq-form { grid-template-columns: 1fr; }
  .dq-submit { width: 100%; justify-content: center; padding: 14px; }
}

/* ==========================================================================
   HOSTING SUMMARY — kompakt paketler özeti (index)
   ========================================================================== */
.hosting-summary { background: #fff; }
.hs-head { max-width: 720px; margin: 0 0 44px; }
.hs-head-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; margin-bottom: 18px; flex-wrap: wrap;
}
.hs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid rgba(15,17,21,0.12);
  border-radius: var(--r-pill);
  background: #fff;
}
.hs-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(248,180,20,0.18);
}
.hs-head-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid rgba(15,17,21,0.18);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.hs-head-link:hover { color: var(--accent); border-color: var(--accent); }
.hs-head-link svg { transition: transform .25s ease; }
.hs-head-link:hover svg { transform: translate(2px, -2px); }
.hs-title {
  font-family: inherit;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.hs-title em { font-style: italic; font-weight: 700; color: var(--accent); }
.hs-lede { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 580px; margin: 0; }

/* Plan list */
.hs-plans {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hs-plan {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,17,21,0.10);
  border-radius: var(--r-md);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.hs-plan:hover {
  border-color: rgba(15,17,21,0.22);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -20px rgba(15,17,21,0.18);
}
.hs-plan-top { display: flex; align-items: center; gap: 12px; }
.hs-plan-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.hs-plan-name {
  font-family: inherit;
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.hs-plan-for { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0; min-height: 39px; }
.hs-plan-price {
  display: flex; align-items: baseline; gap: 2px;
  padding: 6px 0 4px;
  border-bottom: 1px solid rgba(15,17,21,0.08);
  margin-bottom: 4px;
}
.hs-plan-cur { font-size: 18px; font-weight: 600; color: var(--ink); }
.hs-plan-amt {
  font-size: 38px; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hs-plan-per { font-size: 13px; color: var(--muted); margin-left: 4px; }
.hs-plan-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hs-plan-list li {
  font-size: 13.5px; line-height: 1.45; color: var(--ink-2, var(--ink));
  padding-left: 18px; position: relative;
}
.hs-plan-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 10px; height: 6px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.hs-plan-list strong { font-weight: 600; }
.hs-plan-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(15,17,21,0.16);
  border-radius: var(--r-sm);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hs-plan-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.hs-plan-cta--solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.hs-plan-cta--solid:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

/* Featured plan */
.hs-plan--featured {
  background: #0e0f12;
  border-color: #0e0f12;
  color: #fff;
}
.hs-plan--featured .hs-plan-tag { color: rgba(255,255,255,0.5); }
.hs-plan--featured .hs-plan-name { color: #fff; }
.hs-plan--featured .hs-plan-for { color: rgba(255,255,255,0.62); }
.hs-plan--featured .hs-plan-cur,
.hs-plan--featured .hs-plan-amt { color: #fff; }
.hs-plan--featured .hs-plan-per { color: rgba(255,255,255,0.55); }
.hs-plan--featured .hs-plan-price { border-bottom-color: rgba(255,255,255,0.10); }
.hs-plan--featured .hs-plan-list li { color: rgba(255,255,255,0.88); }
.hs-plan--featured .hs-plan-cta { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.hs-plan--featured .hs-plan-cta:hover { background: #fff; border-color: #fff; }
.hs-plan-badge {
  position: absolute; top: -10px; right: 18px;
  background: var(--accent); color: #0a0a0a;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
}
.hs-plan--featured:hover { box-shadow: 0 22px 50px -22px rgba(15,17,21,0.55); }

/* Foot rule */
.hs-foot {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
}
.hs-foot-line { flex: 1; height: 1px; background: rgba(15,17,21,0.10); }
.hs-foot-text {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 880px) {
  .hs-plans { grid-template-columns: 1fr; }
  .hs-plan-for { min-height: 0; }
}
