/* TurkProxy.tr — Stylesheet */

:root {
  --c-bg: #ffffff;
  --c-bg-soft: #f6f8fb;
  --c-text: #0b1733;
  --c-text-muted: #5c6b8a;
  --c-border: #e6ebf4;
  --c-primary: #2563eb;
  --c-primary-dark: #1d4ed8;
  --c-primary-soft: #eaf1ff;
  --c-accent: #7c5cff;
  --c-purple-soft: #efeaff;
  --c-success: #10b981;
  --c-success-soft: #e6faf3;
  --c-warning: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(37, 99, 235, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --t: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: baseline;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700; font-size: 28px; letter-spacing: -0.045em;
  line-height: 1; text-decoration: none;
  background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 40%, #7c5cff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  transition: var(--t);
}
.logo:hover { filter: brightness(1.1) saturate(1.1); }
.logo-mark { display: none; }
.logo small {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--c-text-muted);
  font-weight: 500; font-size: 16px; margin-left: 1px;
  letter-spacing: -0.02em;
  background: none; -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: var(--c-text-muted);
}

.main-nav {
  display: flex; align-items: center; gap: 6px;
}
.main-nav a {
  position: relative;
  padding: 8px 14px; border-radius: 10px;
  font-weight: 500; font-size: 15px; color: var(--c-text);
  transition: var(--t);
}
.main-nav a:hover { background: var(--c-bg-soft); color: var(--c-primary); }
.main-nav .has-sub > a::after {
  content: ''; display: inline-block; margin-left: 6px;
  border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px);
}
.has-sub { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 380px; background: #fff; border: 1px solid var(--c-border);
  border-radius: 16px; box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: var(--t);
}
.has-sub:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-text-muted); padding: 10px 14px 8px; font-weight: 700; }
.dropdown a {
  display: flex; align-items: center; gap: 14px; padding: 10px 12px;
  border-radius: 10px; white-space: nowrap;
}
.dropdown a:hover { background: var(--c-bg-soft); }
.dropdown .ico {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--c-primary-soft); color: var(--c-primary); flex: none; font-size: 18px;
}
.dropdown .ico svg { width: 18px; height: 18px; }
.dropdown .label { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.dropdown .label b { font-size: 14px; font-weight: 600; line-height: 1.25; }
.dropdown .label span { font-size: 12px; color: var(--c-text-muted); line-height: 1.3; margin-top: 1px; }
.dropdown .price {
  margin-left: auto; font-size: 11px; padding: 4px 10px;
  background: var(--c-purple-soft); color: var(--c-accent); border-radius: 999px; font-weight: 700;
  white-space: nowrap; flex: none;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 12px;
  font-weight: 600; font-size: 14px;
  transition: var(--t); border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: 0 8px 20px rgba(37,99,235,0.25); }
.btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.btn-ghost { color: var(--c-text); border-color: var(--c-border); background: #fff; }
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb858; }

/* mobile nav */
.nav-toggle { display: none; padding: 8px; border-radius: 10px; border: 1px solid var(--c-border); background: #fff; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav, .nav-cta .btn-ghost { display: none; }
  .nav-wrap.open + .mobile-nav { display: block; }
}
.mobile-nav {
  display: none; background: #fff; border-bottom: 1px solid var(--c-border); padding: 12px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 4px; border-bottom: 1px solid var(--c-border); }
.mobile-nav a:last-child { border: none; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 90px;
  background:
    radial-gradient(700px 360px at 85% 15%, rgba(124,92,255,0.10), transparent 60%),
    radial-gradient(800px 400px at 10% 70%, rgba(37,99,235,0.08), transparent 60%),
    #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, #d8e1f0 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.4; pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: center;
  position: relative;
}
.kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--c-primary); text-transform: uppercase; margin-bottom: 18px;
}
.h1 {
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 800; margin-bottom: 18px;
}
.h1 .grad {
  background: linear-gradient(90deg, #2563eb, #7c5cff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--c-text-muted); font-size: 17px; max-width: 540px; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.trust { display: flex; align-items: center; gap: 14px; color: var(--c-text-muted); font-size: 14px; }
.stars { color: #00b67a; font-weight: 700; letter-spacing: 1px; }

.hero-features { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.hero-features li {
  list-style: none; display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--c-text);
}
.hero-features li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-success-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'><path d='M5 12l4 4 10-10'/></svg>") center/12px no-repeat;
}

/* Hero visual */
.hero-visual {
  position: relative; aspect-ratio: 1/1; max-width: 480px; margin-left: auto;
}
.hero-blob {
  position: absolute; inset: 10%;
  background: linear-gradient(135deg, #1e3a8a, #2563eb 60%, #7c5cff);
  border-radius: 38% 62% 55% 45% / 50% 45% 55% 50%;
  filter: blur(0px);
  box-shadow: 0 30px 80px rgba(37,99,235,0.30);
  animation: morph 12s ease-in-out infinite;
}
.hero-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(37,99,235,0.20));
}

/* World-map hero variant (uses external heroMap.svg) */
.hero-visual.hero-map {
  aspect-ratio: 681 / 472;
  max-width: none;
  width: 100%;
  position: relative;
  margin: 0;
}
.hero-visual.hero-map > img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-visual.hero-map .hero-chip { display: none; }
@keyframes morph {
  0%,100% { border-radius: 38% 62% 55% 45% / 50% 45% 55% 50%; }
  50% { border-radius: 55% 45% 38% 62% / 45% 55% 50% 50%; }
}
.hero-chip {
  position: absolute; background: #fff; border: 1px solid var(--c-border);
  border-radius: 14px; padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; box-shadow: var(--shadow-md);
}
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-success); box-shadow: 0 0 0 4px var(--c-success-soft); }
.hero-chip.c1 { top: 6%; left: -4%; }
.hero-chip.c2 { top: 38%; right: -8%; }
.hero-chip.c3 { bottom: 10%; left: 10%; }

/* ===== Section base ===== */
.section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .kicker { display: inline-block; }
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.02em; line-height: 1.15;
  margin: 8px 0 14px; font-weight: 800;
}
.section-head h2 .grad { background: linear-gradient(90deg, #2563eb, #7c5cff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p { color: var(--c-text-muted); font-size: 16px; }

/* Feature row (4 cards) */
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 26px; transition: var(--t);
}
.feature:hover { transform: translateY(-3px); border-color: #c8d4ee; box-shadow: var(--shadow-md); }
.feature .tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600;
  color: var(--c-text-muted); padding: 4px 10px; border-radius: 999px;
  background: var(--c-bg-soft); margin-bottom: 14px;
}
.feature .tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-primary); }
.feature .ficon { width: 52px; height: 52px; margin-bottom: 16px; display: block; }
.feature .ficon img { width: 100%; height: 100%; }
.feature h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.feature p { color: var(--c-text-muted); font-size: 14px; line-height: 1.55; }

/* Pricing */
.price-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 26px; display: flex; flex-direction: column;
  transition: var(--t);
}
.price-card:hover { box-shadow: var(--shadow-lg); border-color: #c8d4ee; }
.price-card.featured { border-color: var(--c-primary); box-shadow: var(--shadow-lg); }
.price-card .name { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.price-card .sub { color: var(--c-text-muted); font-size: 13px; margin: 4px 0 14px; }
.price-card .badge {
  display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 10px;
  background: var(--c-purple-soft); color: var(--c-accent); border-radius: 999px; margin-bottom: 12px;
}
.price-card .price { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.price-card .price small { font-size: 14px; color: var(--c-text-muted); font-weight: 500; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.price-card li {
  font-size: 14px; display: flex; align-items: center; gap: 10px; color: var(--c-text);
}
.price-card li::before {
  content: ''; flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-success-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'><path d='M5 12l4 4 10-10'/></svg>") center/12px no-repeat;
}
.price-card .buy { margin-top: auto; }

/* Game proxy hub grid */
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.game-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 20px 18px; display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: var(--t); position: relative; overflow: hidden;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.game-card .gc-badge {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(37,99,235,0.25);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.game-card .gc-name { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; line-height: 1.25; }
.game-card .gc-cat { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.game-card .gc-arrow {
  margin-top: 12px;
  font-size: 12px; font-weight: 700; color: var(--c-primary);
  padding: 4px 10px; background: var(--c-primary-soft); border-radius: 999px;
}
.game-card .gc-arrow::after { content: ' →'; }
.game-cat-filter {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px;
}
.game-cat-filter span {
  font-size: 13px; font-weight: 600; padding: 8px 14px;
  background: #fff; border: 1px solid var(--c-border); border-radius: 999px;
  color: var(--c-text);
}

/* Game color variants for badge */
.game-card.g-mmo .gc-badge { background: linear-gradient(135deg,#8b5cf6,#6366f1); }
.game-card.g-fps .gc-badge { background: linear-gradient(135deg,#ef4444,#f59e0b); }
.game-card.g-moba .gc-badge { background: linear-gradient(135deg,#06b6d4,#3b82f6); }
.game-card.g-br .gc-badge { background: linear-gradient(135deg,#10b981,#0ea5e9); }
.game-card.g-sandbox .gc-badge { background: linear-gradient(135deg,#f59e0b,#ec4899); }
.game-card.g-arpg .gc-badge { background: linear-gradient(135deg,#dc2626,#7c2d12); }
.game-card.g-rpg .gc-badge { background: linear-gradient(135deg,#7c5cff,#c026d3); }

@media (max-width: 900px) { .game-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .game-grid { grid-template-columns: repeat(2,1fr); } }

/* Alternating feature sections (home page) */
.feat-section { padding: 70px 0; }
.feat-section.alt { background: var(--c-bg-soft); }
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.feat-grid.reverse > :first-child { order: 2; }
.feat-grid.reverse > :nth-child(2) { order: 1; }
.feat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: var(--c-primary-soft); color: var(--c-primary);
  margin-bottom: 18px;
}
.feat-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-primary);
}
.feat-icon-box {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(37,99,235,0.28);
  color: #fff;
}
.feat-icon-box svg { width: 28px; height: 28px; }
.feat-h {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 18px;
}
.feat-h .grad { background: linear-gradient(90deg,#2563eb,#7c5cff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.feat-p {
  font-size: 15.5px; line-height: 1.85; color: #4a5878;
  margin-bottom: 14px;
}
.feat-p:last-of-type { margin-bottom: 22px; }
.feat-p strong { color: var(--c-text); font-weight: 700; }
.feat-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.feat-pills span {
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--c-border);
  font-size: 13px; font-weight: 600; color: var(--c-text);
  transition: var(--t);
}
.feat-pills span:hover { border-color: var(--c-primary); color: var(--c-primary); }
.feat-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.feat-checks li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: 12px; font-size: 14px; line-height: 1.5;
}
.feat-checks li::before {
  content: ''; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-success-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'><path d='M5 12l4 4 10-10'/></svg>") center/13px no-repeat;
}
.feat-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--c-primary); font-size: 15px;
  padding-bottom: 4px; border-bottom: 2px solid var(--c-primary);
  text-decoration: none; transition: var(--t);
}
.feat-link:hover { color: var(--c-primary-dark); gap: 12px; }
.feat-link::after { content: '→'; font-size: 18px; }

/* Visual side composition */
.feat-vis {
  position: relative; aspect-ratio: 1/0.9; max-width: 500px; margin: 0 auto;
  display: grid; place-items: center;
}
.feat-vis::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(37,99,235,0.10), transparent 65%);
  border-radius: 50%; z-index: 0;
}
.feat-vis-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 22px; padding: 28px 30px;
  box-shadow: 0 30px 70px rgba(15,23,42,0.10);
  border: 1px solid var(--c-border);
  min-width: 280px;
}
.feat-vis-card .vc-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.feat-vis-card .vc-head .vci {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--c-primary-soft); color: var(--c-primary);
  display: grid; place-items: center;
}
.feat-vis-card .vc-head .vci svg { width: 22px; height: 22px; }
.feat-vis-card .vc-head .vct b { display: block; font-weight: 700; font-size: 15px; }
.feat-vis-card .vc-head .vct span { font-size: 12px; color: var(--c-text-muted); }
.feat-vis-card .vc-head .vct span::before { content: '● '; color: var(--c-success); font-size: 8px; }
.feat-vis-card .vc-bar { height: 8px; background: var(--c-bg-soft); border-radius: 99px; overflow: hidden; margin: 14px 0 16px; }
.feat-vis-card .vc-bar > i { display: block; height: 100%; background: linear-gradient(90deg,#10b981,#2563eb); border-radius: 99px; }
.feat-vis-card .vc-bar-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--c-text-muted); font-weight: 600; }
.feat-vis-card .vc-bar-label b { color: var(--c-text); }
.feat-vis-card .vc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.feat-vis-card .vc-tags span {
  font-size: 12px; padding: 5px 10px; background: var(--c-bg-soft);
  border-radius: 8px; font-weight: 600; color: var(--c-text);
  display: inline-flex; align-items: center; gap: 5px;
}

/* Floating chips around the visual */
.feat-chip-fl {
  position: absolute; z-index: 2;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.10);
  border: 1px solid var(--c-border);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.feat-chip-fl .d { width: 8px; height: 8px; border-radius: 50%; background: var(--c-success); box-shadow: 0 0 0 4px var(--c-success-soft); }
.feat-chip-fl.tl { top: 8%; left: 0; }
.feat-chip-fl.tr { top: 5%; right: 0; }
.feat-chip-fl.bl { bottom: 8%; left: 5%; }
.feat-chip-fl.br { bottom: 10%; right: 0; }

/* Big infinity / number display */
.feat-bignum {
  font-size: 110px; font-weight: 800; letter-spacing: -0.06em;
  background: linear-gradient(135deg,#2563eb,#7c5cff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}

/* Trophy / star big icon */
.feat-trophy {
  width: 140px; height: 140px; border-radius: 24px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 30px 60px rgba(245,158,11,0.30);
}
.feat-trophy svg { width: 70px; height: 70px; }

/* Speedometer */
.feat-speed { position: relative; width: 220px; height: 220px; }
.feat-speed svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.feat-speed .sp-val {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.feat-speed .sp-val b { font-size: 36px; font-weight: 800; line-height: 1; color: var(--c-text); }
.feat-speed .sp-val span { font-size: 12px; color: var(--c-text-muted); margin-top: 4px; font-weight: 600; }

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid.reverse > :first-child { order: 0; }
  .feat-grid.reverse > :nth-child(2) { order: 0; }
}

/* SEO long-form content sections (product pages) */
.seo-content { padding: 80px 0; background: #fff; }
.seo-content .container { max-width: 920px; }
.seo-content .kicker { display: inline-block; margin-bottom: 14px; }
.seo-content h2 {
  font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.02em; line-height: 1.2;
  font-weight: 800; margin-bottom: 18px;
}
.seo-content h2 .grad { background: linear-gradient(90deg,#2563eb,#7c5cff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.seo-content h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  margin: 36px 0 12px; color: var(--c-text);
}
.seo-content p {
  font-size: 16px; line-height: 1.8; color: #2a3855;
  margin-bottom: 16px;
}
.seo-content p b, .seo-content p strong { font-weight: 700; color: var(--c-text); }
.seo-content ul, .seo-content ol { margin: 12px 0 22px 26px; }
.seo-content li { font-size: 16px; line-height: 1.75; color: #2a3855; margin-bottom: 8px; }
.seo-content blockquote {
  border-left: 4px solid var(--c-primary); padding: 14px 20px; margin: 24px 0;
  background: var(--c-primary-soft); border-radius: 10px; font-size: 16px;
  color: #1e3a8a; font-style: italic;
}
.seo-content .op-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 24px 0 32px;
}
.seo-content .op-card {
  background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: 12px;
  padding: 16px 18px; font-weight: 600; font-size: 14px; text-align: center;
  color: var(--c-text);
}
.seo-content .op-card span { display: block; font-size: 12px; font-weight: 500; color: var(--c-text-muted); margin-top: 2px; }
.seo-content .stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  background: linear-gradient(135deg, #f0f6ff, #f7f3ff);
  border: 1px solid var(--c-border); border-radius: 16px;
  padding: 24px; margin: 26px 0;
}
.seo-content .stat-strip .si { text-align: center; }
.seo-content .stat-strip .v { font-size: 24px; font-weight: 800; color: var(--c-primary); letter-spacing: -0.01em; }
.seo-content .stat-strip .l { font-size: 12px; color: var(--c-text-muted); margin-top: 4px; }
.seo-content .keyword-cloud {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px;
}
.seo-content .keyword-cloud span {
  background: var(--c-primary-soft); color: var(--c-primary);
  padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.seo-content .cta-inline {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
  padding: 24px; background: var(--c-bg-soft); border-radius: 14px;
  align-items: center; justify-content: space-between;
}
.seo-content .cta-inline .ci-txt b { font-size: 16px; }
.seo-content .cta-inline .ci-txt span { display: block; color: var(--c-text-muted); font-size: 14px; margin-top: 2px; }
@media (max-width: 768px) {
  .seo-content .op-grid { grid-template-columns: repeat(2,1fr); }
  .seo-content .stat-strip { grid-template-columns: repeat(2,1fr); }
}

/* Unlimited residential pricing cards */
.unl-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.unl-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: var(--t);
}
.unl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.unl-card.popular { border-color: var(--c-primary); box-shadow: var(--shadow-lg); }
.unl-card .period { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
.unl-card .sub-label { color: var(--c-text-muted); font-size: 13px; margin-bottom: 18px; }
.unl-card .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.unl-card .badge-disc {
  display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700;
  padding: 4px 10px; background: #fff1e6; color: #c2410c; border-radius: 999px; letter-spacing: 0.04em;
}
.unl-card .badge-pop {
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  background: var(--c-primary); color: #fff; border-radius: 999px; letter-spacing: 0.04em;
}
.unl-card .price-block {
  padding: 18px 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  margin-bottom: 20px;
}
.unl-card .total-label { font-size: 12px; color: var(--c-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.unl-card .price-now { font-size: 38px; font-weight: 800; color: var(--c-text); letter-spacing: -0.02em; line-height: 1; }
.unl-card .price-old { font-size: 16px; color: var(--c-text-muted); text-decoration: line-through; margin-top: 6px; }
.unl-card .per-unit { display: flex; align-items: baseline; gap: 6px; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--c-border); }
.unl-card .per-unit .pl { font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.unl-card .per-unit .pv { font-size: 16px; font-weight: 700; color: var(--c-primary); margin-left: auto; }
.unl-card .duration { font-size: 12px; color: var(--c-text-muted); padding: 3px 10px; background: var(--c-bg-soft); border-radius: 999px; font-weight: 600; }

/* Mobile-pro cards: tall, long feature list, monthly price */
.mob-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mob-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; position: relative;
  transition: var(--t);
}
.mob-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mob-card.featured-mob { border-color: var(--c-primary); box-shadow: var(--shadow-lg); }
.mob-card .mob-title {
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.25;
  min-height: 46px; display: flex; align-items: flex-start;
}
.mob-card .mob-sub {
  color: var(--c-text-muted); font-size: 13px; margin: 4px 0 18px;
  min-height: 34px; line-height: 1.4;
}
.mob-card .mob-price {
  display: flex; align-items: baseline; gap: 4px; padding: 16px 0;
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  margin-bottom: 18px;
}
.mob-card .mob-price .cur { font-size: 18px; font-weight: 700; color: var(--c-text-muted); }
.mob-card .mob-price .val { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.mob-card .mob-price .per { font-size: 13px; color: var(--c-text-muted); margin-left: 4px; }
.mob-card .mob-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; }
.mob-card .mob-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--c-text); line-height: 1.45; }
.mob-card .mob-feats li img { width: 16px; height: 16px; flex: none; margin-top: 1px; }
.mob-card .mob-btn {
  display: block; text-align: center; padding: 13px;
  border-radius: 12px; font-weight: 700; font-size: 14px;
  background: #e9efff; color: var(--c-primary); transition: var(--t); margin-top: auto;
}
.mob-card .mob-btn:hover { background: var(--c-primary); color: #fff; transform: translateY(-1px); }
.mob-card.featured-mob .mob-btn { background: var(--c-primary); color: #fff; }
.mob-card.featured-mob .mob-btn:hover { background: var(--c-primary-dark); }
@media (max-width: 1024px) { .mob-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .mob-row { grid-template-columns: 1fr; } }
.unl-card .stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px;
}
.unl-card .stat-mini {
  text-align: center; padding: 14px 8px; background: var(--c-bg-soft); border-radius: 12px;
}
.unl-card .stat-mini .v { font-size: 18px; font-weight: 800; color: var(--c-primary); line-height: 1; }
.unl-card .stat-mini .l { font-size: 11px; color: var(--c-text-muted); margin-top: 4px; }
.unl-card .feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 24px; flex: 1;
}
.unl-card .feature-list li {
  display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.unl-card .feature-list li img { width: 18px; height: 18px; flex: none; }
.unl-card .buy-btn {
  display: block; text-align: center; padding: 14px;
  border-radius: 12px; font-weight: 700; font-size: 14px;
  background: #e9efff; color: var(--c-primary); transition: var(--t);
}
.unl-card .buy-btn:hover { background: var(--c-primary); color: #fff; transform: translateY(-1px); }
.unl-card.popular .buy-btn { background: var(--c-primary); color: #fff; }
.unl-card.popular .buy-btn:hover { background: var(--c-primary-dark); }
.unl-row-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .unl-row-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) { .unl-row { grid-template-columns: 1fr; } .unl-row-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .unl-row-4 { grid-template-columns: 1fr; } }

/* Product comparison cards (home pricing block) — clean / minimal */
.product-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column;
  transition: var(--t);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c8d4ee; }
.product-card .pc-icon {
  width: 40px; height: 40px; margin-bottom: 18px; display: block;
}
.product-card .pc-icon img { width: 100%; height: 100%; }
.product-card h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px;
}
.product-card .pc-desc {
  color: var(--c-text-muted); font-size: 13.5px; line-height: 1.6;
  margin-bottom: 22px; min-height: 92px;
}
.product-card .pc-list {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 22px; flex: 1;
}
.product-card .pc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--c-text);
}
.product-card .pc-list li img {
  width: 18px; height: 18px; flex: none;
}
.product-card .pc-btn {
  margin-top: auto; display: block; text-align: center;
  padding: 13px 16px; border-radius: 12px;
  font-weight: 600; font-size: 14px;
  background: #e9efff; color: var(--c-primary);
  transition: var(--t);
}
.product-card .pc-btn:hover { background: var(--c-primary); color: #fff; transform: translateY(-1px); }
.product-card.featured-card { border-color: var(--c-primary); box-shadow: var(--shadow-lg); }
.product-card.featured-card .pc-btn { background: var(--c-primary); color: #fff; }
.product-card.featured-card .pc-btn:hover { background: var(--c-primary-dark); }

@media (max-width: 1024px) {
  .product-row { grid-template-columns: repeat(2, 1fr); }
  .product-card .pc-desc { min-height: auto; }
}
@media (max-width: 640px) {
  .product-row { grid-template-columns: 1fr; }
}

/* Locations / Map area */
.locations { background: var(--c-bg-soft); }
.loc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.loc {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 18px; text-align: center; transition: var(--t);
}
.loc:hover { transform: translateY(-2px); border-color: var(--c-primary); }
.loc .flag { font-size: 32px; line-height: 1; margin-bottom: 8px; }
.loc .name { font-weight: 600; font-size: 14px; }
.loc .ips { color: var(--c-text-muted); font-size: 12px; margin-top: 4px; }

/* Stats banner */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 30px; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #f8fafd);
}
.stat .v { font-size: 28px; font-weight: 800; color: var(--c-primary); letter-spacing: -0.01em; }
.stat .l { color: var(--c-text-muted); font-size: 13px; }

/* CTA banner */
.cta-banner {
  border-radius: 24px; padding: 50px 50px; color: #fff; position: relative; overflow: hidden;
  background: radial-gradient(800px 300px at 20% 30%, #3b82f6 0%, #1e40af 60%, #1e3a8a 100%);
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.cta-banner::after {
  content: ''; position: absolute; right: -10%; bottom: -40%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
}
.cta-banner h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.cta-banner p { opacity: 0.85; max-width: 520px; }
.cta-meta { display: flex; gap: 30px; margin-left: auto; align-items: center; }
.cta-meta .v { font-size: 22px; font-weight: 800; }
.cta-meta .l { font-size: 12px; opacity: 0.8; }

/* ===== Footer ===== */
.site-footer {
  background: var(--c-bg-soft); padding: 60px 0 24px; border-top: 1px solid var(--c-border);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.foot-brand p { color: var(--c-text-muted); font-size: 14px; margin-top: 14px; max-width: 320px; }
.foot-col h5 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.foot-col a { display: block; padding: 6px 0; color: var(--c-text-muted); font-size: 14px; }
.foot-col a:hover { color: var(--c-primary); }
.foot-bottom {
  border-top: 1px solid var(--c-border); padding-top: 20px; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: var(--c-text-muted); font-size: 13px;
}
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 34px; height: 34px; border-radius: 10px; background: #fff; border: 1px solid var(--c-border);
  display: grid; place-items: center; color: var(--c-text-muted);
}
.foot-social a:hover { color: var(--c-primary); border-color: var(--c-primary); }

/* WhatsApp FAB */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: var(--t);
}
.wa-fab:hover { transform: scale(1.05); }
.wa-fab svg { width: 30px; height: 30px; }

/* ===== Blog ===== */
.blog-hero { padding: 70px 0 50px; background: var(--c-bg-soft); border-bottom: 1px solid var(--c-border); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: var(--t);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-cover {
  height: 180px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #7c5cff);
}
.post-cover::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 16px 16px;
}
.post-cover .cat {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.95);
  color: var(--c-primary); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 12px; color: var(--c-text-muted); margin-bottom: 8px; }
.post-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.3; }
.post-body p { color: var(--c-text-muted); font-size: 14px; flex: 1; margin-bottom: 14px; }
.post-body .read { font-size: 14px; color: var(--c-primary); font-weight: 600; }
.post-body .read::after { content: ' →'; }

/* Article */
.article { padding: 60px 0; }
.article-head { max-width: 760px; margin: 0 auto 30px; }
.article-head .crumbs { color: var(--c-text-muted); font-size: 13px; margin-bottom: 12px; }
.article-head .crumbs a { color: var(--c-primary); }
.article-head h1 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; font-weight: 800; }
.article-head .meta { color: var(--c-text-muted); font-size: 14px; }
.article-cover {
  max-width: 900px; margin: 0 auto 40px; height: 320px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2563eb, #7c5cff); position: relative; overflow: hidden;
}
.article-cover::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
}
.article-body { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: #18243f; }
.article-body h2 { font-size: 26px; font-weight: 800; margin: 36px 0 14px; letter-spacing: -0.01em; }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--c-primary); padding: 8px 18px; color: var(--c-text-muted);
  background: var(--c-bg-soft); border-radius: 8px; margin: 20px 0;
}
.article-body code {
  background: var(--c-bg-soft); padding: 2px 6px; border-radius: 6px; font-size: 0.92em;
  font-family: 'JetBrains Mono', Menlo, Consolas, monospace;
}
.article-body a { color: var(--c-primary); text-decoration: underline; }
.related { padding: 60px 0; background: var(--c-bg-soft); border-top: 1px solid var(--c-border); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 30px;
}
.contact-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.contact-card .row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--c-border); }
.contact-card .row:last-child { border-bottom: none; }
.contact-card .row .ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--c-primary-soft);
  color: var(--c-primary); display: grid; place-items: center;
}
.contact-card .row .ico svg { width: 20px; height: 20px; }
.contact-card .row .info b { display: block; font-weight: 700; }
.contact-card .row .info span { color: var(--c-text-muted); font-size: 14px; }

form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
form label { font-size: 13px; font-weight: 600; }
form input, form textarea, form select {
  font: inherit; padding: 12px 14px; border: 1px solid var(--c-border); border-radius: 12px;
  background: #fff; transition: var(--t);
}
form input:focus, form textarea:focus, form select:focus {
  outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px var(--c-primary-soft);
}

/* Page intro (proxy detail pages) */
.page-intro {
  padding: 70px 0; background: var(--c-bg-soft); border-bottom: 1px solid var(--c-border);
}
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }

/* Responsive */
@media (max-width: 1024px) {
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .price-row { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .feature-row, .price-row, .loc-grid, .blog-grid, .foot-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 34px 22px; }
  .article-cover { height: 220px; }
}
