/* ShieldPass VPN — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --navy:     #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2340;
  --card:     #141c2f;
  --border:   #1e2d4a;
  --cyan:     #00e5c0;
  --cyan-dim: #00b89c;
  --green:    #00e5a0;
  --green-dim:#00b47a;
  --text:     #e8edf5;
  --muted:    #7a8aab;
  --white:    #ffffff;
  --danger:   #ff4d6d;
  --warn:     #ffd166;
  --radius:   10px;
  --radius-lg:18px;
  --shadow:   0 4px 32px rgba(0,229,192,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text); margin-bottom: 1rem; }
a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: var(--white);
}
.nav__logo img { width: 28px; height: 28px; }
.nav__logo span { color: var(--cyan); }
.nav__links { display: flex; gap: 0.25rem; list-style: none; }
.nav__links a {
  color: var(--muted); font-size: 0.88rem; font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: 6px;
  transition: all 0.2s;
}
.nav__links a:hover { color: var(--white); background: var(--navy-light); }
.nav__links a.active { color: var(--cyan); }
.nav__cta {
  background: var(--cyan); color: var(--navy) !important;
  font-weight: 700 !important; border-radius: 6px !important;
  padding: 0.45rem 1rem !important;
}
.nav__cta:hover { background: var(--white) !important; color: var(--navy) !important; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 1.4rem; }

/* ── HERO ── */
.hero {
  padding: 5rem 1.5rem 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,192,0.08) 0%, transparent 70%);
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300e5c0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,229,192,0.1); border: 1px solid rgba(0,229,192,0.2);
  color: var(--cyan); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title .accent { color: var(--cyan); }
.hero__sub { font-size: 1.1rem; color: var(--muted); max-width: 580px; margin: 0 auto 2.5rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all 0.2s; text-decoration: none;
}
.btn--primary {
  background: var(--cyan); color: var(--navy);
  box-shadow: 0 0 24px rgba(0,229,192,0.3);
}
.btn--primary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); box-shadow: 0 0 32px rgba(0,229,192,0.4); }
.btn--outline {
  background: transparent; color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.btn--outline:hover { background: rgba(0,229,192,0.08); color: var(--white); border-color: var(--white); }
.btn--sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(0,229,192,0.3); transform: translateY(-3px); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,229,192,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.section--alt { background: var(--navy-mid); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header p { color: var(--muted); max-width: 560px; margin: 0.75rem auto 0; }
.section__eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.5rem;
  font-family: 'Syne', sans-serif;
}

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ── VPN COMPARISON TABLE ── */
.vpn-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.vpn-table th {
  background: var(--navy-light); color: var(--muted);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 1rem; text-align: left; font-family: 'Syne', sans-serif;
}
.vpn-table td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.vpn-table tr:last-child td { border-bottom: none; }
.vpn-table tr:hover td { background: rgba(255,255,255,0.02); }
.vpn-table .rank { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--cyan); font-size: 1.1rem; }
.vpn-table .vpn-name { font-weight: 600; color: var(--white); font-family: 'Syne', sans-serif; }
.vpn-table .rating { color: var(--warn); font-size: 0.85rem; }
.vpn-table .badge {
  display: inline-block; padding: 0.2rem 0.6rem;
  background: rgba(0,229,192,0.12); color: var(--cyan);
  border-radius: 4px; font-size: 0.72rem; font-weight: 600;
}
.vpn-table .badge--free { background: rgba(255,209,102,0.12); color: var(--warn); }

/* ── PROS/CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.pros-cons__box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.pros-cons__title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.pros-cons__title--pros { color: var(--green); }
.pros-cons__title--cons { color: var(--danger); }
.pros-cons ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pros-cons li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--text); }
.pros-cons li::before { flex-shrink: 0; margin-top: 3px; font-size: 0.75rem; }
.pros-cons--pros li::before { content: '✓'; color: var(--green); font-weight: 700; }
.pros-cons--cons li::before { content: '✗'; color: var(--danger); font-weight: 700; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 1rem; }
.faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  padding: 1.25rem 1.5rem; font-family: 'Syne', sans-serif;
  font-weight: 600; color: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq__q:hover { color: var(--cyan); }
.faq__q::after { content: '+'; color: var(--cyan); font-size: 1.3rem; transition: transform 0.2s; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.95rem; }
.faq__item.open .faq__a { display: block; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 1rem 1.5rem; max-width: 1100px; margin: 0 auto;
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.82rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--border); }

/* ── CALLOUT ── */
.callout {
  background: rgba(0,229,192,0.07); border: 1px solid rgba(0,229,192,0.2);
  border-left: 4px solid var(--cyan); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.callout p { margin: 0; font-size: 0.95rem; }
.callout--warn {
  background: rgba(255,209,102,0.07); border-color: rgba(255,209,102,0.2);
  border-left-color: var(--warn);
}

/* ── STAR RATING ── */
.stars { color: var(--warn); letter-spacing: 2px; }

/* ── COUNTRY CARDS ── */
.country-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.2s; text-decoration: none; display: block;
}
.country-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow); }
.country-card__flag { font-size: 2.5rem; margin-bottom: 1rem; }
.country-card__name { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--white); font-size: 1.2rem; margin-bottom: 0.4rem; }
.country-card__desc { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ── ARTICLE CONTENT ── */
.article { max-width: 780px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.article h2 { margin: 2.5rem 0 1rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.article h3 { margin: 2rem 0 0.75rem; color: var(--cyan); }
.article p { color: var(--muted); margin-bottom: 1.1rem; }
.article ul, .article ol { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1.1rem; }
.article li { margin-bottom: 0.4rem; }
.article strong { color: var(--text); }

/* ── TOC ── */
.toc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem;
}
.toc__title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1rem; }
.toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.toc a { color: var(--muted); font-size: 0.9rem; }
.toc a:hover { color: var(--cyan); }

/* ── FOOTER ── */
.footer {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
}
.footer__inner { max-width: 1100px; margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer__brand p { color: var(--muted); font-size: 0.88rem; margin-top: 0.75rem; max-width: 260px; }
.footer__col h4 { font-family: 'Syne', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a { color: var(--muted); font-size: 0.88rem; }
.footer__col a:hover { color: var(--cyan); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy { color: var(--muted); font-size: 0.82rem; }
.footer__disc { color: var(--muted); font-size: 0.75rem; max-width: 600px; line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy-mid); border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
  }
  .vpn-table { font-size: 0.85rem; }
  .vpn-table th, .vpn-table td { padding: 0.75rem 0.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

/* ── UTILITY ── */
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
