/* ============ HarkovVPN — DARK THEME ============ */
:root {
  --orange: #FF6B1A;
  --orange-2: #FF8A3D;
  --orange-deep: #E5571A;
  --orange-glow: rgba(255,107,26,.18);
  --orange-soft: rgba(255,107,26,.12);

  --bg: #000000;
  --bg-1: #0A0A0C;
  --bg-2: #111114;
  --bg-3: #16171B;

  --surface: #0E0F12;
  --surface-2: #131418;
  --surface-3: #1A1C22;

  --line: #1F2128;
  --line-2: #2A2D36;

  --text: #FFFFFF;
  --text-2: #B7BECB;
  --text-3: #8A93A3;
  --text-dim: #6B7280;

  --green: #1FB466;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3);
  --shadow: 0 6px 24px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.3);
  --shadow-lg: 0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-orange: 0 10px 40px -10px rgba(255,107,26,.5);

  --maxw: 1200px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01','cv11';
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, textarea { font-family: inherit; }

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

/* ============ TOP STRIP ============ */
.topstrip {
  background: #050507;
  color: var(--text);
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.topstrip-pad { display: inline-flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; justify-content: center; }
.topstrip b { font-weight: 700; }
.topstrip .warn { color: #FF7A5C; font-weight: 600; }
.topstrip-loc { color: var(--text-2); }
.topstrip-cta { color: var(--orange-2); font-weight: 700; }
.topstrip-cta:hover { color: var(--orange); }
@media (max-width: 700px) {
  .topstrip { font-size: 11.5px; padding: 7px 10px; }
  .topstrip-loc { display: none; }
}
@media (max-width: 480px) {
  .topstrip b, .topstrip .warn { display: none; }
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled { background: rgba(0,0,0,.92); }
.nav-row {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.02em;
  color: var(--text);
  cursor: pointer;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 9px;
  display: block;
  box-shadow: 0 6px 20px rgba(255,107,26,.35);
  object-fit: cover;
}
.brand .reg {
  font-size: 10px; vertical-align: super; opacity: .55; font-weight: 600; margin-left: 2px;
}
.brand-text { white-space: nowrap; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 9px 14px; font-size: 14.5px; font-weight: 600;
  color: var(--text-2); border-radius: 10px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(255,255,255,.06); color: var(--text); }
.nav-spacer { flex: 1; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--text-2);
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: rgba(255,255,255,.06); color: var(--text); }
.btn-ghost { padding: 9px 14px; font-weight: 600; font-size: 14.5px; border-radius: 10px; color: var(--text-2); }
.btn-ghost:hover { color: var(--text); }
.burger { display: none; width: 38px; height: 38px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 10px; }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 4px; font-weight: 600; font-size: 16px;
  color: var(--text); border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-login { color: var(--text-2); margin-top: 8px; }

.nav-links a { white-space: nowrap; }
.nav-cta { white-space: nowrap; }
@media (max-width: 1100px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 9px 10px; font-size: 14px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 520px) {
  .nav-row { gap: 8px; padding: 11px 0; }
  .brand-text { font-size: 16.5px; }
  .brand-mark { width: 34px; height: 34px; }
}
@media (max-width: 380px) {
  .brand-text { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 13.5px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .12s ease, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange); color: white;
  box-shadow: 0 10px 30px -8px rgba(255,107,26,.6), 0 1px 0 rgba(255,255,255,.15) inset;
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-light {
  background: white; color: #0B0F17;
}
.btn-light:hover { background: #E8EAF0; }
.btn-dark {
  background: var(--surface-3); color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-dark:hover { background: var(--line-2); border-color: #3A3D48; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

/* ============ TYPE ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font); letter-spacing: -0.025em; line-height: 1.08;
  margin: 0; font-weight: 800; color: var(--text);
}
h1 { font-size: clamp(36px, 5.4vw, 64px); }
h2 { font-size: clamp(28px, 3.8vw, 46px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.2; letter-spacing: -0.02em; }
h4 { font-size: 18px; letter-spacing: -0.015em; }
p { margin: 0; }

.text-orange { color: var(--orange-2); }
.muted-d { color: var(--text-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--text-2);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,180,102,.18);
}

/* ============ SECTIONS ============ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-1); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-top: 16px; }
.section-head h3 { margin-top: 16px; }
.section-head p {
  color: var(--text-2);
  margin-top: 16px;
  font-size: 17px;
  max-width: 640px;
  line-height: 1.55;
}
.section-head.center { margin: 0 auto 48px; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-lead {
  color: var(--text-2); font-size: 17px; line-height: 1.55; max-width: 640px;
  margin: 18px auto 0;
}

.center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-72 { margin-top: 72px; }

@media (max-width: 700px) { .section { padding: 64px 0; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 78% 35%, rgba(255,107,26,.22), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(255,107,26,.08), transparent 60%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  pointer-events: none;
  opacity: .6;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}
.hero-text .eyebrow { margin-bottom: 22px; }
.hero h1 { color: var(--text); }
.hero-lead {
  color: var(--text-2); font-size: 18px; margin-top: 22px;
  max-width: 540px; line-height: 1.55;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; flex-wrap: wrap;
}
.hero-subline {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 18px;
  color: var(--text-3); font-size: 13.5px;
}
.hsi { display: inline-flex; align-items: center; gap: 6px; }
.hsi svg { color: var(--orange); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 40px;
}
.stat-n { font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.stat-l { font-size: 13px; color: var(--text-3); margin-top: 2px; }

.hero-features { margin-top: 80px; position: relative; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone { order: -1; margin-bottom: 16px; }
}
@media (max-width: 600px) {
  .hero { padding: 32px 0 60px; }
  .hero-stats { gap: 22px; }
  .stat-n { font-size: 22px; }
  .hero-features { margin-top: 56px; }
}

/* ============ HERO PHONE ============ */
.hero-phone {
  position: relative; height: 540px;
  display: grid; place-items: center;
}
.hero-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.4), transparent 60%);
  filter: blur(20px);
}
.phone {
  width: 248px; height: 500px;
  background: #0B0F17;
  border: 9px solid #1C2330;
  border-radius: 44px;
  position: relative;
  box-shadow:
    0 50px 100px rgba(0,0,0,.75),
    0 0 0 1px rgba(255,107,26,.35),
    inset 0 0 0 1px rgba(255,255,255,.04);
  z-index: 2; overflow: hidden;
  transform: rotate(-4deg) perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center center;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.hero-phone:hover .phone { transform: rotate(-2deg) perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; background: #0B0F17;
  border-radius: 0 0 12px 12px; z-index: 3;
}
.phone-screen {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1C2330 0%, #0B0F17 100%);
}
.phone-status {
  padding: 16px 14px 0;
  display: flex; justify-content: space-between;
  font-size: 11px; color: #8A93A3;
}
.phone-body { padding: 24px 18px 18px; }
.phone-label { font-size: 11px; color: #8A93A3; margin-bottom: 6px; font-weight: 600; }
.phone-row-toggle { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.phone-title { font-weight: 800; font-size: 22px; color: white; letter-spacing: -0.02em; }
.toggle-on {
  width: 52px; height: 30px; border-radius: 999px;
  background: var(--orange); position: relative;
  box-shadow: 0 0 24px rgba(255,107,26,.7), 0 0 0 1px rgba(255,255,255,.08) inset;
  animation: tg-pulse 2.6s ease-in-out infinite;
}
@keyframes tg-pulse {
  0%, 60%, 100% { box-shadow: 0 0 24px rgba(255,107,26,.55), 0 0 0 1px rgba(255,255,255,.08) inset; }
  30% { box-shadow: 0 0 36px rgba(255,107,26,.95), 0 0 0 1px rgba(255,255,255,.12) inset; }
}
.toggle-dot {
  position: absolute; left: 3px; top: 3px;
  width: 24px; height: 24px; border-radius: 50%; background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
  animation: tg-slide 4s ease-in-out infinite;
}
@keyframes tg-slide {
  0%, 8%   { left: 3px; background: #888; }
  18%, 92% { left: 25px; background: white; }
  100%     { left: 25px; background: white; }
}
@keyframes tg-bg {
  0%, 8%   { background: #2a2d36; }
  18%, 92% { background: var(--orange); }
  100%     { background: var(--orange); }
}
.toggle-on { animation: tg-bg 4s ease-in-out infinite, tg-pulse 2.6s ease-in-out infinite; }
.server-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; background: rgba(255,107,26,.08);
  border: 1px solid rgba(255,107,26,.3); border-radius: 14px;
  margin-bottom: 14px;
}
.server-name { font-weight: 700; font-size: 14px; color: white; }
.server-meta { font-size: 11px; color: #8A93A3; }
.flag-nl {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(180deg, #AE1C28 0%, #AE1C28 33%, #FFFFFF 33%, #FFFFFF 66%, #21468B 66%);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.server-list { display: flex; flex-direction: column; gap: 8px; }
.server-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: rgba(255,255,255,.04);
  border-radius: 10px; font-size: 13px; font-weight: 600; color: white;
}
.server-row .ms { margin-left: auto; font-size: 11px; color: #8A93A3; font-weight: 500; }

.float-icon {
  position: absolute; z-index: 3;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.55));
  transition: transform .25s;
  animation: drift 5s ease-in-out infinite, fi-pop .6s ease both;
}
.float-icon:hover { animation-play-state: paused; transform: scale(1.15) rotate(4deg); z-index: 5; }
.fi-circle {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  animation: fi-block 4s ease-in-out infinite;
}
.fi-circle::before {
  content:''; position:absolute; inset:-4px; border-radius:inherit;
  background: inherit; opacity: .35; filter: blur(10px); z-index:-1;
}
@keyframes drift {
  0%   { transform: translateY(0) rotate(0); }
  25%  { transform: translateY(-12px) rotate(-3deg); }
  50%  { transform: translateY(-4px) rotate(2deg); }
  75%  { transform: translateY(-14px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0); }
}
@keyframes fi-pop {
  from { opacity: 0; transform: scale(.4); }
  to   { opacity: 1; transform: scale(1); }
}
/* Sync with phone toggle (4s cycle): OFF 0-8%, ON 18-88%, OFF 92-100% */
@keyframes fi-block {
  0%, 8%   { filter: grayscale(1) brightness(.55); }
  18%, 88% { filter: grayscale(0) brightness(1); }
  92%, 100%{ filter: grayscale(1) brightness(.55); }
}
.fi-lock {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 30px;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.7));
  animation: fi-lock-show 4s ease-in-out infinite;
  z-index: 4;
}
@keyframes fi-lock-show {
  0%, 8%   { opacity: 1; transform: scale(1); }
  18%, 88% { opacity: 0; transform: scale(.5); }
  92%, 100%{ opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .hero-phone { height: 460px; }
  .phone { width: 220px; height: 440px; }
  .float-icon { transform: scale(.85); }
}

/* ============ FEATURE MINI ============ */
.feature-mini {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, border-color .2s;
}
.feature-mini:hover { transform: translateY(-3px); border-color: var(--line-2); }
.feature-mini h4 { color: var(--text); margin-bottom: 8px; }
.feature-mini p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* ============ CARDS ============ */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--orange-soft); color: var(--orange);
  margin-bottom: 18px;
}
.card h3, .card h4 { margin-bottom: 8px; color: var(--text); }
.card p { color: var(--text-2); font-size: 15px; line-height: 1.55; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

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

/* ============ CHIP ============ */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-2);
  font-size: 12.5px; font-weight: 700;
}

/* ============ AIO HERO ============ */
.aio-hero {
  background: linear-gradient(135deg, rgba(255,107,26,.08), rgba(255,107,26,.02));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
  margin-bottom: 24px;
}
.aio-hero-text h3 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; }
.aio-hero-text p { color: var(--text-2); margin-top: 14px; font-size: 16px; max-width: 460px; line-height: 1.55; }
.device-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 32px; }
.device-chip {
  display: flex; align-items: center; flex-direction: column; gap: 6px;
  padding: 8px 4px; min-width: 64px; text-align: center;
  font-size: 12px; color: var(--text-3); font-weight: 600;
}
.device-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface-3); display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  border: 1px solid var(--line);
}

.aio-card {
  background: var(--surface); border-radius: var(--radius-xl);
  padding: 36px; display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: center; border: 1px solid var(--line);
}
.aio-card h3 { font-size: clamp(20px, 2.4vw, 26px); }
.aio-card p { color: var(--text-2); margin-top: 12px; max-width: 380px; line-height: 1.55; }
.aio-card-art { width: 200px; }

.aio-hero-art { position: relative; display: grid; place-items: center; min-height: 240px; }
.aio-glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.28), transparent 65%);
  filter: blur(8px); pointer-events: none;
}
.aio-icons {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 12px;
}
.aio-i {
  width: 92px; height: 92px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  display: grid; place-items: center;
  color: var(--orange);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
  transition: transform .25s;
}
.aio-i:nth-child(2) { transform: rotate(5deg) translateY(-12px); }
.aio-i:nth-child(3) { transform: rotate(-2deg) translateY(8px); }
.aio-i:nth-child(4) { transform: rotate(6deg); }
.aio-i.big {
  background: linear-gradient(180deg, rgba(255,107,26,.18), var(--surface-2));
  color: var(--text);
}
.aio-icons:hover .aio-i { transform: rotate(0); }

@media (max-width: 900px) {
  .aio-hero { grid-template-columns: 1fr; padding: 32px; }
  .aio-card { grid-template-columns: 1fr; padding: 28px; }
  .aio-card-art { width: 100%; }
}
@media (max-width: 480px) {
  .aio-hero { padding: 22px; }
  .aio-card { padding: 22px; }
  .aio-i { width: 78px; height: 78px; border-radius: 18px; }
  .aio-glow { width: 260px; height: 260px; }
}

/* ============ COMPARE ============ */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  min-width: 720px;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 16px 24px; align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.compare-row:last-child { border-bottom: none; }
.compare-head {
  background: var(--bg-2);
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--text-3);
}
.compare-head .us { color: var(--orange-2); background: rgba(255,107,26,.1); padding: 16px 8px; margin: -16px 0; font-weight: 700; }
.compare-row .us { background: rgba(255,107,26,.06); padding: 16px 8px; margin: -16px 0; font-weight: 700; }
.compare-row > div { text-align: center; }
.compare-row > div:first-child { text-align: left; }
.compare-row .ftr { color: var(--text-2); font-weight: 600; }
.check { color: var(--orange); font-size: 18px; font-weight: 800; }
.check.g { color: var(--green); }
.x { color: var(--text-dim); font-size: 16px; }

/* ============ BIG FEATURES ============ */
.big-features { display: flex; flex-direction: column; gap: 80px; }
.big-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.big-feature.reverse > div:first-child { order: 2; }
.big-feature h3 { font-size: clamp(24px, 3vw, 36px); margin-top: 16px; }
.big-feature p { color: var(--text-2); margin-top: 14px; font-size: 17px; line-height: 1.6; max-width: 520px; }
.big-feature-art { display: grid; place-items: center; }
.big-art-circle {
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.18), transparent 70%);
  display: grid; place-items: center;
  color: var(--orange);
  border: 1px solid var(--line-2);
}
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-2);
}
.check-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-soft);
  font-size: 13px; flex-shrink: 0;
}

@media (max-width: 900px) {
  .big-feature { grid-template-columns: 1fr; gap: 28px; }
  .big-feature.reverse > div:first-child { order: 0; }
  .big-art-circle { width: 220px; height: 220px; }
  .big-features { gap: 56px; }
}

/* ============ PRICING ============ */
.pricing-grid { gap: 18px; }
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  position: relative;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,107,26,.08), var(--surface) 50%);
  box-shadow: 0 24px 60px -20px rgba(255,107,26,.4);
}
.ribbon {
  position: absolute; top: -12px; right: 20px;
  background: var(--orange); color: white;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: .02em;
}
.pricing-card h3 { color: var(--text); }
.save-row { margin-top: 18px; min-height: 22px; }
.price-num {
  margin-top: 6px;
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  display: flex; align-items: baseline; gap: 2px;
  color: var(--text);
}
.price-cur { font-size: 22px; color: var(--text-3); margin-right: 4px; font-weight: 700; }
.price-per { font-size: 14px; color: var(--text-3); font-weight: 600; margin-left: 4px; }
.price-total { color: var(--text-3); font-size: 13px; margin-top: 6px; }
.plan-features {
  list-style: none; padding: 0;
  margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text-2);
}
.plan-features .ck {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center; font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.pricing-card .btn { margin-top: 24px; }

.payment-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; margin-top: 56px;
  color: var(--text-3); font-size: 14px; font-weight: 500;
}
.payment-label { font-weight: 700; color: var(--text-2); }
.dot-sep { color: var(--text-dim); }

/* New: payment icons grid */
.pay-icons {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.pay-i {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; min-width: 64px; padding: 0 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-2);
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
  transition: border-color .15s, color .15s, transform .15s;
}
.pay-i:hover { border-color: var(--line-2); color: var(--text); transform: translateY(-2px); }
.pay-i svg { display: block; }
.pay-i .pay-text { white-space: nowrap; }
.pay-note {
  width: 100%; text-align: center; color: var(--text-3); font-size: 13px; margin-top: 16px;
}

/* ============ START PAGE (free trial) ============ */
.start-wrap {
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: left;
  box-shadow: var(--shadow-lg);
}
.start-wrap h1 { font-size: clamp(28px, 4vw, 36px); margin-bottom: 12px; }
.start-wrap > p { color: var(--text-2); font-size: 16px; line-height: 1.55; margin-bottom: 24px; }
.start-form { display: flex; flex-direction: column; gap: 12px; }
.start-form .input { font-size: 16px; }
.start-form .btn { padding: 16px 24px; font-size: 16px; }
.start-bullets {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.start-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-2); font-size: 14.5px;
}
.start-bullets li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: inline-grid; place-items: center;
  font-weight: 800; font-size: 13px;
}
.start-foot {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  margin-top: 26px; color: var(--text-3); font-size: 13px;
}
@media (max-width: 600px) { .start-wrap { padding: 28px; } }

/* ============ MINI ILLUSTRATIONS ============ */
.illu-character {
  display: grid; place-items: center;
  padding: 12px;
}
.illu-character svg { max-width: 240px; width: 100%; }

/* ============ DOWNLOAD ============ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .download-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .download-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.download-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform .15s, border-color .15s;
}
@media (max-width: 600px) { .download-card { padding: 18px 14px; } }
.download-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.download-card.primary {
  background: linear-gradient(180deg, rgba(255,107,26,.12), var(--surface));
  border-color: var(--orange);
}
.dl-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--surface-3); display: grid; place-items: center;
  margin: 0 auto 14px; color: var(--text);
}
.download-card.primary .dl-icon { background: rgba(255,255,255,.08); color: var(--orange); }
.download-card h4 { font-size: 17px; margin-bottom: 4px; color: var(--text); }
.download-card p { color: var(--text-3); font-size: 13px; }

/* ============ STEP CARD ============ */
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.step-num {
  font-size: 48px; font-weight: 800; color: var(--orange);
  letter-spacing: -0.04em; line-height: 1;
}
.step-card h3 { color: var(--text); margin-top: 18px; font-size: 22px; }
.step-card p { color: var(--text-2); margin-top: 8px; line-height: 1.55; }

/* ============ LOCATIONS ============ */
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px; max-width: 480px; margin: 28px auto 0;
  box-shadow: var(--shadow-sm);
  color: var(--text-2);
}
.search-box:focus-within { border-color: var(--orange); }
.search-box input {
  flex: 1; border: none; outline: none; font-size: 15px;
  background: transparent; color: var(--text);
}
.search-box input::placeholder { color: var(--text-3); }

.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.location-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: all .15s;
}
.location-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.location-flag { font-size: 28px; line-height: 1; }
.location-name { font-weight: 700; color: var(--text); font-size: 15px; }
.location-city { font-size: 13px; color: var(--text-3); }
.location-ms {
  margin-left: auto;
  font-size: 13px; font-weight: 700; color: var(--green);
  background: rgba(31,180,102,.12); padding: 4px 10px;
  border-radius: 999px;
}
.loc-empty { text-align: center; color: var(--text-3); padding: 40px; }

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

/* ============ REVIEWS ============ */
.review-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
}
.stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.stars .dim { color: var(--surface-3); }
.review-card p { font-size: 15.5px; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
.reviewer { display: flex; gap: 12px; align-items: center; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: white;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px;
}
.r-name { font-weight: 700; font-size: 14.5px; color: var(--text); }
.r-city { font-size: 13px; color: var(--text-3); }

/* ============ STATS ============ */
.stats-grid { gap: 18px; }
.big-stat {
  padding: 32px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.bs-num {
  font-size: clamp(40px, 5vw, 56px); font-weight: 800;
  letter-spacing: -0.03em; color: var(--orange); line-height: 1;
}
.bs-label { color: var(--text-2); font-size: 15px; margin-top: 10px; }

/* ============ CTA BANNER ============ */
.cta-section { padding: 48px 0 96px; }
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: white; position: relative; }
.cta-banner p {
  color: rgba(255,255,255,.9);
  margin: 14px auto 0; font-size: 17px;
  max-width: 540px; position: relative; line-height: 1.55;
}
.cta-banner .btn { margin-top: 28px; position: relative; }
.cta-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.06) 40px 80px);
  pointer-events: none;
}
@media (max-width: 600px) {
  .cta-banner { padding: 40px 24px; border-radius: 20px; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  font-size: 17px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: -0.01em; color: var(--text);
}
.faq-a {
  padding: 0 0 22px;
  color: var(--text-2); font-size: 15.5px;
  max-width: 820px; line-height: 1.6;
  display: none;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-3);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .2s, background .2s, color .2s;
  font-size: 18px; font-weight: 600; color: var(--text-2);
}
.faq-item.open .faq-toggle {
  background: var(--orange); color: white;
  transform: rotate(45deg);
}
.faq-item.open .faq-a { display: block; }

/* ============ CONTACT ============ */
.contact-cards { margin-bottom: 32px; }
.contact-card { display: block; cursor: pointer; }
.contact-card:hover { border-color: var(--orange); }
.contact-line { color: var(--text); font-weight: 700; font-size: 15.5px; word-break: break-all; }
.contact-sub { color: var(--text-3); font-size: 13px; margin-top: 6px; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
}
.contact-form h3 { font-size: 22px; margin-bottom: 8px; }
.form-lead { color: var(--text-2); margin-bottom: 24px; }
.input {
  width: 100%; padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg-2);
  font-size: 15px; outline: none;
  color: var(--text);
  transition: border-color .15s, background .15s;
}
.input::placeholder { color: var(--text-3); }
.input:focus { border-color: var(--orange); background: var(--bg-3); }
.contact-form .grid-2 { gap: 14px; }
.contact-form .input + .input { margin-top: 14px; }
.contact-form textarea.input { resize: vertical; }
.contact-form .btn { margin-top: 20px; }

@media (max-width: 600px) {
  .contact-form { padding: 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: #050507;
  color: var(--text);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 56px;
  align-items: start;
}
.footer-cta-col h5 { color: var(--text); text-transform: none; letter-spacing: -0.01em; font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.footer-cta-col p { color: var(--text-3); font-size: 14px; }
.footer .brand { color: var(--text); margin-bottom: 16px; }
.footer-about {
  color: var(--text-2); font-size: 14.5px;
  max-width: 320px; line-height: 1.6;
  margin-bottom: 18px;
}
.footer-socials { display: flex; gap: 8px; }
.social {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surface-3); display: grid; place-items: center;
  color: var(--text-2);
  transition: background .15s, color .15s;
}
.social:hover { background: var(--orange); color: white; }
.footer h5 {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3);
  font-weight: 700; margin: 0 0 16px;
}
.footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer ul a {
  color: var(--text-2); font-size: 14.5px;
  transition: color .15s;
}
.footer ul a:hover { color: var(--orange-2); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px; color: var(--text-3);
  flex-wrap: wrap;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } .footer-cta-col { grid-column: 1 / -1; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid var(--line); } .footer-cta-col h5 { margin-bottom: 0; } .footer-cta-col p { flex: 1; } .footer-cta-col .btn { width: auto; } }
@media (max-width: 800px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px)  { .footer-grid { grid-template-columns: 1fr; } .footer { padding: 56px 0 32px; } .footer-cta-col { display: block; } .footer-cta-col p { margin-top: 4px; margin-bottom: 12px; } }

/* ============ EXTRA MOBILE PASS ============ */
@media (max-width: 700px) {
  .container { padding: 0 18px; }
  h1 { font-size: clamp(34px, 9vw, 44px); }
  h2 { font-size: clamp(26px, 6vw, 34px); }
  h3 { font-size: clamp(20px, 5vw, 24px); }
  .section-head { margin-bottom: 32px; }
  .hero-stats { gap: 18px; }
  .stat-n { font-size: 20px; }
  .stat-l { font-size: 12px; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .hero-subline { gap: 12px; }
  .pricing-grid { gap: 14px; }
  .pricing-card { padding: 22px; }
  .price-num { font-size: 38px; }
  .grid-3, .grid-2, .grid-4 { gap: 14px; }
}
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  h1 { font-size: 32px; }
  .hero-phone { height: 420px; }
  .phone { width: 200px; height: 400px; }
  .float-icon { transform: scale(.75); }
  .feature-mini, .card { padding: 22px; }
  .cta-banner { padding: 32px 20px; }
  .cta-banner h2 { font-size: 24px; }
  .review-card { padding: 22px; }
}
@media (max-width: 360px) {
  .nav-right .btn-sm { padding: 9px 12px; font-size: 13px; }
  .topstrip-pad { font-size: 11px; }
}

/* Touch-friendly: ensure tap targets ≥ 44px on mobile */
@media (pointer: coarse) {
  .btn, .nav-links a, .mobile-menu a, .faq-q { min-height: 44px; }
  .icon-btn, .burger { min-width: 44px; min-height: 44px; }
}

/* ============ ACTIVE NAV ============ */
.nav-links a.active {
  color: var(--text);
  background: rgba(255,107,26,.10);
  position: relative;
}
.nav-links a.active::after {
  content:''; position:absolute; left:14px; right:14px; bottom:2px;
  height:2px; border-radius:2px; background: var(--orange);
}

/* ============ SCROLL-REVEAL ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal, .card, .review-card, .pricing-card, .download-card,
  .feature-mini, .big-stat, .blog-card, .ts-card, .step-card,
  .country-card {
    opacity: 0; transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .in-view { opacity: 1 !important; transform: none !important; }
  .grid-3 .in-view:nth-child(2),
  .grid-4 .in-view:nth-child(2),
  .download-grid .in-view:nth-child(2) { transition-delay: .06s; }
  .grid-3 .in-view:nth-child(3),
  .grid-4 .in-view:nth-child(3),
  .download-grid .in-view:nth-child(3) { transition-delay: .12s; }
  .grid-3 .in-view:nth-child(4),
  .grid-4 .in-view:nth-child(4),
  .download-grid .in-view:nth-child(4) { transition-delay: .18s; }
  .grid-3 .in-view:nth-child(5),
  .grid-4 .in-view:nth-child(5) { transition-delay: .22s; }
  .grid-3 .in-view:nth-child(6) { transition-delay: .26s; }
}

/* ============ MARQUEE (cities/regions) ============ */
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 16px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text-2);
}
.mq-pill .ok {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,180,102,.18);
}

/* ============ RUSSIA SECTION ============ */
.russia-hero {
  background: linear-gradient(135deg, rgba(255,107,26,.10), rgba(255,107,26,.02));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.russia-hero::after {
  content:''; position:absolute; right:-100px; top:-100px;
  width:400px; height:400px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,107,26,.18), transparent 70%);
  filter: blur(20px); pointer-events:none;
}
.russia-hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: center; position: relative;
}
@media (max-width: 900px) { .russia-hero { padding: 32px; } .russia-hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .russia-hero { padding: 24px; border-radius: 20px; } }

.russia-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 28px;
}
.r-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.r-stat-n { font-size: 24px; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; line-height: 1; }
.r-stat-l { color: var(--text-3); font-size: 13px; margin-top: 6px; }

/* ============ COUNTRY GRID (locations page) ============ */
.region-block { margin-bottom: 56px; }
.region-block h3 {
  font-size: 22px; margin-bottom: 18px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.region-block h3 .region-count {
  font-size: 13px; font-weight: 700;
  background: var(--surface-3); color: var(--text-3);
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0;
  text-transform: none;
}
.country-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.country-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .15s, transform .15s;
}
.country-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.country-flag { font-size: 24px; }
.country-name { font-weight: 700; color: var(--text); font-size: 14.5px; }
.country-meta { font-size: 12.5px; color: var(--text-3); }
.country-ms { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--green); }
@media (max-width: 900px) { .country-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .country-grid { grid-template-columns: 1fr; } }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .15s, transform .15s;
}
.blog-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.blog-cover {
  aspect-ratio: 16/9; width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  display: grid; place-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.blog-cover::after {
  content:''; position:absolute; inset:0;
  background: repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,.06) 30px 60px);
}
.blog-cover svg { z-index:1; opacity: .9; }
.blog-card.alt .blog-cover { background: linear-gradient(135deg, #2a1c44, #0f1730); }
.blog-card.alt2 .blog-cover { background: linear-gradient(135deg, #143229, #0a1f1a); }
.blog-card.alt3 .blog-cover { background: linear-gradient(135deg, #2c0f15, #1a0608); }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-flex; align-items: center;
  background: var(--orange-soft); color: var(--orange-2);
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px; width: fit-content;
}
.blog-card h3 { font-size: 18px; line-height: 1.3; margin-bottom: 8px; }
.blog-card p { color: var(--text-2); font-size: 14px; line-height: 1.55; flex: 1; }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-top: 16px; font-size: 12.5px; color: var(--text-3); }
.blog-meta .dot-sep { color: var(--text-dim); }

/* ============ TIMELINE / TS-CARD ============ */
.ts-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
@media (max-width: 900px) { .ts-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ts-row { grid-template-columns: 1fr; } }
.ts-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px;
}
.ts-year {
  font-size: 13px; font-weight: 800; letter-spacing: .04em;
  color: var(--orange); margin-bottom: 10px;
}
.ts-card h4 { color: var(--text); font-size: 18px; margin-bottom: 8px; }
.ts-card p { color: var(--text-2); font-size: 14px; line-height: 1.55; }

/* ============ FADE ============ */
@media (prefers-reduced-motion: no-preference) {
  body { animation: page-fade .35s ease both; }
  @keyframes page-fade { from { opacity: 0; } to { opacity: 1; } }
}

/* Page hero (subpages) */
.page-hero {
  padding: 72px 0 48px; position: relative;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,107,26,.06), transparent 80%);
}
.page-hero h1 { margin-top: 16px; }
.page-hero p { color: var(--text-2); margin-top: 18px; font-size: 18px; max-width: 720px; line-height: 1.55; }
@media (max-width: 600px) { .page-hero { padding: 48px 0 32px; } .page-hero p { font-size: 16px; } }

/* badge */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31,180,102,.12); color: var(--green);
  text-transform: uppercase; letter-spacing: .04em;
}

/* CTA inline section */
.inline-cta {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.inline-cta h4 { font-size: 19px; margin-bottom: 4px; }
.inline-cta p { color: var(--text-2); font-size: 14.5px; }
@media (max-width: 600px) { .inline-cta { padding: 22px; } .inline-cta .btn { width: 100%; } }

