/* =========================================================
   kopen-tv.nl — Dutch IPTV Site
   Design system inspired by iptv-foot.online
   ========================================================= */

/* ---- Google Fonts (Inter) ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables — Dutch NL Colors ---- */
:root {
  --primary: #3B7FD4;         /* Dutch blue (bright, readable on dark) */
  --primary-dark: #2563B4;
  --primary-light: #5B9AE8;
  --accent: #C4252E;           /* Dutch red */
  --accent-dark: #A01920;
  --accent-light: #D94048;
  --nl-red: #AE1C28;           /* Dutch flag red */
  --nl-blue: #21468B;          /* Dutch flag blue */
  --dark: #0a0a1a;
  --surface: #141533;
  --surface-2: #0f1029;
  --border: #1e2045;
  --border-light: rgba(30,32,69,0.6);
  --gold: gold;
  --cyan: #5B9AE8;
  --green: #05df72;
  --red: #ff6568;
  --text-primary: #ffffff;
  --text-secondary: #d1d5dc;
  --text-muted: #99a1af;
  --glass-bg: rgba(15,16,41,0.75);
  --glass-border: rgba(59,127,212,0.15);
  --shadow-primary: rgba(59,127,212,0.25);
  --shadow-accent: rgba(196,37,46,0.25);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --transition: 0.15s cubic-bezier(0.4,0,0.2,1);
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--dark);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; }
strong { font-weight: 700; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }

/* ---- Typography ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-accent {
  background: linear-gradient(135deg, var(--accent), #E06070);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Animations ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0,0,.2,1) infinite; }
.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  box-shadow: 0 4px 20px var(--shadow-primary);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(0,168,255,0.4);
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ffaa00);
  color: #fff;
  box-shadow: 0 4px 20px var(--shadow-accent);
}
.btn-accent:hover {
  box-shadow: 0 8px 32px rgba(255,107,0,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8125rem; }

/* ---- Glass Card ---- */
.glass-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* ---- Header / Navigation ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,26,0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow var(--transition);
  overflow: hidden;
}
.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 0 16px rgba(196,37,46,0.4);
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-link-trial {
  color: var(--accent);
}
.nav-link-trial:hover {
  background: rgba(255,107,0,0.1);
  color: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile menu button */
.nav-mobile-btn {
  display: none;
  color: var(--text-primary);
  padding: 0.5rem;
  background: none;
  border: none;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,10,26,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.mobile-menu-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ---- Hero Section — Gradient Wave ---- */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  min-height: 620px;
  display: flex;
  align-items: center;
}

/* WebGL gradient wave canvas container */
#hero-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

#hero-wave-bg canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Dark overlay — fades wave into the dark page below */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 26, 0.18) 0%,
    rgba(10, 10, 26, 0.38) 55%,
    rgba(10, 10, 26, 0.82) 80%,
    var(--dark) 100%
  );
}

/* Hide old glow elements if present */
.hero-bg-glow { display: none !important; }

.hero-section > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 100px 0 80px;
}

/* Left column: content */
.hero-section .hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,127,212,0.15);
  border: 1px solid rgba(59,127,212,0.3);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #90BCFF;
  font-weight: 500;
}

.hero-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(1.875rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title-sub {
  display: block;
  font-size: 0.62em;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

/* Legacy class alias */
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-desc strong { color: var(--text-primary); }
.hero-desc a { color: var(--accent-light); font-weight: 600; }
.hero-desc a:hover { text-decoration: underline; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.trust-check { color: var(--green); }

/* Right column: stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: rgba(10, 10, 26, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  transition: border-color var(--transition), transform 0.2s ease;
}

.stat-card:hover {
  border-color: rgba(59,127,212,0.3);
  transform: translateY(-2px);
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  display: inline;
}

/* ---- Legacy .hero class (inner pages fallback) ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(59,127,212,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(91,154,232,0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(196,37,46,0.04) 0%, transparent 60%),
              var(--dark);
  padding-top: 72px;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 380px; height: 380px;
  top: 80px; left: -60px;
  background: rgba(59,127,212,0.08);
}

.hero-orb-2 {
  width: 320px; height: 320px;
  bottom: 60px; right: -40px;
  background: rgba(196,37,46,0.06);
}

.hero-orb-3 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(91,154,232,0.05);
  filter: blur(120px);
}

/* ---- Stats Section ---- */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { }

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Pricing Section ---- */
.pricing-section {
  background: linear-gradient(180deg, var(--dark) 0%, rgba(20,21,51,0.5) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,168,255,0.25);
  box-shadow: 0 20px 60px rgba(0,168,255,0.1);
}

.pricing-card.popular {
  border-color: var(--primary);
  background: rgba(0,168,255,0.06);
  box-shadow: 0 0 0 1px var(--primary), 0 24px 64px rgba(0,168,255,0.2);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.3125rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.pricing-badge.best-deal {
  background: linear-gradient(135deg, #05df72, #00b894);
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pricing-duration {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-currency { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); align-self: flex-start; margin-top: 0.5rem; }
.pricing-period { font-size: 0.75rem; color: var(--text-muted); }

.pricing-discount {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-feature:last-child { border-bottom: none; }

.pricing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(5,223,114,0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6875rem;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.875rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.pricing-cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,168,255,0.3);
}
.pricing-cta-primary:hover {
  box-shadow: 0 8px 32px rgba(0,168,255,0.45);
  transform: translateY(-1px);
}

.pricing-cta-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-primary);
}
.pricing-cta-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}

.pricing-payment {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-badge {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.3125rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---- Features Section ---- */
.features-section {
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(0,168,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,168,255,0.08);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-xl);
  background: rgba(0,168,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  font-size: 1.375rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FAQ Section ---- */
.faq-section {
  background: var(--dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(0,168,255,0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 300;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, rgba(0,168,255,0.08) 0%, rgba(0,212,255,0.04) 50%, rgba(255,107,0,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Devices Section ---- */
.devices-section { background: var(--surface); }

.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.device-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.2s ease;
}

.device-card:hover {
  border-color: rgba(0,168,255,0.2);
  transform: translateY(-2px);
}

.device-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.device-name { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }

/* ---- Comparison Table ---- */
.comparison-section { background: var(--dark); }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.comparison-table th {
  background: rgba(0,168,255,0.08);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(0,168,255,0.03); }

.table-highlight {
  color: var(--primary) !important;
  font-weight: 700;
}

.badge-yes { color: var(--green); font-weight: 600; }
.badge-no { color: var(--red); }
.badge-partial { color: var(--gold); }

/* ---- Page Hero (inner pages) — with gradient wave ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  padding: 120px 0 60px;
}

/* Wave container for inner pages */
#page-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

#page-wave-bg canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Same dark overlay as homepage hero */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 26, 0.22) 0%,
    rgba(10, 10, 26, 0.45) 60%,
    rgba(10, 10, 26, 0.88) 100%
  );
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ---- Content Sections ---- */
.content-section { background: var(--dark); }
.content-section-alt { background: var(--surface); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.content-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.content-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Info Cards ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.info-card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
}

.step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Footer ---- */
.site-footer {
  background: #060613;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand { }
.footer-brand-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-brand-logo-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-name { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.footer-brand-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--primary); }
.footer-contact a.whatsapp:hover { color: var(--green); }

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(30,32,69,0.8);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-pay-icon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  background: #25d366;
  border-radius: var(--radius-full);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  color: #fff;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-primary-color { color: var(--primary); }
.text-accent-color { color: var(--accent); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-white { color: var(--text-primary); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.gap-3 { gap: 0.75rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.hidden { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner { gap: 2rem; }
}

@media (max-width: 900px) {
  .section-padding { padding: 60px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 0.8125rem; }
  .comparison-table th, .comparison-table td { padding: 0.75rem 0.875rem; }
  /* Hero: stack on tablet */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 0 60px;
    gap: 2.5rem;
  }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-section { min-height: auto; }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { padding: 72px 0 48px; }
  .hero-trust { gap: 0.875rem; }
  .whatsapp-float { bottom: 1rem; right: 1rem; padding: 0.75rem 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-h1 { font-size: 1.875rem; }
  .hero-title { font-size: 1.75rem; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   MOBILE FIXES — kopen-tv.nl
   =================================================== */

/* --- Touch targets --- */
a, button, [role="button"] {
  min-height: 44px;
  min-width: 44px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --- Global overflow guard --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100vw; overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; height: auto; }
table { min-width: 0; }

/* --- Page hero: fix huge top padding on mobile --- */
@media (max-width: 900px) {
  .page-hero { padding: 90px 0 44px; }
  .page-hero-title { font-size: clamp(1.5rem, 5vw, 2.25rem); }
  .page-hero-desc { font-size: 0.9375rem; }
}
@media (max-width: 640px) {
  .page-hero { padding: 72px 0 36px; }
  .page-hero-title { font-size: clamp(1.35rem, 6vw, 2rem); max-width: 100%; }
  .page-hero-desc { font-size: 0.9rem; margin-bottom: 1rem; }
  .page-hero-image { margin-top: 1rem; border-radius: 8px; }
  .page-hero-image img { border-radius: 8px; }
}

/* --- Homepage hero: fix min-height & grid on mobile --- */
@media (max-width: 900px) {
  .hero-section { min-height: auto; padding-top: 72px; }
  .hero-inner { padding: 56px 0 48px; }
}
@media (max-width: 640px) {
  .hero-section { min-height: auto; }
  .hero-inner { padding: 40px 0 36px; gap: 2rem; }
  .hero-h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); margin-bottom: 1rem; }
  .hero-title { font-size: clamp(1.5rem, 6.5vw, 2.25rem); }
  .hero-desc { font-size: 0.9375rem; margin-bottom: 1.25rem; }
  .hero-badge { font-size: 0.8125rem; padding: 0.375rem 1rem; margin-bottom: 1rem; }
  .hero-trust { gap: 0.625rem; font-size: 0.75rem; margin-top: 1.25rem; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 0.75rem; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .hero-inner { padding: 32px 0 28px; }
}

/* --- Section padding --- */
@media (max-width: 640px) {
  .section-padding { padding: 44px 0; }
  .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .section-padding { padding: 36px 0; }
}

/* --- Pricing cards: prevent scale overflow on mobile --- */
@media (max-width: 640px) {
  .pricing-card.popular { transform: none; box-shadow: none; }
  .pricing-card { padding: 1.5rem 1.25rem; border-radius: 14px; }
  .pricing-grid { gap: 1rem; }
}

/* --- Stats grid: 2 cols on mobile --- */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* --- Section headings --- */
@media (max-width: 640px) {
  .section-title { font-size: clamp(1.35rem, 6vw, 2rem); }
  .section-subtitle { font-size: 0.9rem; }
}

/* --- FAQPage accordion --- */
@media (max-width: 640px) {
  .faq-question { padding: 1rem; font-size: 0.9375rem; }
  .faq-answer-inner { padding: 0 1rem 1rem; font-size: 0.9rem; }
}

/* --- Comparison table --- */
@media (max-width: 640px) {
  .comparison-table th,
  .comparison-table td { padding: 0.625rem 0.75rem; font-size: 0.8rem; }
  .comparison-table th:first-child,
  .comparison-table td:first-child { min-width: 120px; }
}

/* --- Footer --- */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { font-size: 0.8125rem; }
}

/* --- WhatsApp float: clear mobile browser chrome --- */
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: 1rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

/* --- Breadcrumb --- */
@media (max-width: 640px) {
  .breadcrumb { font-size: 0.8125rem; flex-wrap: wrap; gap: 0.25rem; }
}

/* --- Steps grid --- */
@media (max-width: 480px) {
  .steps-grid { gap: 1rem; }
  .step-number { font-size: 1.25rem; }
}

/* --- Nav mobile: ensure tap area --- */
.nav-mobile-btn { min-height: 44px; min-width: 44px; }

/* --- Info / feature cards --- */
@media (max-width: 480px) {
  .feature-card, .info-card { padding: 1.25rem 1rem; }
}

/* ============================================================
   DESIGN ENHANCEMENT — kopen-tv.nl
   Visual upgrade: cards, buttons, pricing, layout, mobile
   ============================================================ */

/* ── Buttons — more polished ─────────────────────────────── */
.btn {
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: -0.015em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #3B7FD4 0%, #5B9AE8 100%);
  box-shadow: 0 4px 18px rgba(59,127,212,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2563B4 0%, #3B7FD4 100%);
  box-shadow: 0 8px 28px rgba(59,127,212,0.45);
  transform: translateY(-2px);
}
.btn-accent {
  background: linear-gradient(135deg, #C4252E 0%, #E85B5B 100%);
  box-shadow: 0 4px 18px rgba(196,37,46,0.35);
}
.btn-accent:hover {
  box-shadow: 0 8px 28px rgba(196,37,46,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 10px;
}
.btn-outline:hover {
  border-color: rgba(59,127,212,0.5);
  background: rgba(59,127,212,0.08);
}

/* ── Glass card — more depth ─────────────────────────────── */
.glass-card {
  background: rgba(13,14,38,0.72);
  border: 1px solid rgba(59,127,212,0.13);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

/* ── Pricing cards — premium feel ───────────────────────── */
.pricing-card {
  background: rgba(13,14,38,0.72);
  border: 1.5px solid rgba(59,127,212,0.1);
  border-radius: 22px;
  padding: 2rem 1.625rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  border-color: rgba(59,127,212,0.3);
  box-shadow: 0 12px 40px rgba(59,127,212,0.12);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--primary);
  background: rgba(59,127,212,0.07);
  box-shadow: 0 0 0 2px rgba(59,127,212,0.3), 0 20px 56px rgba(59,127,212,0.18);
}
.pricing-amount { font-size: 2.75rem; font-weight: 900; letter-spacing: -0.05em; }
.pricing-check {
  width: 20px; height: 20px;
  background: rgba(5,223,114,0.12);
  border: 1px solid rgba(5,223,114,0.25);
  border-radius: 50%;
}
.pricing-cta {
  border-radius: 10px;
  font-weight: 700;
  padding: 0.9375rem;
  transition: all 0.15s ease;
}
.pricing-cta-primary {
  background: linear-gradient(135deg, #3B7FD4, #5B9AE8);
  box-shadow: 0 4px 18px rgba(59,127,212,0.3);
}
.pricing-cta-primary:hover {
  box-shadow: 0 8px 28px rgba(59,127,212,0.45);
  transform: translateY(-1px);
}
.pricing-feature {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.4rem 0;
  font-size: 0.875rem;
}

/* ── Feature cards ───────────────────────────────────────── */
.feature-card {
  background: rgba(13,14,38,0.65);
  border: 1.5px solid rgba(59,127,212,0.1);
  border-radius: 18px;
  padding: 1.875rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  border-color: rgba(59,127,212,0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(59,127,212,0.1);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59,127,212,0.18), rgba(91,154,232,0.08));
  border: 1px solid rgba(59,127,212,0.2);
  font-size: 1.5rem;
}
.feature-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.feature-desc { font-size: 0.875rem; line-height: 1.7; }

/* ── Info cards ──────────────────────────────────────────── */
.info-card {
  background: rgba(13,14,38,0.65);
  border: 1.5px solid rgba(59,127,212,0.1);
  border-radius: 18px;
  padding: 1.875rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.info-card:hover {
  border-color: rgba(59,127,212,0.25);
  transform: translateY(-3px);
}
.info-card-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.info-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }

/* ── Step cards ──────────────────────────────────────────── */
.step-card {
  background: rgba(13,14,38,0.65);
  border: 1.5px solid rgba(59,127,212,0.1);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.step-card:hover {
  border-color: rgba(59,127,212,0.25);
  transform: translateY(-3px);
}
.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, #5B9AE8 100%);
  box-shadow: 0 4px 16px rgba(59,127,212,0.35);
  font-size: 1.375rem;
}

/* ── Stats section ───────────────────────────────────────── */
.stat-card {
  background: rgba(13,14,38,0.72);
  border: 1.5px solid rgba(59,127,212,0.1);
  border-radius: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  padding: 1.5rem 1.25rem;
}
.stat-card:hover {
  border-color: rgba(59,127,212,0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(59,127,212,0.1);
}

/* ── Device cards ────────────────────────────────────────── */
.device-card {
  background: rgba(13,14,38,0.65);
  border: 1.5px solid rgba(59,127,212,0.08);
  border-radius: 16px;
  padding: 1.25rem 0.875rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.device-card:hover {
  border-color: rgba(59,127,212,0.28);
  transform: translateY(-3px);
}
.device-icon { font-size: 2.25rem; margin-bottom: 0.625rem; }
.device-name { font-size: 0.75rem; font-weight: 600; }

/* ── FAQ items ───────────────────────────────────────────── */
.faq-item {
  background: rgba(13,14,38,0.65);
  border: 1.5px solid rgba(59,127,212,0.1);
  border-radius: 16px;
}
.faq-item.open { border-color: rgba(59,127,212,0.3); box-shadow: 0 4px 20px rgba(59,127,212,0.08); }
.faq-question { font-size: 0.9375rem; font-weight: 600; }
.faq-icon {
  width: 30px; height: 30px;
  background: rgba(59,127,212,0.1);
  border: 1px solid rgba(59,127,212,0.2);
  border-radius: 50%;
  color: var(--primary);
}
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); }

/* ── Section headers ─────────────────────────────────────── */
.section-tag {
  background: rgba(59,127,212,0.1);
  border: 1px solid rgba(59,127,212,0.22);
  color: #90BCFF;
  font-size: 0.775rem;
  border-radius: 999px;
  padding: 0.3rem 1rem;
}
.section-header { margin-bottom: 2.5rem; }

/* ── Nav bar ─────────────────────────────────────────────── */
.site-header {
  background: rgba(8,8,22,0.92);
  border-bottom: 1px solid rgba(59,127,212,0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}
.nav-logo-icon { border-radius: 11px; }
.nav-link {
  border-radius: 9px;
  font-size: 0.875rem;
}
.nav-link:hover, .nav-link.active {
  background: rgba(59,127,212,0.1);
  color: #90BCFF;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #05050f; }
.footer-col-title { color: rgba(255,255,255,0.9); letter-spacing: 0.06em; }
.footer-links a:hover { color: #90BCFF; }
.footer-pay-icon {
  background: rgba(59,127,212,0.08);
  border: 1px solid rgba(59,127,212,0.15);
  color: rgba(255,255,255,0.6);
  border-radius: 7px;
}

/* ── WhatsApp float ──────────────────────────────────────── */
.whatsapp-float {
  background: #20b558;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(32,181,88,0.45);
  font-size: 0.875rem;
}
.whatsapp-float:hover {
  background: #1a9a4a;
  box-shadow: 0 10px 32px rgba(32,181,88,0.55);
  transform: translateY(-2px);
}

/* ── Comparison table ────────────────────────────────────── */
.comparison-table {
  border-radius: 18px;
  border: 1.5px solid rgba(59,127,212,0.12);
  background: rgba(13,14,38,0.7);
}
.comparison-table th {
  background: rgba(59,127,212,0.08);
  font-size: 0.875rem;
}
.comparison-table tr:hover td { background: rgba(59,127,212,0.04); }

/* ── Payment badges ──────────────────────────────────────── */
.payment-badge {
  background: rgba(59,127,212,0.08);
  border: 1px solid rgba(59,127,212,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
}

/* ── Content grid ────────────────────────────────────────── */
.content-title { letter-spacing: -0.03em; }

/* ── Hero enhancements ───────────────────────────────────── */
.hero-badge {
  background: rgba(59,127,212,0.12);
  border: 1px solid rgba(59,127,212,0.25);
  font-size: 0.8125rem;
}
.stat-number { letter-spacing: -0.05em; }

/* ── Mobile: better spacing & sizing ────────────────────── */
@media (max-width: 640px) {
  .pricing-card { border-radius: 18px; padding: 1.5rem 1.25rem; }
  .feature-card, .info-card { border-radius: 16px; }
  .step-card { border-radius: 16px; }
  .faq-item { border-radius: 14px; }
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }
  .section-header { margin-bottom: 2rem; }
  .step-number { width: 44px; height: 44px; font-size: 1.125rem; }
  .feature-icon { width: 44px; height: 44px; border-radius: 12px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .pricing-amount { font-size: 2.25rem; }
  .device-card { border-radius: 14px; }
  .nav-logo-text { font-size: 1.125rem; }
  .hero-badge { padding: 0.3rem 0.875rem; }
}
