/* ============================================================
   MobileProxy.tr — Landing page
   ============================================================ */
:root {
  --black: #000000;
  --dark-main: #171717;
  --dark-card: #1d1d1d;
  --dark-card-inner: #222222;
  --dark-border: #343434;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --light-section: #fafafa;
  --light-border: #e3e3e3;
  --text-muted-dark: #9c9c9c;
  --text-muted-light: #6f6f6f;
  --success: #18c77a;
  --danger: #b63a43;
  --accent-blue: #2f7cff;
  --amber: #e8a33d;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'SF Mono', 'Cascadia Code', Consolas, 'Courier New', monospace;
  --container: 1200px;
  --radius-card: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { scroll-margin-top: 76px; }

/* ---------- shared type ---------- */
.section-title {
  font-size: clamp(34px, 4.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-align: center;
  color: var(--white);
}
.section-title.dark-text { color: #0c0c0c; }
.section-sub {
  text-align: center;
  color: var(--text-muted-dark);
  font-size: 15.5px;
  margin-top: 14px;
}
.section-sub.dark-sub { color: var(--text-muted-light); }

.kicker-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}
.kicker-line span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}
.kicker-line i {
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25));
}
.kicker-line i:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.25), transparent);
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.dot-green { background: var(--success); box-shadow: 0 0 6px rgba(24,199,122,0.8); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn-white { background: var(--white); color: #0a0a0a; }
.btn-white:hover { background: #e9e9e9; }
.btn-ghost { background: transparent; color: #d6d6d6; border-color: #3d3d3d; }
.btn-ghost:hover { border-color: #6a6a6a; color: var(--white); }
.btn-dark { background: #101010; color: var(--white); }
.btn-dark:hover { background: #2a2a2a; }
.btn-sm { padding: 9px 20px; font-size: 13.5px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; }
.brand-name { font-weight: 700; font-size: 15.5px; letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: #c9c9c9;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-login { font-size: 13.5px; font-weight: 500; color: #c9c9c9; transition: color 0.15s; }
.nav-login:hover { color: var(--white); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
}
.nav-burger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: #010101;
  padding-top: 158px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #141414;
  border: 1px solid #2b2b2b;
  color: #c9c9c9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.0;
}
.hero-sub {
  color: var(--text-muted-dark);
  font-size: 16px;
  margin-top: 20px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* --- animated SVG light waterfall --- */
.hero-light { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.beam-svg {
  position: absolute;
  top: 0;
  right: 10%;
  height: 62%;
  aspect-ratio: 640 / 900;
  opacity: 0.95;
}
.beam-svg .streak {
  opacity: 0;
  animation: streakFall var(--t, 8s) linear infinite;
  animation-delay: var(--de, 0s);
  will-change: transform, opacity;
}
@keyframes streakFall {
  0%   { transform: translateY(-340px); opacity: 0; }
  10%  { opacity: var(--o, 0.5); }
  72%  { opacity: var(--o, 0.5); }
  100% { transform: translateY(640px); opacity: 0; }
}
.beam-svg .pool {
  transform-box: fill-box;
  transform-origin: center;
}
.beam-svg .pool-main { animation: poolPulse 7s ease-in-out infinite; }
@keyframes poolPulse {
  0%, 100% { transform: scaleX(0.9); opacity: 0.7; }
  50%      { transform: scaleX(1.16); opacity: 1; }
}
.beam-svg .pool-left { animation: poolDriftL 9s ease-out infinite; opacity: 0; }
.beam-svg .pool-right { animation: poolDriftR 9s ease-out infinite; animation-delay: -4.5s; opacity: 0; }
@keyframes poolDriftL {
  0%   { transform: translateX(0); opacity: 0; }
  30%  { opacity: 0.55; }
  100% { transform: translateX(-150px); opacity: 0; }
}
@keyframes poolDriftR {
  0%   { transform: translateX(0); opacity: 0; }
  30%  { opacity: 0.55; }
  100% { transform: translateX(150px); opacity: 0; }
}

/* --- dashboard mockup --- */
.dash-wrap {
  margin-top: 64px;
  position: relative;
  z-index: 3;
}
.dash-frame {
  background: var(--white);
  border-radius: 14px 14px 0 0;
  height: 600px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 -10px 60px rgba(255,255,255,0.06);
  color: #1a1a1a;
}
.dash-browserbar {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid #ececec;
}
.traffic { display: flex; gap: 6px; }
.traffic i { width: 10px; height: 10px; border-radius: 50%; }
.t-red { background: #ff5f57; }
.t-yellow { background: #febc2e; }
.t-green { background: #28c840; }
.dash-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #f1f1f1;
  color: #7a7a7a;
  font-size: 11.5px;
  border-radius: 8px;
  padding: 5px 62px;
  white-space: nowrap;
}
.dash-body { display: flex; height: calc(100% - 44px); }

.dash-side {
  width: 198px;
  flex: 0 0 198px;
  background: #131313;
  color: #b9b9b9;
  padding: 16px 12px;
}
.dash-side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 6px 14px;
  border-bottom: 1px solid #262626;
}
.dash-side-brand strong { display: block; color: var(--white); font-size: 12px; letter-spacing: -0.01em; }
.dash-side-brand em { display: block; font-style: normal; font-size: 9.5px; color: #7c7c7c; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 12px; }
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  padding: 7px 8px;
  border-radius: 7px;
  color: #a0a0a0;
}
.dash-nav a.active { background: #232323; color: var(--white); }
.dash-nav-label {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  color: #6a6a6a;
  padding: 12px 8px 3px;
  font-weight: 600;
}

.dash-main {
  flex: 1;
  background: #f4f4f4;
  padding: 14px 18px;
  min-width: 0;
}
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a8a8a;
  margin-bottom: 12px;
}
.dash-top-right { display: inline-flex; align-items: center; gap: 12px; }
.dash-account {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 11px;
  color: #444;
  padding: 6px 12px;
}

.dash-card {
  background: var(--white);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 14px 16px;
}
.dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}
.dash-card-head span { display: inline-flex; align-items: center; gap: 6px; }
.dash-card-head svg { color: #b5b5b5; }
.dash-card-head svg.amber { color: var(--amber); }

.dash-grid-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
}
.dash-balance { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: #0d0d0d; }
.dash-addfunds {
  width: 100%;
  margin-top: 10px;
  background: #0d0d0d;
  color: var(--white);
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 0;
}
.dash-wallet-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 10px;
}
.dash-wallet-foot .warn { color: var(--amber); display: inline-flex; align-items: center; gap: 5px; }
.dash-wallet-foot .low { color: #8a8a8a; }
.dash-wallet-foot .low i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #ffefd6;
  color: var(--amber);
  font-size: 8px;
  margin-right: 3px;
}
.dash-ov-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #7a7a7a;
}
.dash-ov-row:last-child { border-bottom: 0; }
.dash-ov-row b { color: #1a1a1a; font-weight: 600; }
.dash-ov-row b em { font-style: normal; color: #9c9c9c; font-weight: 400; font-size: 10px; }
.dash-ov-row b.green { color: var(--success); }

.dash-grid-bottom {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.dash-chart-tabs { display: inline-flex; gap: 4px; }
.dash-chart-tabs i {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: #8a8a8a;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 3px 9px;
}
.dash-chart-tabs i.on { background: #111; color: var(--white); border-color: #111; }
.dash-chart-meta { display: flex; gap: 16px; font-size: 10px; color: #8a8a8a; margin-bottom: 4px; }
.dot-s { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 4px; }
.dot-s.dark { background: #3a3a3a; }
.dot-s.green { background: var(--success); }
.dash-area { width: 100%; height: 110px; }
.dash-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #b0b0b0;
  margin-top: 4px;
}
.dash-legend {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: #8a8a8a;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.dash-limit-note { font-size: 10.5px; color: var(--amber); margin-bottom: 12px; }
.dash-limit-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #555;
  margin-bottom: 6px;
}
.dash-limit-row b { color: var(--amber); }
.dash-limit-bar {
  height: 6px;
  background: #efefef;
  border-radius: 4px;
  overflow: hidden;
}
.dash-limit-bar i { display: block; height: 100%; background: var(--amber); border-radius: 4px; }
.dash-limit-sub {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: #9c9c9c;
  margin-top: 6px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { background: var(--white); color: #0c0c0c; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 34px;
  padding-bottom: 34px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.stat span {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a2b2b;
}
.stat:nth-child(1) span { color: #8a8a8a; }
.stat:nth-child(2) span { color: #a8894a; }
.stat:nth-child(3) span { color: #8a8a8a; }
.stat:nth-child(4) span { color: #a5573e; }

/* ============================================================
   FEATURES / BENTO
   ============================================================ */
.features {
  background: var(--dark-main);
  padding: 110px 0 120px;
}
.features .section-title { margin-bottom: 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.bcard {
  background: var(--dark-card);
  border: 1px solid #2e2e2e;
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}
.bcard:hover { border-color: #454545; }

.bhead { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.bicon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--dark-card-inner);
  border: 1px solid var(--dark-border);
  color: #cfcfcf;
}
.bhead h3 { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.bhead p { font-size: 12px; color: var(--text-muted-dark); margin-top: 2px; }

.b-protocol { grid-column: span 3; }
.b-bandwidth { grid-column: span 3; }
.b-analytics { grid-column: span 6; }
.b-global { grid-column: 1 / span 6; grid-row: 2 / span 2; min-height: 540px; position: relative; overflow: hidden; }
.b-rotation { grid-column: 7 / span 3; }
.b-crypto { grid-column: 10 / span 3; }
.b-anti { grid-column: 7 / span 6; }

/* protocol */
.proto-rows { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.proto-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-card-inner);
  border: 1px solid #2e2e2e;
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: #d9d9d9;
  cursor: pointer;
}
.proto-dot, .proto-switch {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0;
}
.proto-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #4b4b4b;
  transition: background 0.15s ease;
}
.proto-dot:checked { background: var(--white); }
.proto-switch {
  width: 34px;
  height: 19px;
  border-radius: 999px;
  background: radial-gradient(circle 6.5px at 9.5px 50%, #8c8c8c 97%, transparent), #3a3a3a;
  transition: background 0.15s ease;
}
.proto-switch:checked {
  background: radial-gradient(circle 6.5px at calc(100% - 9.5px) 50%, #111 97%, transparent), var(--white);
}

/* bandwidth */
.bw-panel {
  background: var(--dark-card-inner);
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 14px;
  margin-top: auto;
}
.bw-usage {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted-dark);
}
.bw-usage b { color: #e6e6e6; font-weight: 600; }
.bw-bar {
  height: 4px;
  border-radius: 3px;
  background: #383838;
  margin: 10px 0 12px;
  overflow: hidden;
}
.bw-bar i { display: block; height: 100%; background: #d9d9d9; border-radius: 3px; }
.bw-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bw-boxes div {
  background: #1a1a1a;
  border: 1px solid #303030;
  border-radius: 8px;
  padding: 9px 10px;
}
.bw-boxes span {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  font-weight: 600;
}
.bw-boxes b { font-size: 13px; font-family: var(--mono); font-weight: 600; color: #ececec; }

/* analytics */
.an-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 8px 14px 4px;
  min-height: 130px;
}
.an-chart i {
  flex: 1;
  height: var(--h);
  background: #3f3f3f;
  border-radius: 7px;
  min-height: 10px;
}
.an-chart i:nth-child(even) { background: #4a4a4a; }

/* globe */
.globe-stage { position: relative; flex: 1; }
.globe-info {
  position: absolute;
  top: 6px;
  left: 4px;
  z-index: 3;
  background: rgba(26,26,26,0.92);
  border: 1px solid #303030;
  border-radius: 12px;
  padding: 16px 18px;
  width: 190px;
}
.globe-info b { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.globe-info span { display: block; font-size: 10.5px; color: var(--text-muted-dark); margin: 2px 0 12px; }
.globe-info span:last-child { margin-bottom: 0; }
.globe-info .gi-real { display: flex; align-items: center; gap: 7px; font-size: 12.5px; }
.globe {
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 118%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #161616, #0b0b0b 55%, #050505 80%);
  box-shadow: inset -30px -40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.5);
  overflow: hidden;
}
.globe svg { width: 100%; height: 100%; display: block; }
#globeRot {
  animation: globeSpin 70s linear infinite;
  will-change: transform;
}
@keyframes globeSpin {
  to { transform: translateX(-600px); }
}
.g-sig {
  opacity: 0;
  animation: sigBlink 9s ease-in-out infinite;
  animation-delay: var(--sd, 0s);
}
@keyframes sigBlink {
  0%, 100% { opacity: 0; }
  10%      { opacity: 1; }
  40%      { opacity: 0.85; }
  55%      { opacity: 0; }
}

/* rotation */
.rot-space { flex: 1; min-height: 46px; }
.rot-generate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #454545;
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted-dark);
}
.rot-generate i {
  font-style: normal;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #454545;
  border-radius: 5px;
  font-size: 12px;
  color: #cfcfcf;
}

/* crypto */
.crypto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.crypto-grid div {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--dark-card-inner);
  border: 1px solid #2e2e2e;
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: #e0e0e0;
}
.crypto-grid i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #4b4b4b;
  border: 1px solid #5c5c5c;
}

/* anti-detection */
.anti-scheme {
  position: relative;
  flex: 1;
  background: #191919;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 34px 16px 18px;
  min-height: 190px;
  overflow: hidden;
}
.anti-tag {
  position: absolute;
  top: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.anti-in { left: 16px; color: #7c7c7c; }
.anti-clean { right: 16px; color: var(--success); }
.anti-line {
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 0;
  border-left: 1px dashed #3c3c3c;
}
.anti-shield {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #222;
  border: 1px solid #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6e6e6;
  z-index: 2;
}
.anti-rows { display: flex; flex-direction: column; gap: 7px; }
.anti-row { position: relative; height: 23px; }
.hchip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  border-radius: 5px;
  padding: 4px 12px;
  white-space: nowrap;
}
.anti-row .hchip {
  position: absolute;
  left: -16%;
  top: 0;
  opacity: 0;
  animation: headerFlow var(--d, 9s) linear infinite;
  animation-delay: var(--dl, 0s);
  will-change: left, opacity;
}
/* soldan sağa akış; sağ kenara yaklaşırken %70 → %40 → %10 filigran solması */
@keyframes headerFlow {
  0%   { left: -16%; opacity: 0; }
  5%   { opacity: 1; }
  62%  { opacity: 1; }
  70%  { opacity: 0.7; }
  73%  { opacity: 0.7; }
  81%  { opacity: 0.4; }
  84%  { opacity: 0.4; }
  92%  { opacity: 0.1; }
  95%  { opacity: 0.1; }
  100% { left: 88%; opacity: 0; }
}
.anti-shield { animation: shieldPulse 4.5s ease-in-out infinite; }
@keyframes shieldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.05); }
  50%      { box-shadow: 0 0 0 7px rgba(255,255,255,0.03); }
}
@media (prefers-reduced-motion: reduce) {
  .anti-row .hchip { position: static; opacity: 1; animation: none; }
  .anti-row:nth-child(1) .hchip { margin-left: 4%; }
  .anti-row:nth-child(2) .hchip { margin-left: 46%; }
  .anti-row:nth-child(3) .hchip { margin-left: 12%; }
  .anti-row:nth-child(4) .hchip { margin-left: 52%; }
  .anti-row:nth-child(5) .hchip { margin-left: 8%; }
  .anti-row:nth-child(6) .hchip { margin-left: 38%; }
}
.hchip.bad {
  background: rgba(182,58,67,0.28);
  border: 1px solid rgba(182,58,67,0.75);
  color: #e8b8bc;
}
.hchip.good {
  background: rgba(24,199,122,0.14);
  border: 1px solid rgba(24,199,122,0.55);
  color: #9fdfc2;
}

/* ============================================================
   SEAMLESS INTEGRATION
   ============================================================ */
.integration {
  position: relative;
  background: #f4f4f2;
  padding: 130px 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.tech-pattern {
  position: absolute;
  inset: -22% -12%;
  transform: rotate(-6deg);
  display: flex;
  flex-direction: column;
  gap: 22px;
  pointer-events: none;
}
.tp-row { display: flex; flex: 0 0 auto; }
.tp-track {
  display: flex;
  flex: 0 0 auto;
  animation: tpScroll var(--dur, 70s) linear infinite;
  will-change: transform;
}
.tp-track.rev { animation-direction: reverse; }
.tp-seq {
  display: flex;
  gap: 22px;
  padding-right: 22px;
  flex: 0 0 auto;
}
@keyframes tpScroll {
  to { transform: translateX(-50%); }
}
.tp-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid #e6e6e3;
  border-radius: 12px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #3c3c3c;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.tp-chip svg { width: 20px; height: 20px; }

.integration-panel {
  position: relative;
  z-index: 2;
  width: min(800px, 100%);
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 22px;
  padding: 58px 54px 50px;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.13),
    0 0 0 12px rgba(255,255,255,0.28);
  text-align: center;
}
.integration-panel .section-title { font-size: clamp(32px, 4vw, 44px); }

.terminal {
  margin-top: 34px;
  background: #0d0d0d;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  border: 1px solid #1f1f1f;
}
.terminal-tabs {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #232323;
  gap: 8px;
}
.terminal-tabs-scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.terminal-tabs-scroll::-webkit-scrollbar { display: none; }
.term-tab {
  background: none;
  border: 0;
  color: #9c9c9c;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.term-tab:hover { color: #d9d9d9; }
.term-tab.active { background: #2b2b2b; color: var(--white); }
.copy-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  color: #9c9c9c;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 7px;
  transition: color 0.15s ease;
  flex: 0 0 auto;
}
.copy-btn:hover { color: var(--white); }
.copy-btn.copied { color: var(--success); }
.terminal-code {
  padding: 20px 22px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: #3fdf8c;
  overflow-x: auto;
  min-height: 64px;
  margin: 0;
}
.terminal-code .dim { color: #6f6f6f; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  position: relative;
  background: #111111;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  padding: 110px 0 130px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 54px;
}
.how-steps { display: flex; flex-direction: column; gap: 16px; }
.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 20px 22px;
  color: var(--white);
  opacity: 0.5;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.step-card:hover { opacity: 0.75; }
.step-card.active {
  opacity: 1;
  background: #191919;
  border-color: rgba(255,255,255,0.16);
}
.step-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #232323;
  border: 1px solid #383838;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e6e6e6;
}
.step-card.active .step-icon { background: var(--white); color: #111; border-color: var(--white); }
.step-body { display: flex; flex-direction: column; }
.step-body em {
  font-style: normal;
  font-size: 11px;
  color: var(--text-muted-dark);
  margin-bottom: 3px;
}
.step-body strong { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.step-list {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.step-card.active .step-list { display: flex; }
.step-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #c9c9c9;
}
.check {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(24,199,122,0.16);
  border: 1px solid rgba(24,199,122,0.5);
  position: relative;
  flex: 0 0 auto;
}
.check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3.2px;
  width: 5px;
  height: 7px;
  border: solid var(--success);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(40deg);
}

/* stacked panels */
.how-stack {
  position: relative;
  min-height: 470px;
}
.stack-card {
  position: absolute;
  border-radius: 16px;
  background: #151515;
  border: 1px solid #2c2c2c;
}
.stack-back2 {
  width: 330px;
  height: 380px;
  right: 42px;
  top: 16px;
  opacity: 0.32;
  background: #131313;
}
.stack-back1 {
  width: 340px;
  height: 400px;
  right: 74px;
  top: 46px;
  opacity: 0.6;
  background: #141414;
  padding: 22px;
}
.stack-ghost-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.stack-ghost-icon { width: 30px; height: 30px; border-radius: 50%; background: #232323; flex: 0 0 auto; }
.stack-ghost-line { height: 9px; border-radius: 5px; background: #262626; flex: 1; }
.stack-ghost-line.short { flex: 0 0 55%; }
.stack-ghost-toggle {
  display: block;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle 8px at calc(100% - 11px) 50%, #f0f0f0 97%, transparent), #2e2e2e;
  margin: 26px 0 0 auto;
}
.stack-front {
  width: 360px;
  right: 110px;
  top: 82px;
  z-index: 3;
  padding: 18px;
  background: #161616;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}
.stack-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.stack-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--success);
}
.stack-meta { font-size: 11.5px; color: var(--text-muted-dark); }
.stack-meta b { color: #d9d9d9; font-weight: 600; }
.stack-term {
  background: #0c0c0c;
  border: 1px solid #242424;
  border-radius: 10px;
  padding: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.75;
  color: #c9c9c9;
  white-space: pre;
  overflow-x: auto;
}
.stack-term code { font-family: inherit; }
.stack-term .k { color: #8ab8ff; }
.stack-term .v { color: #3fdf8c; }
.stack-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.stack-stats div {
  background: #1d1d1d;
  border: 1px solid #2c2c2c;
  border-radius: 9px;
  text-align: center;
  padding: 10px 4px;
}
.stack-stats b { display: block; font-size: 14px; font-weight: 700; }
.stack-stats span { font-size: 9.5px; color: var(--text-muted-dark); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: #fcfcfb;
  padding: 110px 0 120px;
  color: #0c0c0c;
}
.kicker-dark i { background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2)); }
.kicker-dark i:last-child { background: linear-gradient(90deg, rgba(0,0,0,0.2), transparent); }
.kicker-dark span { color: #8a8a8a; }

/* --- kontrol paneli --- */
.pricing-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: #101010;
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 12px 16px;
  margin: 44px 0 34px;
  color: var(--white);
}
.pp-tabs {
  display: flex;
  gap: 4px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 11px;
  padding: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pp-tabs::-webkit-scrollbar { display: none; }
.pp-tab {
  background: none;
  border: 0;
  color: #9c9c9c;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.pp-tab:hover { color: var(--white); }
.pp-tab.active { background: var(--white); color: #0c0c0c; }
.pp-tab:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 2px; }
.pp-count { margin-left: auto; font-size: 12.5px; color: #9c9c9c; white-space: nowrap; }

/* --- Türkiye kartları --- */
.tk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.pk-card:hover {
  transform: translateY(-2px);
  border-color: #c9c9c9;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.pk-card.popular {
  background: #131313;
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}
.pk-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: #0c0c0c;
  border: 1px solid #d9d9d9;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.pk-head h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media (min-width: 561px) {
  .pk-head h3 { min-height: 50px; }
}
.pk-meta { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pk-chip {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid #e2e2e2;
  color: var(--text-muted-light);
}
.pk-card.popular .pk-chip { border-color: #3a3a3a; color: #b9b9b9; }
.pk-chip.tier-kurumsal { background: #0c0c0c; color: var(--white); border-color: #0c0c0c; }
.pk-card.popular .pk-chip.tier-kurumsal { background: var(--white); color: #0c0c0c; border-color: var(--white); }
.pk-price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pk-price b { font-size: 42px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.pk-price span { font-size: 13px; color: var(--text-muted-light); font-weight: 500; }
.pk-card.popular .pk-price span { color: var(--text-muted-dark); }
.pk-pergb { font-size: 12.5px; color: var(--text-muted-light); min-height: 19px; }
.pk-card.popular .pk-pergb { color: var(--text-muted-dark); }
.pk-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 16px 0 22px;
  padding-top: 16px;
  border-top: 1px solid #efefef;
  flex: 1;
}
.pk-card.popular .pk-feats { border-top-color: #2a2a2a; }
.pk-feats li { display: flex; gap: 9px; align-items: center; font-size: 13px; color: #3c3c3c; }
.pk-card.popular .pk-feats li { color: #c9c9c9; }
.pk-feats svg { color: #8f8f8f; flex: 0 0 auto; }
.pk-card.popular .pk-feats svg { color: #7c7c7c; }
.pk-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.pk-more {
  background: none;
  border: 1px solid #e2e2e2;
  color: var(--text-muted-light);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 0;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.pk-more:hover { color: #0c0c0c; border-color: #b9b9b9; }
.pk-card.popular .pk-more { border-color: #3a3a3a; color: #b9b9b9; }
.pk-card.popular .pk-more:hover { color: var(--white); border-color: #6a6a6a; }

/* --- global ülke seçici --- */
.global-wrap {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  align-items: start;
}
.g-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 12px 16px;
  color: #8a8a8a;
  margin-bottom: 16px;
  cursor: text;
}
.g-search input {
  border: 0;
  outline: none;
  flex: 1;
  font: inherit;
  font-size: 14px;
  color: #0c0c0c;
  background: none;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.c-card {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 16px 12px 14px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.c-card:hover { border-color: #c0c0c0; transform: translateY(-1px); }
.c-card.sel { border-color: #0c0c0c; box-shadow: 0 0 0 1px #0c0c0c; }
.c-flag {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 9px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.07);
}
.c-flag svg { width: 100%; height: 100%; display: block; }
.c-card b { display: block; font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.c-price { display: block; font-size: 11.5px; color: var(--text-muted-light); margin-top: 2px; }
.c-tags { display: flex; justify-content: center; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.c-tag {
  font-size: 9px;
  color: var(--text-muted-light);
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 2px 7px;
  white-space: nowrap;
}
.c-btn {
  display: block;
  margin-top: 10px;
  border: 1px solid #e2e2e2;
  background: #fafafa;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 0;
  color: #0c0c0c;
}
.c-card.sel .c-btn { background: #0c0c0c; color: var(--white); border-color: #0c0c0c; }
.g-empty {
  background: var(--white);
  border: 1px dashed #d9d9d9;
  border-radius: 14px;
  text-align: center;
  padding: 40px 20px;
}
.g-empty b { font-size: 15px; font-weight: 700; }
.g-empty p { font-size: 13px; color: var(--text-muted-light); margin-top: 6px; }

.global-detail {
  position: sticky;
  top: 90px;
  background: #131313;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 26px;
  color: var(--white);
}
.gd-head { display: flex; align-items: center; gap: 12px; }
.gd-head .c-flag { margin: 0; width: 38px; height: 38px; }
.gd-head h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.gd-head span { display: block; font-size: 11.5px; color: var(--text-muted-dark); margin-top: 2px; }
.gd-price { margin: 18px 0 14px; display: flex; align-items: baseline; gap: 8px; }
.gd-price b { font-size: 38px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.gd-price span { font-size: 13px; color: var(--text-muted-dark); }
.gd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #2a2a2a;
}
.gd-list li { display: flex; gap: 9px; align-items: center; font-size: 13px; color: #c9c9c9; }
.gd-list svg { color: #7c7c7c; flex: 0 0 auto; }
.gd-ops { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.gd-op {
  font-size: 11.5px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  padding: 4px 11px;
  color: #c9c9c9;
  font-weight: 500;
}
.gd-buy { width: 100%; margin-top: 20px; }

/* --- özel paket CTA --- */
.custom-cta {
  margin-top: 56px;
  background: #141414;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  border: 1px solid #262626;
  border-radius: 20px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  color: var(--white);
}
.cta-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  font-weight: 600;
}
.custom-cta h3 { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin-top: 12px; }
.cta-strong { font-size: 15px; color: #e6e6e6; margin-top: 8px; font-weight: 600; }
.cta-desc { font-size: 13.5px; color: var(--text-muted-dark); margin-top: 12px; line-height: 1.65; max-width: 430px; }
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.cta-list li { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: #c9c9c9; }
.cta-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.cta-mail { font-size: 13px; color: var(--text-muted-dark); text-decoration: underline; }
.cta-mail:hover { color: var(--white); }

/* --- paket detay modalı --- */
.pkg-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pkg-modal[hidden] { display: none; }
.pm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.pm-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(700px, 90vh);
  background: var(--white);
  color: #0c0c0c;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  outline: none;
}
.pm-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid #ececec;
}
.pm-headtxt { flex: 1; min-width: 0; }
.pm-head h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.pm-sub { font-size: 12px; color: var(--text-muted-light); }
.pm-price { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; white-space: nowrap; }
.pm-close {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 9px;
  border: 1px solid #e2e2e2;
  background: var(--white);
  color: var(--text-muted-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.pm-close:hover { color: #0c0c0c; border-color: #b9b9b9; }
.pm-body { padding: 20px 24px; overflow-y: auto; }
.pm-sec { margin-bottom: 20px; }
.pm-sec:last-child { margin-bottom: 0; }
.pm-sec h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a8a;
  font-weight: 700;
  margin-bottom: 10px;
}
.pm-sec ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pm-sec li { display: flex; gap: 9px; align-items: center; font-size: 13.5px; color: #3c3c3c; }
.pm-sec li svg { color: #8f8f8f; flex: 0 0 auto; }
.pm-ops { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-op {
  font-size: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  padding: 5px 12px;
  color: #3c3c3c;
  font-weight: 500;
}
.pm-desc { font-size: 13.5px; color: var(--text-muted-light); line-height: 1.65; }
.pm-foot { padding: 16px 24px; border-top: 1px solid #ececec; }
.pm-foot .btn { width: 100%; }

/* --- pricing responsive --- */
@media (max-width: 1240px) {
  .country-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .tk-grid { grid-template-columns: repeat(2, 1fr); }
  .global-wrap { grid-template-columns: 1fr; }
  .global-detail { position: static; }
}
@media (max-width: 768px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-panel { padding: 12px; }
  .pp-count { width: 100%; margin-left: 2px; order: 3; }
}
@media (max-width: 560px) {
  .tk-grid { grid-template-columns: 1fr; }
  .custom-cta { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .cta-actions .btn { width: 100%; }
  .pkg-modal { padding: 0; }
  .pm-panel { width: 100%; height: 100%; max-height: none; border-radius: 0; }
}

/* ============================================================
   USE CASES
   ============================================================ */
.usecases {
  position: relative;
  background: #151515;
  padding: 110px 0 120px;
  overflow: hidden;
}
.uc-lines { position: absolute; inset: 0; pointer-events: none; }
.uc-lines i {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,86,226,0.35) 40%, rgba(120,80,255,0.22) 70%, transparent);
}
.uc-lines i:nth-child(1) { top: 24%; transform: rotate(-4deg); }
.uc-lines i:nth-child(2) { top: 55%; transform: rotate(-3deg); opacity: 0.7; }
.uc-lines i:nth-child(3) { top: 82%; transform: rotate(-5deg); opacity: 0.5; }

.uc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.uc-cell {
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.uc-cell:nth-child(4n) { border-right: 0; }
.uc-cell:nth-child(n+13) { border-bottom: 0; }
.uc-ico {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #454545;
  position: relative;
  margin-bottom: 14px;
}
.uc-ico::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #8a8a8a;
}
.uc-cell h3 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.uc-cell p { font-size: 12px; color: var(--text-muted-dark); margin-top: 5px; line-height: 1.55; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  background: var(--light-section);
  padding: 100px 0 110px;
  color: #0c0c0c;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 22px 14px 20px;
  text-align: center;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.loc-card:hover { border-color: #c9c9c9; transform: translateY(-1px); }
.loc-flag {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.loc-flag svg { width: 100%; height: 100%; }
.loc-card b { display: block; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.loc-card span { display: block; font-size: 11.5px; color: var(--text-muted-light); margin-top: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #030303; }
.footer-hero {
  text-align: center;
  padding: 96px 24px 10px;
  position: relative;
}
.footer-brand-big {
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.045em;
}
.footer-glow {
  position: relative;
  width: min(560px, 84%);
  height: 84px;
  margin: 2px auto 0;
  background:
    radial-gradient(ellipse 46% 14% at 50% 4%, rgba(120,170,255,0.9), rgba(47,124,255,0.35) 55%, transparent 78%),
    radial-gradient(circle 1px at 12% 40%, rgba(255,255,255,0.75) 98%, transparent),
    radial-gradient(circle 1px at 24% 66%, rgba(255,255,255,0.45) 98%, transparent),
    radial-gradient(circle 1.3px at 37% 30%, rgba(255,255,255,0.85) 98%, transparent),
    radial-gradient(circle 1px at 49% 72%, rgba(255,255,255,0.5) 98%, transparent),
    radial-gradient(circle 1.2px at 60% 44%, rgba(255,255,255,0.8) 98%, transparent),
    radial-gradient(circle 1px at 73% 64%, rgba(255,255,255,0.5) 98%, transparent),
    radial-gradient(circle 1.2px at 86% 36%, rgba(255,255,255,0.7) 98%, transparent);
}
.footer-glow::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 14%;
  right: 14%;
  height: 2px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(150,190,255,0.9) 30%, rgba(150,190,255,0.9) 70%, transparent);
  filter: blur(1px);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  padding-top: 40px;
  padding-bottom: 90px;
}
.footer-talk h3, .footer-infra h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-talk > p, .footer-infra > p {
  color: var(--text-muted-dark);
  font-size: 13.5px;
  margin-top: 8px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.talk-row { display: flex; gap: 14px; margin-bottom: 20px; }
.talk-ico {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid #282828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d9d9d9;
}
.talk-row b { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }
.talk-row a, .talk-row span {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.talk-row a:hover { color: var(--white); }
.talk-badges { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.talk-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #b9b9b9;
  border: 1px solid #262626;
  background: #101010;
  border-radius: 999px;
  padding: 6px 13px;
}

.infra-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.infra-card {
  background: #101010;
  border: 1px solid #242424;
  border-radius: 12px;
  padding: 18px 10px 14px;
  text-align: center;
}
.infra-card > span:last-child { display: block; font-size: 11.5px; color: #b9b9b9; margin-top: 9px; }
.infra-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  font-weight: 800;
}
.infra-logo.hetzner {
  width: 26px;
  background: #d50c2d;
  color: var(--white);
  border-radius: 6px;
  font-size: 15px;
}
.infra-logo.aws { color: #ff9900; font-size: 16px; letter-spacing: -0.03em; font-style: italic; }
.infra-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.infra-stats div { text-align: center; }
.infra-stats b { display: block; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.infra-stats span { font-size: 10px; color: var(--text-muted-dark); letter-spacing: 0.06em; text-transform: uppercase; }

.footer-links {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid #191919;
  padding-top: 54px;
  padding-bottom: 54px;
}
.footer-about p { color: var(--text-muted-dark); font-size: 12.5px; margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col b { font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.footer-col a { font-size: 12.5px; color: #8f9bb3; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #191919;
  padding-top: 24px;
  padding-bottom: 28px;
  font-size: 12px;
  color: var(--text-muted-light);
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #242424;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9c9c9c;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { color: var(--white); border-color: #454545; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1240px) {
  .globe { right: -20%; bottom: -24%; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 68px 0 auto 0;
    transform: none;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    padding: 8px 0 12px;
    z-index: 60;
  }
  .nav-links.open a { width: 100%; padding: 13px 26px; font-size: 15px; }
  .nav-burger { display: flex; }
  .nav-actions .nav-login { display: none; }

  .how-grid { grid-template-columns: 1fr; gap: 60px; }
  .how-stack { max-width: 520px; margin: 0 auto; width: 100%; }
  .b-analytics { grid-column: span 6; }
  .b-protocol, .b-bandwidth { grid-column: span 3; }
  .dash-frame { height: 520px; }
}

@media (max-width: 860px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .b-protocol, .b-bandwidth { grid-column: span 3; }
  .b-analytics { grid-column: span 6; }
  .b-global { grid-column: span 6; grid-row: auto; min-height: 440px; }
  .b-rotation { grid-column: span 3; }
  .b-crypto { grid-column: span 3; }
  .b-anti { grid-column: span 6; }

  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-cell:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.07); }
  .uc-cell:nth-child(2n) { border-right: 0; }
  .uc-cell:nth-child(n+13) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .uc-cell:nth-child(n+15) { border-bottom: 0; }

  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr; gap: 60px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .dash-side { display: none; }
  .dash-frame { height: 480px; }
}

@media (max-width: 560px) {
  .hero { padding-top: 128px; }
  .hero-title { font-size: 44px; }
  .beam-svg { right: -22%; height: 88%; opacity: 0.8; }
  .hero-cta { flex-direction: column; align-items: center; }
  .dash-frame { height: 420px; }
  .dash-grid-top, .dash-grid-bottom { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat strong { font-size: 26px; }

  .bento { grid-template-columns: 1fr; }
  .b-protocol, .b-bandwidth, .b-analytics, .b-global, .b-rotation, .b-crypto, .b-anti { grid-column: span 1; }
  .b-global { min-height: 400px; }

  .integration { padding: 90px 16px; }
  .integration-panel { padding: 40px 22px 32px; }
  .uc-grid { grid-template-columns: 1fr; }
  .uc-cell { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.07) !important; }
  .uc-cell:last-child { border-bottom: 0 !important; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .stack-front { position: relative; right: auto; top: auto; width: 100%; }
  .stack-back1, .stack-back2 { display: none; }
  .how-stack { min-height: 0; }
}

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
