/* ================================================================
   VPNUK — Stylesheet
   ================================================================ */

:root {
  --navy:        #0d2045;
  --navy-mid:    #1a3a6b;
  --blue:        #1c63d5;
  --blue-light:  #e8f0fd;
  --blue-bright: #3b82f6;
  --sky:         #dbeafe;
  --green:       #16a34a;
  --green-light: #dcfce7;
  --gold:        #d97706;
  --gold-light:  #fef3c7;
  --text:        #0f172a;
  --text-mid:    #334155;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --bg:          #ffffff;
  --bg-alt:      #f0f6ff;
  --bg-alt2:     #f8fafc;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 2px 16px rgba(28,99,213,0.09);
  --shadow-md:   0 4px 24px rgba(28,99,213,0.13);
  --shadow-lg:   0 12px 48px rgba(28,99,213,0.18);
  --transition:  0.24s ease;
  --nav-h:       70px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Shared section head ────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(28,99,213,0.18);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}


/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */

/* Default hidden states */
[data-anim="fadeUp"] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
[data-anim="fadeLeft"] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
[data-anim="fadeRight"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

/* Revealed state */
[data-anim].anim-done {
  opacity: 1;
  transform: none;
}


/* ================================================================
   HEADER / NAVBAR
   ================================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(13,32,69,0.08);
}

.navbar { height: 100%; }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 20px;
  flex: 1;
}
.nav-links > li > a,
.nav-links > li > .nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > .nav-btn:hover,
.nav-links > li.active > .nav-btn {
  background: var(--bg-alt);
  color: var(--blue);
  text-decoration: none;
}
.nav-links > li > .nav-btn svg {
  transition: transform var(--transition);
}
.nav-links > li.active > .nav-btn svg {
  transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.has-dropdown.active .dropdown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  transition: background var(--transition);
}
.dd-item:hover { background: var(--bg-alt); text-decoration: none; }
.dd-item strong { display: block; font-size: 0.875rem; font-weight: 600; }
.dd-item small { display: block; font-size: 0.78rem; color: var(--text-muted); }
.dd-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  border-radius: 8px;
  color: var(--blue);
}
.dd-icon svg { width: 17px; height: 17px; }
.dd-icon--gold { background: var(--gold-light); color: var(--gold); }
.dd-icon--blue { background: var(--blue-light); color: var(--blue); }
.dd-item--compare {
  margin-top: 6px;
  border-top: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.btn-login:hover { background: var(--bg-alt); color: var(--blue); text-decoration: none; }
.btn-trial {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
  white-space: nowrap;
}
.btn-trial:hover {
  background: var(--navy-mid);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28,99,213,0.35);
}


/* ================================================================
   HAMBURGER → X
   ================================================================ */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  gap: 0;
  margin-left: auto;
  padding: 10px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-alt); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.23,1,0.32,1),
              opacity 0.2s ease,
              margin 0.32s cubic-bezier(0.23,1,0.32,1);
  margin: 3px 0;
}
/* Open → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ================================================================
   MOBILE NAV
   ================================================================ */

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  z-index: 950;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.23,1,0.32,1);
  overflow-y: auto;
  padding: 0 0 40px;
  box-shadow: -8px 0 40px rgba(13,32,69,0.15);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mob-inner { padding: 0 24px; }

.mob-close-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mob-logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
}
.mob-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.mob-close:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.mob-section { margin-bottom: 28px; }
.mob-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mob-section a,
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mob-section a:last-child,
.mobile-nav a:last-of-type { border-bottom: none; }
.mob-section a:hover,
.mobile-nav a:hover { color: var(--blue); text-decoration: none; }
.mob-cta {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 20px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mob-cta:hover { background: var(--navy-mid) !important; text-decoration: none; }

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,32,69,0.5);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-overlay.open {
  opacity: 1;
  pointer-events: auto;
}


/* ================================================================
   HERO — full bleed background carousel
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Background slides ───────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center left;
  opacity: 0;
  transition: opacity 2s ease;
  transform: scale(1.06);
}
.hero-slide--active {
  opacity: 1;
  animation: kenburns 10s ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.06); background-position: center left; }
  100% { transform: scale(1);    background-position: center right; }
}

/* ── Gradient overlay — dark left, transparent right ────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(4, 12, 40, 0.94) 0%,
    rgba(4, 12, 40, 0.82) 30%,
    rgba(4, 12, 40, 0.50) 58%,
    rgba(4, 12, 40, 0.08) 100%
  );
}

/* ── Content ─────────────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 28px 120px;
  display: flex;
  align-items: center;
}
.hero-text {
  max-width: 580px;
}

/* ── Badge ───────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(74,222,128,0.3); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}

/* ── Headline ────────────────────────────────────────────────── */
.hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.07;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-accent {
  background: linear-gradient(120deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Sub text ────────────────────────────────────────────────── */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 26px;
}

/* ── Highlights ──────────────────────────────────────────────── */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.hh-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hh-item svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: #60a5fa;
}
.hh-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hh-item small {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.2;
}

/* ── CTAs ────────────────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  transition: background var(--transition), transform 0.18s ease, box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(28,99,213,0.55);
}
.cta-primary:hover {
  background: #1d4ed8;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28,99,213,0.65);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: border-color var(--transition), background var(--transition);
  backdrop-filter: blur(4px);
}
.cta-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

/* ── Checks ──────────────────────────────────────────────────── */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}
.hero-checks span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.hero-checks svg { color: #4ade80; flex-shrink: 0; }

/* ── Download badges — 2 × 2 grid ───────────────────────────── */
.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 300px;
}
.hero-badges a {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hero-badges a:hover { transform: translateY(-2px); opacity: 0.85; }
.hero-badges img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

/* ── Bottom bar — label + dots ───────────────────────────────── */
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px 22px;
  background: linear-gradient(to top, rgba(4,12,40,0.65) 0%, transparent 100%);
}
.hero-label {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  transition: opacity 0.5s ease;
}
.hero-dot-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s ease, width 0.3s ease;
  flex-shrink: 0;
}
.hero-dot--active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* ── Scroll indicator ────────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-dot {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0%   { top: 5px; opacity: 1; }
  80%  { top: 18px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}


/* ================================================================
   TRUST STRIP
   ================================================================ */

.trust-strip {
  background: var(--navy);
  padding: 40px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 40px;
}
.trust-item strong,
.trust-item .trust-num {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trust-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}


/* ================================================================
   PLANS
   ================================================================ */

.plans {
  background: var(--bg-alt);
  padding: 100px 0;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28,99,213,0.25);
}
.plan-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.plan-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-icon {
  width: 48px; height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.plan-icon svg { width: 22px; height: 22px; }
.plan-icon--gold { background: var(--gold-light); color: var(--gold); }
.plan-icon--blue { background: var(--blue-light); color: var(--blue); }

.plan-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.plan-tag {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.4;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.price-from { font-size: 0.82rem; color: var(--text-muted); }
.price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.price-mo { font-size: 0.9rem; color: var(--text-muted); }

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.plan-feats svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
  margin-top: auto;
}
.plan-cta--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(28,99,213,0.35);
}
.plan-cta--primary:hover {
  background: var(--navy-mid);
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(28,99,213,0.45);
}
.plan-cta--outline {
  border: 2px solid var(--border);
  color: var(--navy);
}
.plan-cta--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
  background: var(--blue-light);
}
.plans-compare {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 40px;
}
.plans-compare a { font-weight: 600; color: var(--blue); }


/* ================================================================
   ABOUT
   ================================================================ */

.about {
  background: var(--bg);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.afc-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
.about-float-card strong { display: block; font-size: 0.875rem; font-weight: 700; }
.about-float-card small { display: block; font-size: 0.75rem; color: var(--text-muted); }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.af-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.af-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-top: 2px;
}
.af-icon svg { width: 18px; height: 18px; }
.af-item strong { display: block; font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.af-item small { font-size: 0.82rem; color: var(--text-muted); }
.btn-about {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: background var(--transition), transform 0.18s ease;
}
.btn-about:hover {
  background: var(--sky);
  text-decoration: none;
  transform: translateX(4px);
}


/* ================================================================
   ADDONS
   ================================================================ */

.addons {
  background: var(--bg-alt);
  padding: 100px 0;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.addon-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
}
.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.addon-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-light), var(--sky));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.addon-icon svg { width: 22px; height: 22px; }
.addon-card h4 { font-size: 0.975rem; font-weight: 700; margin-bottom: 8px; }
.addon-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.addon-card p a { color: var(--blue); font-weight: 500; }


/* ================================================================
   APPS
   ================================================================ */

.apps {
  background: var(--bg);
  padding: 100px 0;
}
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.apps-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.apps-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.apps-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.apps-badges a { display: block; transition: transform 0.2s ease, opacity 0.2s ease; }
.apps-badges a:hover { transform: translateY(-2px); opacity: 0.85; }
.apps-note { font-size: 0.83rem; color: var(--text-muted); }
.apps-note a { color: var(--blue); font-weight: 600; }

.apps-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.apps-phone {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  filter: drop-shadow(0 16px 40px rgba(28,99,213,0.2));
}
.apps-shield {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 90px;
  filter: drop-shadow(0 8px 20px rgba(28,99,213,0.3));
  animation: hero-float 5s ease-in-out infinite alternate;
}


/* ================================================================
   SUPPORT BAR
   ================================================================ */

.support-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
}
.sb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.sb-text h3 { font-size: 1.5rem; color: #fff; margin-bottom: 6px; }
.sb-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.sb-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.sb-link:hover { color: #fff; text-decoration: none; }
.sb-link svg { flex-shrink: 0; opacity: 0.7; }


/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { height: 52px; width: auto; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-contacts a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contacts a:hover { color: #fff; text-decoration: none; }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; text-decoration: none; }
/* ── Footer utils strip (Translate · Newsletter · Apps) ──────── */
.footer-utils {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-utils-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

/* ── GLT Flag grid ───────────────────────────────────────────── */
.glt-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.glt-flag {
  cursor: pointer;
  opacity: 0.55;
  border-radius: 2px;
  transition: opacity 0.15s;
}
.glt-flag:hover { opacity: 1; }
.glt-flag.glt-active { opacity: 1; }

/* ── Newsletter form ─────────────────────────────────────────── */
.footer-newsletter-sub {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-newsletter-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.footer-newsletter-form input[type="email"] {
  display: block;
  width: 100%;
  padding: 8px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
  margin-bottom: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.footer-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.footer-newsletter-form button {
  display: block;
  width: 100%;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 5px;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-newsletter-form button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: left;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }


/* ── Footer socials ──────────────────────────────────────────── */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  text-decoration: none;
}
.footer-social-btn svg { width: 16px; height: 16px; }

/* ── Footer app downloads ────────────────────────────────────── */
.footer-app-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 14px;
}
.footer-app-badges a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.footer-app-badges a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}
.footer-app-badges svg { flex-shrink: 0; color: rgba(255,255,255,0.5); }

/* ── Footer chat link ────────────────────────────────────────── */
.footer-chat-link {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-chat-link svg { color: var(--green); }


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-6px); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-utils { grid-template-columns: 1fr 1fr; }
  .footer-utils-col--apps { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none !important; }
  .hamburger { display: flex; }

  /* Hero mobile — text gets a frosted backdrop for legibility */
  .hero-overlay {
    background: rgba(4, 12, 40, 0.70);
  }
  .hero-content {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 100px;
    justify-content: center; /* override flex-end on desktop */
  }
  .hero-text {
    max-width: 100%;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }
  .hero-ctas    { justify-content: center; }
  .hero-checks  { justify-content: center; }
  .hero-badges  { margin: 0 auto; }
  .hero-highlights { align-items: flex-start; text-align: left; }
  .hero-sub     { margin-left: auto; margin-right: auto; }
  .hero-bottom  { padding: 12px 20px 16px; }

  .about-grid,
  .apps-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-float-card { display: none; }
  .apps-shield { display: none; }
  .sb-inner { flex-direction: column; text-align: center; }
  .sb-contacts { justify-content: center; }
}

@media (max-width: 620px) {
  :root { --nav-h: 62px; }
  .container { padding: 0 18px; }
  .trust-grid { flex-direction: column; gap: 0; }
  .trust-div { width: 80px; height: 1px; margin: 4px auto; }
  .trust-item { padding: 16px 0; }
  .addons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-utils { grid-template-columns: 1fr; }
  .footer-utils-col--apps { grid-column: span 1; }
  .footer-app-badges { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-text { padding: 22px 18px; border-radius: 14px; }
  .plans { padding: 72px 0; }
  .about,
  .addons,
  .apps { padding: 72px 0; }
  .hero-badges img { height: 30px; }
  .apps-badges img { height: 38px; }
}
