/* ============ Metin2ProxyTR — Professional CSS ============ */

/* ====== CSS Variables — Light Mode (default) ====== */
:root {
  --bg:           #fafafa;
  --bg-alt:       #ffffff;
  --bg-card:      #ffffff;
  --bg-elev:      #f5f5f5;
  --border:       #e5e7eb;
  --border-soft:  #f1f5f9;
  --text:         #1f2937;
  --text-soft:    #6b7280;
  --text-muted:   #9ca3af;
  --heading:      #111827;

  --primary:      #c8102e;      /* Metin2 red */
  --primary-2:    #9b0e23;
  --primary-soft: #fef2f2;
  --gold:         #f5b942;
  --gold-2:       #d97706;
  --success:      #10b981;
  --info:         #3b82f6;
  --warn:         #f59e0b;
  --danger:       #dc2626;

  --shadow-sm:    0 2px 6px rgba(0,0,0,.05);
  --shadow:       0 8px 24px rgba(0,0,0,.06);
  --shadow-lg:    0 30px 70px -25px rgba(200,16,46,.18);
  --shadow-card:  0 1px 3px rgba(0,0,0,.03), 0 4px 12px rgba(0,0,0,.04);

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --font-sans:    'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --font-display: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --grad-primary: linear-gradient(135deg, #c8102e 0%, #9b0e23 100%);
  --grad-gold:    linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --grad-text:    linear-gradient(90deg, #c8102e, #f5b942, #c8102e);
  --grad-hero:    radial-gradient(800px 500px at 50% -10%, rgba(245,185,66,.18), transparent 60%),
                  radial-gradient(700px 400px at 20% 30%, rgba(200,16,46,.10), transparent 60%),
                  linear-gradient(180deg, #ffffff 0%, #fff7ed 60%, #ffffff 100%);
}

/* ====== Dark Mode ====== */
[data-theme="dark"] {
  --bg:           #0a0710;
  --bg-alt:       #110817;
  --bg-card:      #1a0e22;
  --bg-elev:      #21142a;
  --border:       #2a1a36;
  --border-soft:  #1f1428;
  --text:         #e5e7eb;
  --text-soft:    #9ca3af;
  --text-muted:   #6b7280;
  --heading:      #f5f3ff;

  --primary-soft: rgba(200,16,46,.12);

  --shadow-card:  0 1px 3px rgba(0,0,0,.3), 0 4px 12px rgba(0,0,0,.25);
  --shadow-lg:    0 30px 70px -25px rgba(200,16,46,.4);

  --grad-hero:    radial-gradient(800px 500px at 50% -10%, rgba(245,185,66,.18), transparent 60%),
                  radial-gradient(700px 400px at 20% 30%, rgba(200,16,46,.20), transparent 60%),
                  linear-gradient(180deg, #0a0710 0%, #1a0e22 60%, #0a0710 100%);
}

/* ====== Reset ====== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color .3s, color .3s;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-2); }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ====== Layout ====== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 820px; }
.section { padding: 70px 0; position: relative; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
[data-theme="dark"] .section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head.sm { margin-bottom: 32px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  margin: 14px 0 12px;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-head.sm h2 { font-size: clamp(22px, 3vw, 32px); }
.section-head p { color: var(--text-soft); font-size: 15px; }

/* ====== Topbar ====== */
.topbar {
  background: var(--grad-primary);
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: underline; font-weight: 600; }
.topbar a:hover { color: #fef3c7; }

/* ====== Header ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .3s;
}
[data-theme="dark"] .header { background: rgba(10,7,16,0.92); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
}
.logo:hover { color: var(--heading); }
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(200,16,46,.25);
}
.logo-text { line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--heading);
}
.logo-name .accent { color: var(--primary); }
.logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav-main { display: none; gap: 28px; }
@media (min-width: 980px) { .nav-main { display: flex; } }
.nav-main a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 14px;
  transition: color .15s;
}
.nav-main a:hover { color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.theme-btn:hover { background: var(--primary-soft); color: var(--primary); border-color: var(--primary); }

.whatsapp-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #25d366, #128c7e);
  color: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
@media (min-width: 768px) { .whatsapp-btn { display: inline-flex; } }
.whatsapp-btn:hover { color: #fff; transform: translateY(-1px); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(200,16,46,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(200,16,46,.5); color: #fff; }
.btn-gold {
  background: var(--grad-gold);
  color: #1a0f00;
  box-shadow: 0 8px 20px -6px rgba(245,185,66,.4);
}
.btn-gold:hover { transform: translateY(-2px); color: #1a0f00; }
.btn-dark {
  background: var(--heading);
  color: var(--bg);
  border: 1px solid var(--heading);
}
.btn-dark:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: var(--bg-card);
  color: var(--heading);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-whatsapp {
  background: linear-gradient(180deg, #25d366, #128c7e);
  color: #fff;
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-1px); }

/* ====== Hero ====== */
.hero {
  background: var(--grad-hero);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 50px;
  align-items: center;
  position: relative;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: var(--shadow-sm);
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  margin: 18px 0 20px;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.gradient-text {
  background: var(--grad-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-desc {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-chips {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.chip i { color: var(--primary); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
.visual-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245,185,66,.3), transparent 60%);
  border-radius: 50%;
  filter: blur(30px);
}
.dragon-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
}
.dragon-img {
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #c8102e 0%, #1a0710 100%);
  padding: 28px;
}
.dragon-fallback {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--grad-primary);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
}
.big-dragon { font-size: 80px; margin-bottom: 8px; opacity: .9; }
.dragon-title { font-size: 36px; font-weight: 700; letter-spacing: 0.1em; }
.dragon-sub { font-size: 14px; letter-spacing: 0.3em; opacity: .8; margin-top: 4px; }

.dragon-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f00;
}
.meta-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.meta-value { font-size: 13px; font-weight: 700; color: var(--heading); margin-top: 2px; }
.online-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(16,185,129,.12);
  color: var(--success);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.online-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

.float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  display: none;
}
@media (min-width: 768px) { .float-badge { display: block; } }
.float-badge.top-left { top: -16px; left: -16px; }
.float-badge.bottom-right { bottom: -16px; right: -16px; }
.fb-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 700; }
.fb-value { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--heading); margin-top: 2px; }
.fb-value.accent { color: var(--primary); }

/* ====== Stats ====== */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--heading);
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 4px;
}

/* ====== Proxy Check Card ====== */
.proxy-check-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.pc-statusbar {
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #fff;
  transition: background .3s;
}
.pc-success { background: linear-gradient(90deg, #10b981, #059669); }
.pc-loading { background: linear-gradient(90deg, #f59e0b, #d97706); }
.pc-status-left { display: flex; align-items: center; gap: 10px; }
.pulse {
  position: relative;
  width: 8px;
  height: 8px;
}
.pulse span:first-child {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 50%;
  opacity: .6;
  animation: ping 1.5s infinite;
}
.pulse span:last-child {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 50%;
}
@keyframes ping {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.5); opacity: 0; }
}
.pc-status-text { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
.pc-status-right { display: flex; align-items: center; gap: 10px; }
.pc-time { font-family: var(--font-mono); font-size: 11px; opacity: .9; }
.pc-version {
  background: rgba(255,255,255,.2);
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pc-body { padding: 20px; }
.pc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
@media (min-width: 640px) { .pc-grid { grid-template-columns: 5fr 7fr; } }

/* Gauge */
.pc-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(59,130,246,.04));
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius);
  padding: 14px;
}
[data-theme="dark"] .pc-gauge {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(59,130,246,.06));
}
.pc-gauge-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--success);
}
.pc-gauge-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin-top: 8px;
}
.pc-gauge-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.pc-track { fill: none; stroke: var(--border); stroke-width: 8; }
.pc-bar {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset .8s ease-out;
}
.pc-gauge-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pc-gauge-num .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--success);
}
.pc-gauge-num .sub {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
  font-weight: 700;
}
.pc-badge-quality {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
}

/* Details */
.pc-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pc-cell {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}
.pc-lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.pc-val {
  font-weight: 700;
  font-size: 13px;
  color: var(--heading);
  margin-top: 4px;
  word-break: break-word;
}
.pc-val.mono { font-family: var(--font-mono); }

/* Checks */
.pc-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.pc-check {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 8px;
  padding: 6px 8px;
}
[data-theme="dark"] .pc-check { background: rgba(16,185,129,.1); }
.pc-check i { color: var(--success); font-size: 13px; flex-shrink: 0; }
.pc-check .lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 700; }
.pc-check .ok { font-size: 11px; font-weight: 700; color: var(--success); }

.pc-btn { width: 100%; margin-top: 14px; padding: 12px 18px; }
.pc-foot {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.pc-foot span { display: inline-flex; align-items: center; gap: 4px; }
.pc-foot i { color: var(--primary); }

/* ====== Why Cards ====== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.why-card.good { border-color: rgba(16,185,129,.4); background: linear-gradient(135deg, rgba(16,185,129,.04), var(--bg-card)); }
.why-card.bad { border-color: rgba(220,38,38,.3); background: linear-gradient(135deg, rgba(220,38,38,.03), var(--bg-card)); }
[data-theme="dark"] .why-card.good { background: linear-gradient(135deg, rgba(16,185,129,.08), var(--bg-card)); }
[data-theme="dark"] .why-card.bad { background: linear-gradient(135deg, rgba(220,38,38,.08), var(--bg-card)); }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.why-card.good .why-icon { background: rgba(16,185,129,.12); color: var(--success); }
.why-card.bad .why-icon { background: rgba(220,38,38,.12); color: var(--danger); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.why-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
  font-size: 14px;
}
.why-card.good ul li i { color: var(--success); margin-top: 3px; }
.why-card.bad ul li i { color: var(--danger); margin-top: 3px; }

/* ====== Operator Grid ====== */
.op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .op-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .op-grid { grid-template-columns: repeat(6, 1fr); } }
.op-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  transition: all .2s;
}
.op-card:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: var(--shadow); }
.op-card i { font-size: 26px; margin-bottom: 8px; display: block; }
.op-icon-tt { color: #1e40af; }
.op-icon-tc { color: #fbbf24; }
.op-icon-vf { color: #dc2626; }
.op-icon-tn { color: #3b82f6; }
.op-icon-ts { color: #0891b2; }
.op-icon-ds { color: #7c3aed; }
.op-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--heading); }
.op-sub { font-size: 10px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ====== Packages ====== */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all .3s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.pkg-popular {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, var(--primary-soft), var(--bg-card) 40%);
  box-shadow: 0 30px 60px -20px rgba(200,16,46,.25);
}
.pkg-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(200,16,46,.4);
}
.pkg-tier {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}
.pkg-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
  margin: 8px 0 14px;
  letter-spacing: -0.01em;
}
.pkg-desc {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-display {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.period-display {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.duration-wrap { position: relative; margin-bottom: 22px; }
.duration-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.duration-btn:hover { color: var(--primary-2); }
.duration-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  min-width: 200px;
  z-index: 20;
  box-shadow: var(--shadow);
}
.duration-menu.hidden { display: none; }
.duration-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-radius: 8px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
}
.duration-opt:hover { background: var(--primary-soft); color: var(--primary); }
.duration-opt.active { background: var(--primary-soft); color: var(--primary); font-weight: 700; }
.duration-opt .save {
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
  margin-left: 4px;
}
.pkg-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pkg-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text);
}
.pkg-feats li i { color: var(--success); flex-shrink: 0; }

.pkg-buy { width: 100%; }
.pkg-bottom {
  margin-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.pkg-bottom i { color: var(--primary); margin-right: 6px; }

/* ====== Advantages ====== */
.adv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } }
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .25s;
}
.adv-card:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: var(--shadow); }
.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.adv-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 8px;
}
.adv-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* ====== Blog ====== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
  display: block;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-lg); color: inherit; }
.blog-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: transform .4s;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  color: var(--primary);
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
[data-theme="dark"] .blog-tag { background: rgba(26,14,34,.95); }
.blog-body { padding: 20px; }
.blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin: 6px 0 10px;
  line-height: 1.3;
}
.blog-body p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}
.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

/* ====== FAQ ====== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  color: var(--heading);
  font-size: 15px;
}
.faq-num {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-top: 1px;
}
.faq-plus {
  color: var(--primary);
  font-size: 20px;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a {
  margin: 12px 0 0 28px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ====== CTA ====== */
.cta-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(200,16,46,.4);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(245,185,66,.3), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,.1), transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; }
.cta-content .badge {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  margin: 16px 0 12px;
  color: #fff;
  line-height: 1.1;
}
.cta-content .gradient-text {
  background: linear-gradient(90deg, #fff, #fef3c7, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-content p {
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 28px;
  opacity: .95;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-content .btn-primary {
  background: #fff;
  color: var(--primary);
}
.cta-content .btn-primary:hover { background: #fef3c7; color: var(--primary); }

/* ====== Tags ====== */
.tag-section { padding: 50px 0; }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
}
.tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ====== Footer ====== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 0;
}
[data-theme="dark"] .footer { background: #050308; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--heading);
  margin: 0 0 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { font-size: 13px; color: var(--text-soft); }
.footer-col ul a { color: var(--text-soft); }
.footer-col ul a:hover { color: var(--primary); }
.footer-col ul i { width: 18px; color: var(--primary); }
.footer-about {
  font-size: 13px;
  color: var(--text-soft);
  margin: 16px 0;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all .2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }

/* ====== WhatsApp FAB ====== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 100;
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.08); color: #fff; }
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.5);
  animation: wa-ping 2s infinite;
  z-index: -1;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ====== FAQ (JS-driven, button-based) ====== */
.faq-item .faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-weight: 700;
  color: var(--heading);
  font-size: 15px;
  text-align: left;
  padding: 0;
  font-family: inherit;
}
.faq-item .faq-q > span { flex: 1; }
.faq-item .faq-q i {
  color: var(--primary);
  font-size: 18px;
  transition: transform .25s;
  margin-top: 2px;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q i { transform: rotate(180deg); }
.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  transition: max-height .35s ease, margin .25s ease;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
  margin: 12px 0 0 0;
}
.faq-item .faq-a p { margin: 0; }

/* ====== Article (blog & usage page) ====== */
.article-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.article-head h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--heading);
  margin: 16px 0 12px;
}
.article-head .article-meta {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.article-head .article-meta span + span::before {
  content: "";
}
.article-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.article-body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--heading);
  margin: 38px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.article-body h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--heading);
  margin: 28px 0 10px;
}
.article-body p {
  margin: 0 0 16px;
  color: var(--text-soft);
}
.article-body strong { color: var(--heading); }
.article-body ul, .article-body ol {
  margin: 0 0 20px 0;
  padding-left: 22px;
  color: var(--text-soft);
}
.article-body ul li, .article-body ol li {
  margin-bottom: 8px;
  line-height: 1.75;
}
.article-body code {
  font-family: var(--font-mono);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--primary);
}

.code-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  padding: 18px 22px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
  overflow-x: auto;
  margin: 0 0 22px;
  white-space: pre;
}

.cta-inline {
  margin: 40px 0 8px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200,16,46,.08), rgba(245,185,66,.08));
  border: 1px solid var(--border);
  text-align: center;
}
.cta-inline h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--heading);
  margin: 0 0 10px;
}
.cta-inline p {
  color: var(--text-soft);
  margin: 0 0 20px;
}

/* ====== Hero with proxy-check widget on right ====== */
.hero-pc {
  max-width: 100%;
  margin: 0;
}
.hero-pc .pc-body { padding: 18px; }
.hero-pc .pc-statusbar { font-size: 12px; padding: 10px 14px; }
@media (max-width: 980px) {
  .hero-visual { margin-top: 30px; }
}

/* ====== 8-package pricing grid ====== */
.pkg-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pkg-grid-8 .pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s, box-shadow .2s;
}
.pkg-grid-8 .pkg-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: 14px 14px 0 0;
}
.pkg-grid-8 .pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px -16px rgba(200,16,46,.25);
}
.pkg-grid-8 .pkg-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pkg-grid-8 .pkg-head i {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,16,46,.08);
  color: var(--primary);
  border-radius: 10px;
  font-size: 16px;
}
.pkg-grid-8 .pkg-head span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-soft);
}
.pkg-grid-8 .pkg-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--heading);
  margin: 0 0 12px;
  line-height: 1.3;
}
.pkg-grid-8 .pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 18px;
}
.pkg-grid-8 .price-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--heading);
}
.pkg-grid-8 .price-curr {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-soft);
}
.pkg-grid-8 .pkg-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}
.pkg-grid-8 .pkg-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.pkg-grid-8 .pkg-feats li i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 11px;
  flex-shrink: 0;
}
.pkg-grid-8 .pkg-buy-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1.5px solid var(--primary);
  background: rgba(200,16,46,.06);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.pkg-grid-8 .pkg-buy-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 1100px) {
  .pkg-grid-8 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .pkg-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pkg-grid-8 { grid-template-columns: 1fr; }
}

/* ====== FAQ Redesign — more professional ====== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: faqc;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  counter-increment: faqc;
}
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px -16px rgba(200,16,46,.18);
}
.faq-item.is-open {
  border-color: var(--primary);
  box-shadow: 0 16px 40px -18px rgba(200,16,46,.25);
}
.faq-item .faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--heading);
  font-size: 15px;
  text-align: left;
  padding: 20px 24px;
  font-family: inherit;
  line-height: 1.45;
}
.faq-item .faq-q > span {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-item .faq-q > span::before {
  content: counter(faqc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  letter-spacing: 0;
  flex-shrink: 0;
  padding: 6px 10px;
  background: rgba(200,16,46,.08);
  border-radius: 8px;
  line-height: 1;
}
.faq-item .faq-q i {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(200,16,46,.08);
  color: var(--primary);
  font-size: 13px;
  transition: transform .3s, background .25s;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q i {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}
.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-a {
  max-height: 700px;
  padding: 0 24px 22px 70px;
  border-top: 1px solid var(--border);
  margin-top: -1px;
  padding-top: 18px;
}
.faq-item .faq-a p { margin: 0; }

/* ====== Footer tags (embedded) ====== */
.footer-tags {
  margin: 30px 0 0;
  padding: 26px 0 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer-tags-head {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.footer-tags-head i {
  color: var(--primary);
  margin-right: 6px;
}
.footer-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tag-cloud a {
  font-size: 12px;
  color: var(--text-soft);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.footer-tag-cloud a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ====== SEO Content Section (Metin2 Dünyası) ====== */
.section-seo { position: relative; }
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.seo-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.seo-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 22px 50px -22px rgba(200,16,46,.25);
}
.seo-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(200,16,46,.12), rgba(245,185,66,.12));
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.seo-img-wrap.img-fallback {
  background: linear-gradient(135deg, var(--primary), #7c0a1d);
}
.seo-fallback {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.seo-fallback i {
  font-size: 48px;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.seo-fallback span {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .15em;
  font-size: 14px;
}
.seo-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(200,16,46,.08);
  padding: 5px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 10px;
}
.seo-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading);
  margin: 0 0 10px;
  line-height: 1.35;
}
.seo-body p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 14px;
}
.seo-body p strong { color: var(--heading); }
.seo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap .2s;
  width: fit-content;
}
.seo-link:hover { gap: 10px; }

@media (max-width: 980px) {
  .seo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .seo-card {
    grid-template-columns: 1fr;
  }
  .seo-img-wrap, .seo-img-wrap img { min-height: 180px; }
}

/* ====== Hero proxy check — ensure button clickable ====== */
.hero-visual { position: relative; z-index: 1; }
.hero-pc .pc-btn { position: relative; z-index: 2; cursor: pointer; }
