/* ===== DESIGN TOKENS — IPTV KONING STYLE (Dutch Blue/Red/White) ===== */
:root {
  --blue: #0033CC;
  --blue-dark: #001F8A;
  --blue-light: #1A4FFF;
  --red: #E60000;
  --red-dark: #CC0000;
  --gold: #F7C948;
  --green: #22C55E;
  --bg-dark: #0A0F2E;
  --bg-hero: linear-gradient(135deg, #0A0F2E 0%, #0e1a4a 100%);
  --bg-light: #EEF1F8;
  --bg-white: #ffffff;
  --text-dark: #1A1D26;
  --text-body: #4A4E5A;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-blue: rgba(0, 51, 204, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 4px 25px rgba(0, 51, 204, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 15px;
}

body { overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-gradient { color: var(--blue); -webkit-text-fill-color: var(--blue); }
.section-padding { padding: 3.5rem 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.85rem; }
.mt-2 { margin-top: 0.35rem; } .mt-4 { margin-top: 0.75rem; } .mt-6 { margin-top: 1.25rem; }
.mt-8 { margin-top: 1.5rem; } .mt-12 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.35rem; } .mb-4 { margin-bottom: 0.75rem; } .mb-6 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 1.5rem; } .mb-12 { margin-bottom: 2.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-full);
  font-weight: 700; text-decoration: none; transition: all var(--transition);
  cursor: pointer; border: none; font-size: 0.9rem; letter-spacing: 0.01em; gap: 0.5rem;
}

.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 8px 35px rgba(0,51,204,0.4); }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 20px rgba(230,0,0,0.25); }
.btn-red:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 8px 30px rgba(230,0,0,0.4); }

.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline-dark { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: #fff; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10, 15, 46, 0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: all var(--transition);
}
header .container { display: flex; justify-content: space-between; align-items: center; height: 60px; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 25px; width: auto; }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color var(--transition); }
nav a:hover { color: #fff; }
nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--red); transition:width var(--transition); }
nav a:hover::after { width:100%; }
nav a { position: relative; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 0.25rem; }
.header-cta { display: inline-flex; }

/* ===== NAV DROPDOWN ===== */
nav ul li { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-toggle svg { width: 12px; height: 12px; stroke: currentColor; transition: transform 0.3s ease; }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 340px; background: rgba(10,15,46,0.98); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1rem; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.25s ease; z-index: 1001; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
nav ul li:hover > .nav-dropdown, .nav-dropdown:hover { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
nav ul li:hover > .nav-dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.dropdown-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.85rem; border-radius: 12px; text-decoration: none; color: #fff; transition: all 0.2s ease; border: 1px solid transparent; }
.dropdown-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(0,51,204,0.3); transform: translateX(2px); }
.dropdown-item::after { display: none !important; }
.dropdown-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.dropdown-icon.di-1 { background: rgba(0,51,204,0.15); }
.dropdown-icon.di-3 { background: rgba(34,197,94,0.12); }
.dropdown-icon.di-6 { background: rgba(245,158,11,0.12); }
.dropdown-icon.di-12 { background: rgba(220,38,38,0.12); }
.dropdown-icon.di-multi { background: rgba(139,92,246,0.12); }
.dropdown-text { display: flex; flex-direction: column; }
.dropdown-text span:first-child { font-weight: 700; font-size: 0.82rem; line-height: 1.2; }
.dropdown-text span:last-child { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.dropdown-divider { grid-column: 1 / -1; height: 1px; background: rgba(255,255,255,0.06); margin: 0.25rem 0; }
.dropdown-footer { grid-column: 1 / -1; text-align: center; padding-top: 0.5rem; }
.dropdown-footer a { font-size: 0.78rem; color: var(--red); font-weight: 700; text-decoration: none; }
.dropdown-footer a:hover { text-decoration: underline; }
.dropdown-footer a::after { display: none !important; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  padding-top: 60px; overflow: hidden;
  background: url('hero%20image.webp') center center / cover no-repeat;
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(10,15,46,0.88) 0%, rgba(10,15,46,0.72) 40%, rgba(10,15,46,0.92) 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 820px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(230,0,0,0.12); border: 1px solid rgba(230,0,0,0.3);
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; color: #ff4444; margin-bottom: 2rem;
}
.hero-badge svg { width: 16px; height: 16px; stroke: var(--red); }
.hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.025em; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 1.75rem; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Dutch flag divider */
.nl-flag { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin: 0.75rem 0 1rem; }
.nl-flag-line { width: 50px; height: 2px; background: rgba(255,255,255,0.2); }
.nl-flag-icon { font-size: 1.5rem; }

/* Stats bar */
.stats-bar { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-value { font-size: 1.85rem; font-weight: 800; color: var(--red); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }

/* ===== DEVICE STRIP (Infinite Marquee) ===== */
.device-strip {
  background: #fff; border-radius: var(--radius-xl); padding: 0.75rem 0;
  max-width: 900px; margin: -2rem auto 0; position: relative; z-index: 2;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.device-strip::before,
.device-strip::after {
  content: ''; position: absolute; top: 0; width: 60px; height: 100%; z-index: 2; pointer-events: none;
}
.device-strip::before { left: 0; background: linear-gradient(90deg, #fff 0%, transparent 100%); }
.device-strip::after { right: 0; background: linear-gradient(90deg, transparent 0%, #fff 100%); }
.device-strip-track {
  display: flex; align-items: center; gap: 2rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.device-strip-track img {
  height: 36px; width: auto; flex-shrink: 0;
  filter: grayscale(0.2); opacity: 0.85; transition: all var(--transition);
}
.device-strip-track img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MOVIE POSTER STRIP (Infinite Marquee) ===== */
.movie-strip {
  width: 100%; overflow: hidden; position: relative; padding: 0.5rem 0 1rem;
}
.movie-strip::before,
.movie-strip::after {
  content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2; pointer-events: none;
}
.movie-strip::before { left: 0; background: linear-gradient(90deg, #fff 0%, transparent 100%); }
.movie-strip::after { right: 0; background: linear-gradient(90deg, transparent 0%, #fff 100%); }
.movie-strip-track {
  display: flex; align-items: flex-start; gap: 1.25rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.movie-poster-item {
  flex-shrink: 0; width: 160px; text-align: center;
  transition: transform 0.35s ease;
}
.movie-poster-item:hover { transform: scale(1.06) translateY(-4px); }
.movie-poster-item img {
  width: 160px; height: 230px; object-fit: cover;
  border-radius: var(--radius-md); border: 3px solid var(--red);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
}
.movie-poster-item:hover img {
  box-shadow: 0 12px 36px rgba(230,0,0,0.25); border-color: var(--blue);
}
.movie-title {
  display: block; margin-top: 0.5rem; font-size: 0.78rem; font-weight: 700;
  color: var(--text-dark); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; max-width: 160px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .movie-poster-item { width: 130px; }
  .movie-poster-item img { width: 130px; height: 190px; }
  .movie-title { max-width: 130px; font-size: 0.72rem; }
  .movie-strip::before, .movie-strip::after { width: 40px; }
}

/* ===== SECTION STYLES ===== */
.bg-dark { background-color: var(--bg-dark); color: #fff; }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.bg-blue { background: var(--blue); color: #fff; }

.section-header { margin-bottom: 2rem; text-align: center; }
.section-header h2 { font-size: 1.85rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
.section-header h2.text-blue { color: var(--blue); }
.section-header p { color: var(--text-body); font-size: 0.95rem; max-width: 620px; margin: 0 auto; }
.bg-dark .section-header p { color: rgba(255,255,255,0.6); }
.bg-dark .section-header h2 { color: #fff; }

/* ===== TRUST BADGES ===== */
.trust-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-dark);
  font-size: 0.9rem; font-weight: 600; background: #fff; padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
}
.trust-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

/* ===== CARDS ===== */
.card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bg-dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); box-shadow: none; }
.bg-dark .card:hover { background: rgba(255,255,255,0.07); border-color: rgba(0,51,204,0.3); }

/* ===== MOVIE / SPORT POSTER GRID ===== */
.poster-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; overflow: hidden; }
.poster-card {
  width: 180px; height: 260px; border-radius: var(--radius-md); overflow: hidden;
  border: 3px solid var(--red); transition: transform var(--transition);
  flex-shrink: 0;
}
.poster-card:hover { transform: scale(1.05); }
.poster-card img { width: 100%; height: 100%; object-fit: cover; }
.sport-poster-card { border-color: var(--blue); }

/* ===== STEP CARDS ===== */
.step-card { text-align: center; position: relative; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); font-size: 1rem; font-weight: 800;
  margin-bottom: 1rem; color: #fff;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-body); font-size: 0.88rem; }

/* ===== PRICING ===== */
.pricing-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.pricing-card.featured {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: var(--shadow-blue); transform: scale(1.02);
}
.pricing-card.featured:hover { box-shadow: 0 8px 50px rgba(0,51,204,0.35); transform: scale(1.04); }
.pricing-card.featured h3, .pricing-card.featured .price,
.pricing-card.featured .monthly, .pricing-card.featured .feature-list li { color: #fff; }
.pricing-card.featured .feature-list svg { color: #fff; }
.pricing-card.featured .old-price { color: rgba(255,255,255,0.5); }
.pricing-card.featured .bonus { color: var(--gold); }

.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 0.85rem; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem;
  position: static; transform: none; left: auto;
}
.badge-outline { background: transparent; border: 1.5px solid var(--blue); color: var(--blue); }
.badge-gold { background: var(--gold); color: var(--text-dark); }
.badge-red { background: var(--red); color: #fff; }
.badge-blue-fill { background: var(--blue); color: #fff; }

.pricing-card.featured .badge-outline { border-color: rgba(255,255,255,0.4); color: #fff; }

.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; color: var(--text-dark); }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; margin: 0.15rem 0; line-height: 1.2; color: var(--blue); }
.pricing-card.featured .price { color: #fff; }
.pricing-card .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; font-weight: 400; }
.pricing-card .monthly { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; }
.pricing-card .bonus { color: var(--green); font-weight: 700; font-size: 0.85rem; margin-bottom: 0.25rem; }
.feature-list { list-style: none; margin-bottom: 1rem; flex-grow: 1; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.45rem; color: var(--text-body); font-size: 0.82rem; }
.feature-list svg { color: var(--blue); flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }
.pricing-card .btn { width: 100%; }
.pricing-card .btn-primary { background: var(--blue); }
.pricing-card.featured .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.pricing-card.featured .btn-primary:hover { background: #f0f0f0; }

/* Payment icons in pricing */
.payment-icons { display: flex; align-items: center; justify-content: center; gap: 0.25rem; margin-top: 0.75rem; padding: 0.5rem; background: rgba(0,0,0,0.03); border-radius: var(--radius-sm); }
.payment-icons img { height: 22px; width: auto; }
.pricing-card.featured .payment-icons { background: rgba(255,255,255,0.12); }

/* Urgency timer */
.urgency-bar {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
}
.urgency-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.urgency-bar span { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.timer-box { background: var(--bg-light); padding: 0.25rem 0.5rem; border-radius: var(--radius-sm); font-weight: 800; color: var(--blue); font-size: 0.95rem; }

/* ===== FEATURES ===== */
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 1.25rem; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(0,51,204,0.08); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); transition: all var(--transition);
}
.feature-item:hover .feature-icon { background: rgba(0,51,204,0.12); }
.feature-icon svg { width: 20px; height: 20px; }
.feature-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { color: var(--text-body); font-size: 0.85rem; }

/* ===== WHY CHOOSE ===== */
.why-card { text-align: center; padding: 2rem 1.5rem; }
.why-card:hover .why-icon { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0, 51, 204, 0.2); }
.why-icon {
  width: 60px; height: 60px; margin: 0 auto 1.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,51,204,0.08), rgba(0,51,204,0.15));
  border: 1.5px solid rgba(0,51,204,0.12);
  transition: all var(--transition);
}
.why-icon svg { width: 26px; height: 26px; color: var(--blue); stroke: var(--blue); }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.why-card p { color: var(--text-body); font-size: 0.88rem; line-height: 1.65; }

/* ===== DEVICES ===== */
.device-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.device-card { text-align: center; padding: 1rem; }
.device-card .device-icon {
  width: 48px; height: 48px; margin: 0 auto 0.75rem;
  background: rgba(0,51,204,0.06); border: 1px solid var(--border-blue);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--blue); transition: all var(--transition);
}
.device-card:hover .device-icon { background: rgba(0,51,204,0.1); transform: scale(1.05); }
.device-card .device-icon svg { width: 22px; height: 22px; }
.device-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.device-card p { color: var(--text-muted); font-size: 0.8rem; }

/* ===== REVIEWS ===== */
.review-card { display: flex; flex-direction: column; gap: 0.75rem; }
.review-header { display: flex; align-items: center; gap: 0.6rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 0.9rem; }
.stars { color: #F59E0B; font-size: 0.8rem; letter-spacing: 1px; }
.review-card blockquote { color: var(--text-body); font-style: italic; font-size: 0.85rem; line-height: 1.6; border-left: 3px solid var(--blue); padding-left: 0.85rem; }
.bg-dark .review-name { color: #fff; }
.bg-dark .review-card blockquote { color: rgba(255,255,255,0.6); border-color: var(--red); }

/* ===== HIGHLIGHT CARDS ===== */
.highlight-card { text-align: center; padding: 2rem 1.5rem; }
.highlight-icon { width: 56px; height: 56px; margin: 0 auto 1.25rem; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.highlight-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.highlight-card p { color: var(--text-body); font-size: 0.85rem; }

/* ===== FAQ ===== */
.faq-wrapper { max-width: 700px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-md); margin-bottom: 0.5rem; background: #fff; transition: border-color var(--transition); box-shadow: var(--shadow-sm); }
.faq-item:hover { border-color: var(--border-blue); }
.faq-btn { width: 100%; text-align: left; padding: 1rem 1.25rem; background: none; border: none; color: var(--text-dark); font-size: 0.95rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; font-family: inherit; }
.faq-btn svg { flex-shrink: 0; transition: transform var(--transition); color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 1.25rem; }
.faq-answer p { color: var(--text-body); font-size: 0.88rem; line-height: 1.65; }
.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 1rem; }
.faq-item.active .faq-btn svg { transform: rotate(45deg); }
.faq-item.active { border-color: var(--blue); }

/* ===== CTA ===== */
.cta-section { position: relative; overflow: hidden; background: var(--bg-dark); color: #fff; }
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; text-align: center; }
.cta-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }

/* ===== PAYMENT STRIP ===== */
.payment-strip { padding: 1.25rem 0; background: #fff; text-align: center; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.payment-strip p { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.payment-strip img { max-width: 500px; width: 100%; height: auto; }

/* ===== BLOG ===== */
.blog-card { padding: 0; overflow: hidden; }
.blog-card-accent { height: 4px; background: linear-gradient(90deg, var(--blue), var(--red)) !important; }
.blog-card-body { padding: 1.25rem; }
.blog-tag { color: var(--blue); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card-body h3 { margin-top: 0.5rem; font-size: 1.05rem; font-weight: 700; line-height: 1.4; }
.blog-card-body h3 a { color: var(--text-dark); text-decoration: none; transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--blue); }
.blog-card-body p { color: var(--text-body); font-size: 0.85rem; margin-top: 0.5rem; margin-bottom: 1rem; }
.blog-card-body .read-more { color: var(--blue); font-weight: 700; text-decoration: none; font-size: 0.85rem; }
.blog-card-body .read-more:hover { color: var(--red); }

/* ===== COMPARISON ===== */
.comparison-card { padding: 2.5rem; }
.comparison-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.comparison-card p { color: var(--text-body); line-height: 1.8; }

/* ===== FOOTER ===== */
footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 0 1.5rem; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 2rem; }
.footer-col h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.35); font-size: 0.75rem; line-height: 1.6; }
.footer-bottom a { color: var(--red); text-decoration: none; }

/* ===== WHATSAPP ===== */
.floating-whatsapp { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background-color: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); z-index: 999; transition: transform var(--transition), box-shadow var(--transition); }
.floating-whatsapp:hover { transform: scale(1.08); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.floating-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

/* ===== MEDIA-SPLIT SECTIONS ===== */
.media-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.media-split-reverse { direction: rtl; }
.media-split-reverse > * { direction: ltr; }

.media-split-text h2 { font-size: 1.85rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.015em; }
.media-split-text p { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.media-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue); margin-bottom: 0.75rem;
}

.media-stats-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.media-stat {
  text-align: center; padding: 0.6rem 1rem; border-radius: var(--radius-md);
  background: rgba(0,51,204,0.04); border: 1px solid var(--border-blue); min-width: 80px;
}
.media-stat strong { display: block; font-size: 1.2rem; font-weight: 800; color: var(--blue); }
.media-stat span { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* Poster stack with floating images */
.media-poster-stack {
  position: relative; width: 100%; aspect-ratio: 3/4; max-width: 380px; margin: 0 auto;
}
.poster-hero {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.poster-float {
  position: absolute; width: 120px; height: 170px; object-fit: cover;
  border-radius: var(--radius-md); box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 3px solid #fff; z-index: 2; transition: transform 0.4s ease;
}
.poster-float:hover { transform: scale(1.08) rotate(-2deg); }
.poster-float-1 { bottom: -10px; right: -20px; animation: floatUp 3s ease-in-out infinite; }
.poster-float-2 { top: 30px; left: -20px; animation: floatUp 3s ease-in-out infinite 1.5s; }

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

/* Showcase image (full width single) */
.showcase-img {
  width: 100%; max-width: 480px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); margin: 0 auto; display: block;
}

/* Media checklist */
.media-checklist {
  list-style: none; margin-bottom: 1.5rem;
}
.media-checklist li {
  padding: 0.4rem 0; font-size: 0.9rem; font-weight: 600; color: var(--text-dark);
  display: flex; align-items: center; gap: 0.5rem;
}
.bg-dark .media-checklist li { color: #fff; }
.media-checklist li::before { content: none; }

/* ===== WHY STRIP ===== */
.why-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.why-strip-item {
  text-align: center; padding: 1.25rem 0.75rem; background: #fff;
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.why-strip-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
.why-strip-icon {
  width: 44px; height: 44px; margin: 0 auto 0.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,51,204,0.06); border: 1px solid var(--border-blue);
  border-radius: var(--radius-md); color: var(--blue);
  transition: all var(--transition);
}
.why-strip-item:hover .why-strip-icon { background: rgba(0,51,204,0.12); transform: scale(1.1); }
.why-strip-icon svg { width: 22px; height: 22px; }
.why-strip-item h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--text-dark); }
.why-strip-item p { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap {
  overflow-x: auto; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2); margin-bottom: 2.5rem;
}
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem;
}
.comparison-table thead th {
  padding: 1.25rem 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; border-bottom: 2px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; vertical-align: bottom;
}
.comparison-table thead th:first-child {
  text-align: left; color: rgba(255,255,255,0.5); font-weight: 600; width: 50%;
}
.comparison-table th.col-ours {
  text-align: center; width: 25%;
  background: rgba(0,51,204,0.15);
}
.comparison-table th.col-others {
  text-align: center; width: 25%; color: rgba(255,255,255,0.4);
}
.col-badge {
  display: block; font-size: 0.95rem; font-weight: 800; color: #fff;
  letter-spacing: 0; text-transform: none;
}
.col-sub {
  display: block; font-size: 0.7rem; color: rgba(255,255,255,0.45);
  font-weight: 500; margin-top: 0.15rem; text-transform: none; letter-spacing: 0;
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}
.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}
.comparison-table tbody td {
  padding: 0.85rem 1rem; color: rgba(255,255,255,0.8); font-weight: 500;
}
.comparison-table tbody td:first-child {
  font-weight: 600; color: rgba(255,255,255,0.85);
}
.comparison-table tbody td.col-ours {
  text-align: center; background: rgba(0,51,204,0.06);
}
.comparison-table tbody td.col-others {
  text-align: center;
}
.ct-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: #22C55E;
  font-size: 1.1rem; font-weight: 700;
}
.ct-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(239,68,68,0.12); color: #EF4444;
  font-size: 1.1rem; font-weight: 700;
}

/* Comparison highlight cards */
.comp-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.comp-highlight-card {
  text-align: center; padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); transition: all var(--transition);
}
.comp-highlight-card:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(0,51,204,0.3);
  transform: translateY(-4px);
}
.comp-hl-icon {
  width: 52px; height: 52px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,51,204,0.15), rgba(230,0,0,0.1));
  border: 1px solid rgba(0,51,204,0.2); border-radius: 50%;
  color: #fff; transition: all var(--transition);
}
.comp-highlight-card:hover .comp-hl-icon {
  transform: scale(1.12); box-shadow: 0 4px 20px rgba(0,51,204,0.25);
}
.comp-hl-icon svg { width: 24px; height: 24px; }
.comp-highlight-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff;
}
.comp-highlight-card p {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65;
}

/* ===== DEVICES SHOWCASE ===== */
.devices-showcase {
  background: #fff; border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
  max-width: 900px; margin: 0 auto;
}
.devices-showcase-img { width: 100%; height: auto; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.75rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .grid-5, .device-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { gap: 2rem; }
  .poster-card { width: 140px; height: 200px; }
  .media-split { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-strip { grid-template-columns: repeat(3, 1fr); }
  .comp-highlights { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .header-cta { display: none; }
  nav ul { position: fixed; top: 72px; left: -100%; width: 100%; height: calc(100vh - 72px); background: var(--bg-dark); flex-direction: column; align-items: center; padding-top: 2rem; gap: 0; transition: left var(--transition); }
  nav ul li { padding: 1rem 0; width: 100%; text-align: center; }
  nav ul.active { left: 0; }
  .nav-dropdown { position: static; transform: none; min-width: 100%; opacity: 0; max-height: 0; overflow: hidden; visibility: hidden; border: none; border-radius: 0; padding: 0; box-shadow: none; background: rgba(255,255,255,0.03); transition: all 0.3s ease; }
  nav ul li:hover > .nav-dropdown { opacity: 0; visibility: hidden; max-height: 0; transform: none; }
  .nav-dropdown.dropdown-open { opacity: 1; visibility: visible; max-height: 600px; padding: 0.75rem; pointer-events: auto; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 6rem 0 3.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .section-padding { padding: 2.5rem 0; }
  .section-header h2 { font-size: 1.75rem; }
  .grid-2, .grid-3, .grid-4, .grid-5, .device-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; justify-items: center; }
  .cta-content h2 { font-size: 2rem; }
  .device-strip { flex-direction: column; gap: 0.5rem; margin: -1rem 1rem 0; }
  .poster-card { width: 120px; height: 170px; }
  .media-split { grid-template-columns: 1fr; gap: 2rem; }
  .media-split-reverse { direction: ltr; }
  .media-split-text { text-align: center; }
  .media-stats-row { justify-content: center; }
  .media-split-text .btn { width: 100%; max-width: 300px; margin: 0 auto; }
  .media-poster-stack { max-width: 300px; }
  .poster-float { width: 90px; height: 130px; }
  .poster-float-1 { right: -10px; bottom: -5px; }
  .poster-float-2 { left: -10px; top: 20px; }
  .why-strip { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .comp-highlights { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table thead th { padding: 1rem 0.75rem; font-size: 0.75rem; }
  .comparison-table tbody td { padding: 0.7rem 0.75rem; }
  .why-strip-icon { font-size: 1.4rem; }
  .why-strip-item h3 { font-size: 0.8rem; }
  .media-checklist { text-align: left; display: inline-block; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; }
  .trust-badges { flex-direction: column; align-items: center; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .comparison-table-wrap { margin-left: -0.5rem; margin-right: -0.5rem; border-radius: var(--radius-md); }
}
