/* ===== NORDISK IPTV PRO – PREMIUM REDESIGN ===== */

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

/* ===== TOKENS ===== */
:root {
  --bg: #060c18;
  --bg2: #080f1e;
  --bg3: #0a1226;
  --panel: rgba(11, 19, 38, 0.82);
  --panel-2: #0d1830;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover: rgba(255,255,255,0.07);
  --text: #eef2ff;
  --text-dim: #b8c8e8;
  --muted: #7a95bb;
  --line: rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.12);

  /* Brand gradient – electric teal to indigo */
  --primary: #00e5c4;
  --primary-2: #00c4a8;
  --primary-glow: rgba(0,229,196,0.18);
  --secondary: #6366f1;
  --secondary-glow: rgba(99,102,241,0.18);
  --accent: #fbbf24;
  --accent-glow: rgba(251,191,36,0.2);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #00e5c4, #6366f1);
  --grad-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,0.28) 0%, transparent 60%),
               radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0,229,196,0.18) 0%, transparent 50%),
               linear-gradient(180deg, #060c18 0%, #080f1e 100%);

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --shadow: 0 12px 40px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px rgba(0,229,196,0.15);

  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;
  --max: 1200px;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Ambient background glow blobs */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 40vh;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,229,196,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }

.container {
  width: min(var(--max), 94%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
.site-header::after,
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--line);
  background: rgba(6,12,24,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(6,12,24,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  color: #03211b;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,229,196,0.35), inset 0 1px 1px rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.logo > div { line-height: 1.1; }
.logo span { color: var(--primary); }

/* Nav */
.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--text);
  background: var(--glass);
}

/* ===== BUTTONS ===== */
.btn, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn {
  background: var(--grad-primary);
  color: #03211b;
  box-shadow: 0 8px 24px rgba(0,229,196,0.3), 0 2px 8px rgba(0,0,0,0.2);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: inherit;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,229,196,0.4), 0 4px 12px rgba(0,0,0,0.3);
}
.btn:active { transform: translateY(0) scale(0.99); }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 52px;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

/* Decorative grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

/* Glass cards */
.glass {
  background: linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: 44px;
  position: relative;
  overflow: hidden;
}

/* Glow orb inside hero copy */
.hero-copy::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  color: var(--primary);
  background: rgba(0,229,196,0.08);
  border: 1px solid rgba(0,229,196,0.2);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

h1 {
  font-family: var(--font-display);
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #fff 30%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.7;
}
.lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.hero-actions .btn {
  padding: 16px 30px;
  font-size: 1rem;
}
.hero-actions .btn-secondary {
  padding: 15px 26px;
  font-size: 1rem;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.micro-proof span {
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.micro-proof span:hover {
  border-color: rgba(0,229,196,0.3);
  color: var(--primary);
}

/* Hero side panel */
.hero-side {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.side-stat:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(0,229,196,0.18);
  transform: translateX(4px);
}

.side-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,229,196,0.2), rgba(99,102,241,0.15));
  border: 1px solid rgba(0,229,196,0.15);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.side-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.side-stat .muted {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trust-pill {
  padding: 14px 16px;
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-spring);
}
.trust-pill:hover {
  background: rgba(0,229,196,0.07);
  border-color: rgba(0,229,196,0.22);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section.section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 40px;
  max-width: 760px;
}
.section-head h2 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(140deg, #fff 40%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Section divider */
section.section + section.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ===== FEATURE CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card, .metric-card, .faq-card, .compare-card, .content-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.042) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover, .faq-card:hover, .compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,229,196,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,229,196,0.08);
}

.feature-top {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(0,229,196,0.15), rgba(99,102,241,0.12));
  border: 1px solid rgba(0,229,196,0.12);
}

.feature-card h3, .metric-card h3, .content-card h3, .compare-card h3, .faq-card h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.feature-card p, .metric-card p, .content-card p, .compare-card p, .faq-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ===== METRIC CARDS ===== */
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  text-align: center;
  padding: 36px 26px;
  position: relative;
  overflow: hidden;
}
.metric-card::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,196,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

/* ===== CONTENT SPLIT ===== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.content-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.content-card li {
  color: var(--text-dim);
  font-size: 0.93rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-card li:last-child { border-bottom: none; }
.content-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-shell {
  padding: 40px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 50% at 100% -20%, rgba(0,229,196,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(99,102,241,0.1) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,0.042) 0%, rgba(255,255,255,0.012) 100%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(10,18,35,0.9) 0%, rgba(8,14,28,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.price-card.popular {
  border: 1px solid rgba(0,229,196,0.45);
  background: linear-gradient(160deg, rgba(0,229,196,0.05) 0%, rgba(10,18,35,0.95) 40%);
  box-shadow: 0 0 0 1px rgba(0,229,196,0.1), 0 20px 50px rgba(0,229,196,0.12);
}
.price-card.popular::before {
  background: linear-gradient(90deg, transparent, rgba(0,229,196,0.3), transparent);
}
.price-card.popular:hover {
  border-color: rgba(0,229,196,0.65);
  box-shadow: 0 0 0 1px rgba(0,229,196,0.2), 0 30px 70px rgba(0,229,196,0.18);
}

.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #1a0e00;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(251,191,36,0.3);
}

.price-card h3 {
  font-family: var(--font-display);
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -0.05em;
  background: linear-gradient(140deg, #fff, rgba(255,255,255,0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card.popular .price {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-sub {
  color: var(--muted);
  font-size: 0.87rem;
  margin-bottom: 18px;
  line-height: 1.4;
}

.price-card ul {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
  flex-grow: 1;
}
.price-card li {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: '✓';
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(0,229,196,0.12);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.price-card .btn, .price-card .btn-secondary {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ===== COMPARE ===== */
.compare-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compare-card:nth-child(3) {
  border-color: rgba(0,229,196,0.15);
  background: linear-gradient(145deg, rgba(0,229,196,0.04) 0%, rgba(255,255,255,0.015) 100%);
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ===== CTA BOX ===== */
.cta-box {
  padding: 52px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(0,229,196,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(99,102,241,0.1) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,0.042) 0%, rgba(255,255,255,0.012) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,196,0.4), rgba(99,102,241,0.4), transparent);
}

.cta-box h2 {
  font-family: var(--font-display);
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  background: linear-gradient(140deg, #fff 40%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-box p {
  margin: 0;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: center;
}

.cta-row .btn {
  padding: 16px 36px;
  font-size: 1rem;
}
.cta-row .btn-ghost {
  padding: 15px 32px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 60px;
  padding: 50px 0 60px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer > .container > div:first-child h3 {
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text);
}

.footer a {
  display: block;
  color: var(--text-dim);
  margin: 8px 0;
  font-size: 0.92rem;
  transition: color 0.2s, transform 0.2s;
}
.footer a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== ARTICLE PAGES ===== */
.article-hero {
  padding: 52px 0 20px;
  position: relative;
  z-index: 1;
}

.article-shell {
  padding: 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(255,255,255,0.042) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}
.breadcrumbs a {
  color: var(--primary);
  transition: opacity 0.2s;
}
.breadcrumbs a:hover { opacity: 0.75; }
.breadcrumbs::after { content: none; }

.article h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-bottom: 22px;
}

.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 36px 0 14px;
  letter-spacing: -0.03em;
  background: linear-gradient(140deg, #fff 40%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 22px 0 10px;
  color: var(--text);
}

.article p, .article li {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
}

.article ul {
  padding: 0;
  margin: 14px 0;
  list-style: none;
}
.article ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.article ul li:last-child { border-bottom: none; }
.article ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table th {
  background: rgba(0,229,196,0.08);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 14px 18px;
  border: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.info-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.quote {
  padding: 20px 22px;
  border-left: 3px solid var(--primary);
  background: rgba(0,229,196,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  color: var(--text-dim);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  background: linear-gradient(135deg, #25D366, #1da750);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  letter-spacing: 0.01em;
}
.whatsapp-float::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: ping 1.5s ease-in-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
}

/* ===== SCROLL-IN ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-copy, .hero-side {
  animation: fadeUp 0.7s var(--ease-out) both;
}
.hero-side {
  animation-delay: 0.12s;
}

.trust-pill:nth-child(1) { animation: fadeUp 0.5s var(--ease-out) 0.05s both; }
.trust-pill:nth-child(2) { animation: fadeUp 0.5s var(--ease-out) 0.10s both; }
.trust-pill:nth-child(3) { animation: fadeUp 0.5s var(--ease-out) 0.15s both; }
.trust-pill:nth-child(4) { animation: fadeUp 0.5s var(--ease-out) 0.20s both; }
.trust-pill:nth-child(5) { animation: fadeUp 0.5s var(--ease-out) 0.25s both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero-grid,
  .card-grid,
  .pricing-grid,
  .metric-row,
  .compare-shell,
  .content-split {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-shell { padding: 28px; }
}

@media (max-width: 720px) {
  .header-row {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0;
  }
  .nav { flex-wrap: wrap; gap: 8px; }

  .hero { padding: 44px 0 32px; }
  .hero-grid,
  .card-grid,
  .pricing-grid,
  .metric-row,
  .faq-grid,
  .footer-grid,
  .compare-shell,
  .content-split,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy { padding: 28px 24px; }
  .hero-side { padding: 20px; }
  .article-shell { padding: 24px 20px; }
  .pricing-shell { padding: 20px 16px; }
  .cta-box { padding: 32px 24px; }

  h1 { font-size: 2rem; }
  .section-head h2 { font-size: 1.65rem; }

  .price { font-size: 2.4rem; }
  section.section { padding: 44px 0; }

  .hero-actions .btn,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-row .btn,
  .cta-row .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
    font-size: 0.83rem;
  }
}

@media (max-width: 420px) {
  .trust-grid { grid-template-columns: 1fr; }
  .logo { font-size: 18px; }
  .logo-badge { width: 36px; height: 36px; font-size: 15px; }
}

/* ===== HEADER SCROLL JS HOOK ===== */
/* Applied via JS — class added on scroll */
