/*
Theme Name: IPTV Starter Theme
Theme URI: https://example.com/iptv-starter
Author: IPTV Developer
Author URI: https://example.com
Description: A modern IPTV subscription WordPress WooCommerce theme with pricing plans, FAQ, testimonials, and responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-starter
Tags: woocommerce, e-commerce, custom-header, custom-menu, featured-images, theme-options

IPTV Starter Theme - A premium IPTV subscription theme for WordPress + WooCommerce.
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --primary: #1a3af5;
  --primary-dark: #0f2bc4;
  --primary-light: #4d6aff;
  --secondary: #ff6b35;
  --accent: #7c3aed;
  --dark: #0a1628;
  --dark-light: #1a2744;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #f5f7ff;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 245, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-orange {
  background: var(--secondary);
  color: #fff;
}

.btn-orange:hover {
  background: #e55a25;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.site-header.scrolled .nav-link {
  color: var(--text);
}

.site-header.scrolled .site-logo {
  color: var(--primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo svg {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

.site-header.scrolled .nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.site-header.scrolled .mobile-toggle span {
  background: var(--dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a0a3e 0%, #2d1b69 25%, #1a3af5 50%, #4d6aff 75%, #7c3aed 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-white), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(90deg, #ff6b35, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero payment icons — SVG default + optional PNG override */
.hero-pay-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0;
  line-height: 0;
}
.hero-pay-item svg {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.hero-pay-item img {
  height: 32px;
  width: auto;
  max-width: 90px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  padding: 4px 8px;
  box-sizing: border-box;
}
.hero-pay-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 5px 10px;
}

.payment-icons img,
.payment-icons svg {
  height: 28px;
  opacity: 0.9;
}

.hero-visual {
  position: relative;
}

.hero-mockup {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-content {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-channel {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

.mockup-channel:nth-child(2) {
  background: linear-gradient(135deg, var(--secondary), #ff8f65);
}

.mockup-channel:nth-child(3) {
  background: linear-gradient(135deg, var(--success), #34d399);
}

.mockup-channel:nth-child(4) {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.mockup-channel:nth-child(5) {
  background: linear-gradient(135deg, var(--warning), #fbbf24);
}

.mockup-channel:nth-child(6) {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

/* ============================================
   CONTENT DISCOVERY SECTION
   ============================================ */
.content-discovery {
  padding: 80px 0;
  background: var(--bg-white);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.content-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  transition: var(--transition);
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}

.content-card:nth-child(1) .content-card-placeholder { background: linear-gradient(135deg, #1e3a5f, #2d5a87); }
.content-card:nth-child(2) .content-card-placeholder { background: linear-gradient(135deg, #4a1a2e, #7a2d4a); }
.content-card:nth-child(3) .content-card-placeholder { background: linear-gradient(135deg, #2d1b4e, #4a2d7a); }
.content-card:nth-child(4) .content-card-placeholder { background: linear-gradient(135deg, #1a3a1a, #2d5a2d); }
.content-card:nth-child(5) .content-card-placeholder { background: linear-gradient(135deg, #3a2d1a, #5a4a2d); }
.content-card:nth-child(6) .content-card-placeholder { background: linear-gradient(135deg, #1a2d3a, #2d4a5a); }

.content-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--secondary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 80px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.features-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.features-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.features-list {
  margin-bottom: 32px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text);
  font-size: 15px;
}

.features-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 2px;
}

.features-visual {
  position: relative;
}

.features-image-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.features-image-placeholder .icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.features-image-placeholder .icon-item {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.features-image-placeholder .icon-item svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   PRICING SECTION (Updated design)
   ============================================ */
.pricing {
  padding: 80px 0;
  background: var(--bg-white);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--bg-light);
  padding: 4px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 48px;
}

.pricing-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
  border: none;
  background: transparent;
  font-family: var(--font-main);
  position: relative;
}

.pricing-tab.active {
  background: var(--primary);
  color: #fff;
}

.pricing-tab .tab-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.featured .popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  padding: 6px 24px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Plan badge row (STARTER / MEEST GEKOZEN / BESTE WAARDE) */
.plan-badge-row {
  margin-bottom: 12px;
}

.plan-name-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-name-badge.badge-featured {
  background: #fff3e0;
  color: #e65100;
}

.pricing-card .plan-duration {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-card .plan-subtitle-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card .plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-card .plan-price .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.pricing-card .plan-price .amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-card .plan-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-savings {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-screens-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pricing-card .plan-features {
  margin-bottom: 20px;
}

.pricing-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
}

.pricing-card .plan-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.plan-guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff8e1;
  color: #f57f17;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-card .plan-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.pricing-card .plan-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CHECKOUT PAGE (Custom)
   ============================================ */
/* ============================================
   CHECKOUT PAGE — Full redesign
   ============================================ */

/* Page shell */
.iptv-checkout-page {
  min-height: 100vh;
  background: #f5f7fa;
  padding-bottom: 80px;
}

/* Header */
.iptv-checkout-header {
  text-align: center;
  padding: 56px 20px 40px;
}

.iptv-checkout-title {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.15;
}

.iptv-checkout-title span {
  color: var(--primary);
}

.iptv-checkout-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

/* Grid */
.iptv-checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

/* Card base */
.iptv-checkout-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
}

/* Card header row */
.iptv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.iptv-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.iptv-card-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* ---- FORM FIELDS ---- */
.iptv-form-fields .form-row,
.iptv-checkout-left .form-row {
  margin: 0 0 20px;
  padding: 0;
}

.iptv-form-fields .form-row label,
.iptv-checkout-left .form-row label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 7px;
  display: block;
}

.iptv-form-fields .form-row label .required,
.iptv-checkout-left .form-row label .required {
  color: #ef4444;
  margin-left: 2px;
}

/* Input wrapper — adds icon inside */
.iptv-form-fields .form-row .woocommerce-input-wrapper,
.iptv-checkout-left .form-row .woocommerce-input-wrapper {
  position: relative;
  display: block;
}

.iptv-form-fields .form-row input[type="text"],
.iptv-form-fields .form-row input[type="email"],
.iptv-form-fields .form-row input[type="tel"],
.iptv-checkout-left .form-row input[type="text"],
.iptv-checkout-left .form-row input[type="email"],
.iptv-checkout-left .form-row input[type="tel"] {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-main);
  color: #111827;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.iptv-form-fields .form-row input:focus,
.iptv-checkout-left .form-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 245, 0.10);
}

.iptv-form-fields .form-row input::placeholder,
.iptv-checkout-left .form-row input::placeholder {
  color: #9ca3af;
}

/* Field icons using background-image */
#billing_first_name {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px 18px;
}

#billing_email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M22 7l-10 7L2 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px 18px;
}

#billing_whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.68A2 2 0 012 .88h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px 18px;
}

/* WhatsApp helper text */
.iptv-checkout-left .form-row p.description,
.iptv-form-fields .form-row p.description,
#billing_whatsapp_field .description {
  font-size: 12px;
  color: #9ca3af;
  margin: 6px 0 0;
}

/* Place order button */
.iptv-place-order,
.iptv-checkout-form #place_order,
.iptv-checkout-left #place_order {
  width: 100%;
  background: #1e3a8a;
  color: #fff !important;
  padding: 17px 24px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.30);
  letter-spacing: 0.2px;
}

.iptv-place-order:hover,
.iptv-checkout-form #place_order:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

/* Trust badges */
.iptv-trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 14px;
}

.iptv-trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #6b7280;
}

.iptv-trust-badges span svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---- ORDER SUMMARY CARD ---- */
.iptv-order-card {
  background: #fff;
}

.iptv-order-body {
  /* content area */
}

.iptv-order-badge {
  display: inline-block;
  background: #fff7ed;
  color: #c2410c;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.iptv-order-name {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.2;
}

.iptv-order-screens {
  font-size: 13.5px;
  color: #9ca3af;
  margin: 0 0 20px;
}

.iptv-order-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.iptv-order-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 13.5px;
  color: #374151;
}

.iptv-order-features li svg {
  flex-shrink: 0;
}

/* Price rows */
.iptv-price-rows {
  margin-bottom: 4px;
}

.iptv-price-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  color: #4b5563;
  border-bottom: 1px solid #f9fafb;
}

/* Total */
.iptv-order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 14px;
  border-top: 1.5px solid #e5e7eb;
  margin-top: 4px;
}

.iptv-total-label {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.iptv-total-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

/* Savings */
.iptv-order-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 10px 18px;
  border-radius: 8px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Payment section */
.iptv-pay-section {
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  text-align: center;
}

.iptv-pay-label {
  font-size: 12.5px;
  color: #9ca3af;
  margin: 0 0 10px;
  font-weight: 500;
}

.iptv-pay-logos {
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.iptv-pay-logos span {
  display: inline-flex;
  line-height: 0;
}

.iptv-pay-logos svg {
  display: block;
  height: 30px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

/* Back link */
.iptv-back-link {
  text-align: center;
  margin-top: 16px;
}

.iptv-back-link a {
  font-size: 13.5px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.iptv-back-link a:hover {
  color: var(--primary);
}

/* Hide default WooCommerce elements we replace */
.iptv-checkout-form .woocommerce-checkout-review-order-table,
.iptv-checkout-form .woocommerce-shipping-fields,
.iptv-checkout-form .woocommerce-account-fields,
.iptv-checkout-form .woocommerce-additional-fields {
  display: none !important;
}

/* WC error/notice positioning */
.iptv-checkout-page .woocommerce-notices-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Checkout responsive */
@media (max-width: 768px) {
  .iptv-checkout-grid {
    grid-template-columns: 1fr;
  }
  .iptv-checkout-title {
    font-size: 28px;
  }

  .iptv-checkout-header {
    padding-top: 60px;
  }
}

/* ============================================
   BENEFITS SECTION (What you get)
   ============================================ */
.benefits {
  padding: 80px 0;
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.security {
  padding: 80px 0;
  background: var(--bg-white);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.security-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.security-content > p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.security-features h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.security-features ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
}

.security-features ul li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-top: 2px;
}

.security-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Uploaded image display */
.security-image-wrap {
  background: linear-gradient(145deg, #e8eef8 0%, #dce6f5 50%, #e2e8f7 100%);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(100, 130, 200, 0.18);
}

.security-image-wrap img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

/* Fallback placeholder */
.security-image-placeholder {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.security-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.8;
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps {
  padding: 80px 0;
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.step-number svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 80px 0;
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--warning);
  fill: var(--warning);
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}

.testimonial-info .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.testimonial-info .role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
  transition: var(--transition);
}

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

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   KNOWLEDGE BASE SECTION
   ============================================ */
.knowledge {
  padding: 80px 0;
  background: var(--bg-white);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.knowledge-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  cursor: pointer;
}

.knowledge-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.knowledge-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.knowledge-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.knowledge-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.knowledge-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0a3e, #1a3af5, #4d6aff);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.06)"/></svg>');
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.cta-features span svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  padding: 60px 0 20px;
  color: rgba(255,255,255,0.92);
}

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

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.footer-column h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-payments img {
  height: 24px;
  opacity: 0.6;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce .products ul,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.woocommerce ul.products li.product {
  margin: 0;
  padding: 0;
  width: 100%;
}

.woocommerce ul.products li.product a.button,
.woocommerce a.button {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: var(--transition);
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce a.button:hover {
  background: var(--primary-dark);
}

.woocommerce #respond input#submit,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.woocommerce #respond input#submit:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--primary-dark);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-inner {
    gap: 40px;
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  /* Header Mobile */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    color: var(--text);
    padding: 12px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero Mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Content Grid Mobile */
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Pricing Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  /* Benefits Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Security Mobile */
  .security-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Steps Mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid::before {
    display: none;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Knowledge Mobile */
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Mobile */
  .cta-inner h2 {
    font-size: 28px;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-payments {
    justify-content: center;
  }

  /* WooCommerce Mobile */
  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    text-align: center;
  }

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

  .pricing-tabs {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
  }

  .section-title {
    font-size: 24px;
  }
}

/* ============================================
   HEADER — Updated clean nav
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}
.site-logo svg { color: var(--primary); }
.site-logo .custom-logo { height: 40px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu .nav-link:hover { color: var(--primary); background: #f0f4ff; }
.nav-menu .nav-cta {
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-weight: 700;
}
.nav-menu .nav-cta:hover { background: var(--primary-dark); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.mobile-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
}
.mobile-nav-drawer.open { display: block; }
.mobile-nav-drawer nav {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  gap: 4px;
}
.mobile-nav-drawer nav a {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav-drawer nav a:hover { background: #f0f4ff; color: var(--primary); }
.mobile-nav-drawer nav .mobile-cta-btn {
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ============================================
   LOGOS TICKER
   ============================================ */
.logos-ticker {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0 22px;
  overflow: hidden;
}
.logos-ticker-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.logos-track-wrapper {
  overflow: hidden;
  position: relative;
  /* Fade edges */
}
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.logos-track-wrapper::before { left: 0;  background: linear-gradient(to right, #fff 30%, transparent); }
.logos-track-wrapper::after  { right: 0; background: linear-gradient(to left,  #fff 30%, transparent); }

.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
  width: max-content;
  /* NEVER pause — not on hover, not ever */
  animation-play-state: running !important;
}
/* Absolutely no pause on hover or focus */
.logos-track:hover,
.logos-track-wrapper:hover .logos-track,
.logos-track:focus,
.logos-track * {
  animation-play-state: running !important;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  filter: grayscale(100%) brightness(0.6);
  cursor: default;
  user-select: none;
}
.logo-item img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}
.logo-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.logo-svg svg {
  height: 36px;
  width: auto;
  display: block;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ============================================
   FEATURES IMAGE GRID
   ============================================ */
.features-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.fimg-cell { overflow: hidden; border-radius: 8px; }
.fimg-cell img { width:100%; height:100%; object-fit:cover; display:block; }
.fimg-placeholder { width:100%; height:100%; background: #e8eeff; }
.fimg-label-cell {
  grid-column: 2 / 4;
  grid-row: 3;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  border-radius: 8px;
}
.fimg-upload-hint {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.5);
  padding: 8px;
  border-radius: 4px;
  margin: 0 8px;
}
.features-img-grid--empty .fimg-cell { border-radius: 8px; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison { padding: 80px 0; background: #f8f9ff; }
.compare-description {
  max-width: 720px;
  margin: 16px auto 40px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
.compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}
.compare-table thead tr { border-bottom: 2px solid var(--border); }
.compare-table th {
  padding: 24px 20px;
  text-align: center;
  vertical-align: bottom;
}
.compare-feature-col { width: 120px; text-align: left; }
.compare-us {
  background: var(--primary);
  color: #fff;
  border-radius: 12px 12px 0 0;
  position: relative;
}
.compare-us svg { width: 28px; height: 28px; margin-bottom: 8px; display: block; margin-inline: auto; }
.compare-us strong { display: block; font-size: 18px; }
.compare-us-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.compare-other svg { width: 24px; height: 24px; margin-bottom: 8px; display: block; margin-inline: auto; color: var(--text-muted); }
.compare-other strong { display: block; font-size: 16px; color: var(--text); }
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: #f8f9ff; }
.compare-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  vertical-align: middle;
}
.compare-row-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  white-space: nowrap;
}
.compare-us-cell { background: #f0f4ff; font-weight: 600; color: var(--dark); }
.cmp-check { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: #dcfce7; border-radius: 50%; color: #16a34a; margin-right: 8px; flex-shrink: 0; }
.cmp-cross { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: #fee2e2; border-radius: 50%; color: #dc2626; margin-right: 8px; flex-shrink: 0; }
.cmp-dash  { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: #f3f4f6; border-radius: 50%; color: #9ca3af; margin-right: 8px; flex-shrink: 0; font-weight: 700; }
.cmp-check svg, .cmp-cross svg { width: 12px; height: 12px; }

/* ============================================
   PRICING PANEL (tabs)
   ============================================ */
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* ============================================
   FOOTER — Updated design
   ============================================ */
.site-footer {
  background: #f8f9ff;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-logo svg { color: var(--primary); }
.footer-tagline {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 16px;
}
.dmca-badge {
  display: inline-block;
  background: #e8eeff;
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.footer-column h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 16px;
}
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-column ul li a:hover { color: var(--primary); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #e8eeff;
  border-radius: 50%;
  color: var(--primary);
  transition: var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-bottom-links span { color: var(--border); }
.footer-payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 8px;
}
.pay-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.pay-logo-wrap svg {
  display: block;
  height: 46px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.10));
}
.pay-logo-wrap:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
}

/* ============================================
   PAGE TEMPLATES — Common
   ============================================ */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}
.page-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero-title .text-primary { color: var(--primary); }
.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
body:not(.front-page) .content-area { padding-top: 68px; }

/* ============================================
   INSTALLATIEGIDS PAGE
   ============================================ */
.installatiegids-page .page-hero { background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%); }
.install-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 60px 0;
  align-items: start;
}
.install-sidebar {
  position: sticky;
  top: 90px;
}
.install-nav { list-style: none; padding: 0; margin: 0; }
.install-nav li { margin-bottom: 4px; }
.install-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}
.install-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); }
.install-nav-link:hover { background: #f0f4ff; color: var(--primary); }
.install-nav-link:hover svg { color: var(--primary); }
.install-nav-link.active {
  background: #e8eeff;
  color: var(--primary);
  border-color: var(--primary-light);
  font-weight: 600;
}
.install-nav-link.active svg { color: var(--primary); }
.install-content h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.install-intro { color: var(--text-light); margin-bottom: 32px; font-size: 16px; }
.install-app-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.install-app-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.install-steps {
  padding-left: 20px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}
.install-steps li { margin-bottom: 8px; }
.install-steps code {
  background: #e8eeff;
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
}
.install-steps ul {
  margin-top: 8px;
  padding-left: 20px;
}

/* ============================================
   KENNISBANK / BLOG PAGE
   ============================================ */
.kennisbank-page .page-hero { background: #fff; padding-top: 100px; }
.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.kb-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.kb-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.kb-card-icon {
  width: 44px; height: 44px;
  background: #e8eeff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.kb-card-icon svg { width: 22px; height: 22px; }
.kb-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.kb-card p  { font-size: 14px; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.kb-read-more { font-size: 14px; font-weight: 600; color: var(--primary); }
.kb-recent-posts {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.kb-recent-posts h2 { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.kb-post-list { list-style: none; padding: 0; }
.kb-post-list li { border-bottom: 1px solid var(--border); }
.kb-post-list li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
.kb-post-list li a:hover { color: var(--primary-dark); text-decoration: underline; }

/* ============================================
   IPTV KOPEN PAGE
   ============================================ */
.iptv-kopen-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}
.iptv-kopen-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
  margin-inline: auto;
}
.iptv-kopen-hero p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Stats bar */
.stats-bar { padding: 48px 0; border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* Streaming cost comparison */
.streaming-cost-comparison {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.streaming-cost-comparison h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cost-price { color: var(--text-muted); }
.cost-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  border-top: 2px solid var(--border);
  margin-top: 4px;
}
.cost-iptv {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: #e8eeff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
}

/* ============================================
   OVER ONS PAGE
   ============================================ */
.over-ons-hero {
  padding: 120px 0 60px;
  text-align: center;
}
.over-ons-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.over-ons-intro {
  font-size: 17px;
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}
.about-divider {
  width: 40px; height: 3px;
  background: var(--primary);
  margin-bottom: 16px;
  border-radius: 2px;
}
.about-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.about-content p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.about-content p em { color: var(--text-muted); }
.about-image-box {
  background: #e8eeff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}
.about-quote {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  margin-bottom: 48px;
  position: relative;
}
.about-quote-mark {
  font-size: 60px;
  line-height: 1;
  opacity: 0.3;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.about-quote p { font-size: 17px; line-height: 1.7; margin: 0; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.about-value {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.about-value-icon {
  width: 48px; height: 48px;
  background: #e8eeff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.about-value-icon svg { width: 24px; height: 24px; }
.about-value h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.about-value p  { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ============================================
   ANIMATION helpers
   ============================================ */
.will-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE RESPONSIVE — All new sections
   ============================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .kb-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); gap: 32px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .install-layout { grid-template-columns: 1fr; }
  .install-sidebar { position: static; }
  .install-nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .install-nav li { margin: 0; }
  .install-nav-link { font-size: 13px; padding: 8px 12px; }
}

@media (max-width: 768px) {
  body { padding-top: 68px; }

  .page-hero-title { font-size: 32px; }
  .page-hero-subtitle { font-size: 16px; }

  /* Logos ticker */
  .logos-track { gap: 32px; }

  /* Comparison table */
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }

  /* Pricing panel */
  .pricing-panel .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .pricing-card.featured { transform: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-bottom-links { justify-content: center; }
  .footer-payment-icons { justify-content: center; }

  /* IPTV Kopen */
  .iptv-kopen-hero h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }

  /* Over Ons */
  .over-ons-hero h1 { font-size: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-values-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Kennisbank */
  .kb-grid { grid-template-columns: 1fr; }

  /* Image grid */
  .features-img-grid { aspect-ratio: auto; min-height: 320px; }

  /* Features-why-label */
  .features-why-label { font-size: 16px; }
}

@media (max-width: 480px) {
  .page-hero-title { font-size: 26px; }

  .stats-bar .stat-number { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .pricing-tabs { padding: 4px; }
  .pricing-tab { padding: 8px 12px; font-size: 13px; }

  .install-nav { gap: 6px; }
  .install-nav-link { font-size: 12px; padding: 7px 10px; }

  .about-quote p { font-size: 15px; }
  .footer-copy { font-size: 12px; }
}


/* ── Contrast ratio fixes (Lighthouse accessibility) ── */
.section-subtitle          { color: #4b5563 !important; }
.section-label             { color: #2563eb !important; }
.plan-period               { color: #374151 !important; }
.plan-secure               { color: #6b7280 !important; }
.testimonial-info .role    { color: #4b5563 !important; }
.hero-description          { color: rgba(255,255,255,0.93) !important; }
.hero-trust span           { color: rgba(255,255,255,0.93) !important; }
.footer-bottom-links a     { color: #374151 !important; }
.footer-bottom-links a:hover { color: #1d4ed8 !important; }
.footer-copy               { color: #374151 !important; }
.knowledge-card p          { color: #4b5563 !important; }
.benefit-card p            { color: #4b5563 !important; }
.compare-row-label         { color: #1f2937 !important; font-weight: 500; }
.faq-answer-inner          { color: #374151 !important; }
.step-desc                 { color: #4b5563 !important; }


/* ================================================================
   IPTV GRATIS PROEF PAGE
   ================================================================ */

.proef-hero {
    padding: 100px 24px 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1240 100%);
    text-align: center;
}
.proef-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 20px; }
.proef-hero-sub { font-size: 18px; color: var(--text-muted, #888); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.proef-cta-btn { font-size: 18px; padding: 18px 40px; }
.proef-no-cc { margin-top: 16px; color: var(--text-muted, #888); font-size: 14px; }

.proef-trust-bar { background: var(--gray-900, #0f0f11); border-top: 1px solid var(--border-color, rgba(255,255,255,.08)); border-bottom: 1px solid var(--border-color, rgba(255,255,255,.08)); padding: 32px 24px; }
.proef-trust-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.proef-trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.proef-trust-icon { font-size: 28px; }
.proef-trust-item strong { font-size: 20px; font-weight: 800; }
.proef-trust-item span { font-size: 13px; color: var(--text-muted, #888); }

.proef-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.proef-feature-card { background: var(--card-bg, rgba(255,255,255,.04)); border: 1px solid var(--border-color, rgba(255,255,255,.08)); border-radius: 16px; padding: 32px; transition: transform .2s, border-color .2s; }
.proef-feature-card:hover { transform: translateY(-4px); border-color: var(--primary, #1a3af5); }
.proef-feature-icon { font-size: 36px; margin-bottom: 16px; }
.proef-feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.proef-feature-card p { font-size: 14px; color: var(--text-muted, #888); line-height: 1.6; }

.proef-steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
.proef-step { text-align: center; flex: 1; min-width: 200px; max-width: 260px; padding: 0 16px; }
.proef-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary, #1a3af5); color: #fff; font-size: 24px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.proef-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.proef-step p { font-size: 14px; color: var(--text-muted, #888); line-height: 1.6; }
.proef-step-arrow { font-size: 28px; color: var(--primary, #1a3af5); padding: 28px 8px 0; flex-shrink: 0; }

.proef-why-inner { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }
.proef-why-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.proef-why-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }

.proef-card-inner { background: var(--card-bg, rgba(255,255,255,.04)); border: 2px solid var(--primary, #1a3af5); border-radius: 20px; padding: 36px; }
.proef-card-badge { display: inline-block; background: var(--primary, #1a3af5); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 1px; }
.proef-card-inner h3 { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
.proef-card-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.proef-card-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }

.proef-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.proef-faq-item { border-bottom: 1px solid var(--border-color, rgba(255,255,255,.08)); padding: 24px 0; }
.proef-faq-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.proef-faq-item p { font-size: 14px; color: var(--text-muted, #888); line-height: 1.7; margin: 0; }

.proef-final-cta { background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,58,245,.25) 0%, transparent 70%); }

/* ================================================================
   IPTV ABONNEMENTEN PAGE
   ================================================================ */

.abbo-hero { padding: 80px 24px 60px; text-align: center; }
.abbo-trust-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
.abbo-trust-row span { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted, #888); }

.abbo-trust-section {}
.abbo-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.abbo-trust-item { text-align: center; padding: 32px 20px; }
.abbo-trust-icon { font-size: 36px; margin-bottom: 14px; }
.abbo-trust-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.abbo-trust-item p { font-size: 14px; color: var(--text-muted, #888); line-height: 1.6; }

.abbo-proef-cta { background: var(--gray-900, #0f0f11); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .proef-why-inner { grid-template-columns: 1fr; }
    .proef-steps-grid { flex-direction: column; align-items: center; }
    .proef-step-arrow { transform: rotate(90deg); padding: 0; }
    .abbo-trust-row { gap: 12px; }
}
@media (max-width: 600px) {
    .proef-trust-grid { gap: 20px; }
    .proef-hero h1 { font-size: 36px; }
    .proef-cta-btn { padding: 14px 28px; font-size: 16px; }
}


/* ================================================================
   GRATIS PROEF PAGE - SCOPED FIXES
   (body class added by WordPress for page-iptv-gratis-proef.php)
   ================================================================ */

/* ── Hero ── */
.page-template-page-iptv-gratis-proef .proef-hero,
.page-template-page-iptv-abonnementen .abbo-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d1240 100%) !important;
}

.page-template-page-iptv-gratis-proef .proef-hero h1 {
    color: #ffffff !important;
    font-size: clamp(36px, 5vw, 64px) !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 20px !important;
}

.page-template-page-iptv-gratis-proef .proef-hero .section-label {
    background: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.page-template-page-iptv-gratis-proef .proef-hero .text-primary {
    color: #7c9fff !important;
}

.page-template-page-iptv-gratis-proef .proef-hero-sub {
    color: rgba(255,255,255,0.8) !important;
}

.page-template-page-iptv-gratis-proef .proef-no-cc {
    color: rgba(255,255,255,0.6) !important;
}

/* ── Trust bar ── */
.page-template-page-iptv-gratis-proef .proef-trust-bar {
    background: #0f0f11 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 32px 24px !important;
}

.page-template-page-iptv-gratis-proef .proef-trust-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.page-template-page-iptv-gratis-proef .proef-trust-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    text-align: center !important;
    min-width: 80px !important;
}

.page-template-page-iptv-gratis-proef .proef-trust-icon {
    font-size: 28px !important;
    display: block !important;
}

.page-template-page-iptv-gratis-proef .proef-trust-item strong {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    display: block !important;
}

.page-template-page-iptv-gratis-proef .proef-trust-item span {
    font-size: 13px !important;
    color: #aaaaaa !important;
    display: block !important;
}

/* ── WAT JE KRIJGT section ── */
.page-template-page-iptv-gratis-proef .proef-wat-section {
    background: #ffffff !important;
    padding: 80px 24px !important;
}

.page-template-page-iptv-gratis-proef .proef-wat-section .section-title {
    color: #0a1628 !important;
}

.page-template-page-iptv-gratis-proef .proef-wat-section .section-subtitle {
    color: #555555 !important;
}

.page-template-page-iptv-gratis-proef .proef-features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

.page-template-page-iptv-gratis-proef .proef-feature-card {
    display: block !important;
    background: #f5f7ff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 32px !important;
    transition: transform .2s, border-color .2s !important;
}

.page-template-page-iptv-gratis-proef .proef-feature-card:hover {
    transform: translateY(-4px) !important;
    border-color: #1a3af5 !important;
}

.page-template-page-iptv-gratis-proef .proef-feature-icon {
    font-size: 36px !important;
    margin-bottom: 16px !important;
    display: block !important;
}

.page-template-page-iptv-gratis-proef .proef-feature-card h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
    margin-bottom: 10px !important;
}

.page-template-page-iptv-gratis-proef .proef-feature-card p {
    font-size: 14px !important;
    color: #666666 !important;
    line-height: 1.6 !important;
}

/* ── Steps section (dark bg) ── */
.page-template-page-iptv-gratis-proef .proef-steps-section {
    background: #0a1628 !important;
    padding: 80px 24px !important;
}

.page-template-page-iptv-gratis-proef .proef-steps-section .section-title,
.page-template-page-iptv-gratis-proef .proef-steps-section .section-subtitle,
.page-template-page-iptv-gratis-proef .proef-steps-section h2 {
    color: #ffffff !important;
}

.page-template-page-iptv-gratis-proef .proef-steps-section .section-subtitle {
    color: rgba(255,255,255,0.7) !important;
}

.page-template-page-iptv-gratis-proef .proef-steps-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
}

.page-template-page-iptv-gratis-proef .proef-step {
    text-align: center !important;
    flex: 1 !important;
    min-width: 180px !important;
    max-width: 250px !important;
    padding: 0 16px !important;
}

.page-template-page-iptv-gratis-proef .proef-step h3 {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.page-template-page-iptv-gratis-proef .proef-step p {
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px !important;
}

.page-template-page-iptv-gratis-proef .proef-step-arrow {
    font-size: 28px !important;
    color: #1a3af5 !important;
    padding-top: 20px !important;
    flex-shrink: 0 !important;
    align-self: flex-start !important;
}

/* ── Why section (light) ── */
.page-template-page-iptv-gratis-proef .proef-why-section {
    background: #ffffff !important;
    padding: 80px 24px !important;
}

.page-template-page-iptv-gratis-proef .proef-why-inner {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 64px !important;
    align-items: center !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.page-template-page-iptv-gratis-proef .proef-why-section .section-title,
.page-template-page-iptv-gratis-proef .proef-why-section h2 {
    color: #0a1628 !important;
    text-align: left !important;
}

.page-template-page-iptv-gratis-proef .proef-why-list li {
    color: #333333 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.page-template-page-iptv-gratis-proef .proef-card-inner {
    background: #f5f7ff !important;
    border: 2px solid #1a3af5 !important;
    border-radius: 20px !important;
    padding: 36px !important;
}

.page-template-page-iptv-gratis-proef .proef-card-inner h3 {
    color: #0a1628 !important;
}

.page-template-page-iptv-gratis-proef .proef-card-list li {
    color: #333333 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* ── FAQ section (dark) ── */
.page-template-page-iptv-gratis-proef .proef-faq-section {
    background: #0a1628 !important;
    padding: 80px 24px !important;
}

.page-template-page-iptv-gratis-proef .proef-faq-section .section-title,
.page-template-page-iptv-gratis-proef .proef-faq-section h2 {
    color: #ffffff !important;
}

.page-template-page-iptv-gratis-proef .proef-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 24px 0 !important;
}

.page-template-page-iptv-gratis-proef .proef-faq-item h3 {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.page-template-page-iptv-gratis-proef .proef-faq-item p {
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* ── Final CTA ── */
.page-template-page-iptv-gratis-proef .proef-final-cta {
    background: #f5f7ff !important;
    padding: 80px 24px !important;
    text-align: center !important;
}

.page-template-page-iptv-gratis-proef .proef-final-cta .section-title,
.page-template-page-iptv-gratis-proef .proef-final-cta h2 {
    color: #0a1628 !important;
}

.page-template-page-iptv-gratis-proef .proef-final-cta .section-subtitle,
.page-template-page-iptv-gratis-proef .proef-final-cta p {
    color: #555555 !important;
}

/* ── Abonnementen page hero ── */
.page-template-page-iptv-abonnementen .abbo-hero {
    padding: 80px 24px 48px !important;
    text-align: center !important;
    background: #f5f7ff !important;
}

.page-template-page-iptv-abonnementen .abbo-hero .section-title,
.page-template-page-iptv-abonnementen .abbo-hero h1 {
    color: #0a1628 !important;
}

.page-template-page-iptv-abonnementen .abbo-trust-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-top: 24px !important;
}

.page-template-page-iptv-abonnementen .abbo-trust-row span {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #555555 !important;
}

.page-template-page-iptv-abonnementen .abbo-trust-section {
    background: #0a1628 !important;
    padding: 64px 24px !important;
}

.page-template-page-iptv-abonnementen .abbo-trust-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.page-template-page-iptv-abonnementen .abbo-trust-item h3 {
    color: #ffffff !important;
}

.page-template-page-iptv-abonnementen .abbo-trust-item p {
    color: rgba(255,255,255,0.65) !important;
}

.page-template-page-iptv-abonnementen .abbo-proef-cta {
    background: #f5f7ff !important;
    padding: 64px 24px !important;
    text-align: center !important;
}

.page-template-page-iptv-abonnementen .abbo-proef-cta .section-title,
.page-template-page-iptv-abonnementen .abbo-proef-cta h2 {
    color: #0a1628 !important;
}

.page-template-page-iptv-abonnementen .abbo-proef-cta .section-subtitle,
.page-template-page-iptv-abonnementen .abbo-proef-cta p {
    color: #555555 !important;
}

/* ── Responsive for new pages ── */
@media (max-width: 1024px) {
    .page-template-page-iptv-gratis-proef .proef-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .page-template-page-iptv-abonnementen .abbo-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .page-template-page-iptv-gratis-proef .proef-features-grid {
        grid-template-columns: 1fr !important;
    }
    .page-template-page-iptv-gratis-proef .proef-why-inner {
        grid-template-columns: 1fr !important;
    }
    .page-template-page-iptv-gratis-proef .proef-steps-grid {
        flex-direction: column !important;
        align-items: center !important;
    }
    .page-template-page-iptv-gratis-proef .proef-step-arrow {
        transform: rotate(90deg) !important;
        padding: 0 !important;
        align-self: center !important;
    }
    .page-template-page-iptv-abonnementen .abbo-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .page-template-page-iptv-abonnementen .abbo-trust-row {
        gap: 12px !important;
    }
}

@media (max-width: 480px) {
    .page-template-page-iptv-gratis-proef .proef-features-grid {
        grid-template-columns: 1fr !important;
    }
    .page-template-page-iptv-abonnementen .abbo-trust-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ================================================================
   INSTALLATIEGIDS PAGE (ig-* classes)
   ================================================================ */

.ig-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d1240 100%);
    padding: 100px 24px 64px;
    text-align: center;
}

.ig-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.ig-hero-title .text-primary { color: #7c9fff; }

.ig-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.ig-device-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ig-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.90);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.ig-pill:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.ig-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Layout */
.ig-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* Sidebar */
.ig-sidebar {
    position: sticky;
    top: 90px;
}

.ig-sidebar-inner {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ig-sidebar-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 12px;
}

.ig-nav { list-style: none; padding: 0; margin: 0; }
.ig-nav li { margin-bottom: 2px; }

.ig-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #444;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: background .15s, color .15s;
    border: 1px solid transparent;
}

.ig-nav-link svg { width: 16px; height: 16px; flex-shrink: 0; color: #aaa; transition: color .15s; }

.ig-nav-link:hover {
    background: #f0f4ff;
    color: #1a3af5;
}

.ig-nav-link:hover svg { color: #1a3af5; }

.ig-nav-link.active {
    background: #e8eeff;
    color: #1a3af5;
    border-color: #c7d4ff;
    font-weight: 600;
}

.ig-nav-link.active svg { color: #1a3af5; }

/* Content */
.ig-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #e2e8f0;
}

.ig-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ig-section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.ig-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8eeff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ig-section-icon svg { width: 22px; height: 22px; color: #1a3af5; }

.ig-section h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ig-section-intro {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.ig-app-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 16px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.ig-app-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a3af5;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8eeff;
}

.ig-steps {
    padding-left: 22px;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.ig-steps li { margin-bottom: 10px; }

.ig-steps code {
    background: #e8eeff;
    color: #1a3af5;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 13px;
    font-family: monospace;
}

.ig-steps ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

.ig-steps ul li { margin-bottom: 6px; }

.ig-tip {
    background: #f0f4ff;
    border-left: 3px solid #1a3af5;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    font-size: 14px;
    color: #444;
    margin-top: 16px;
    line-height: 1.6;
}

/* Help section */
.ig-help-section { background: #f8faff; border-radius: 20px; padding: 40px; border: 1px solid #e2e8f0; }
.ig-help-section h2 { color: #0a1628; margin-bottom: 8px; }

.ig-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.ig-help-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ig-help-icon {
    width: 52px;
    height: 52px;
    background: #e8eeff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ig-help-icon svg { width: 22px; height: 22px; color: #1a3af5; }

.ig-help-card h3 { font-size: 16px; font-weight: 700; color: #0a1628; margin-bottom: 8px; }
.ig-help-card p { font-size: 14px; color: #666; line-height: 1.5; margin: 0; }

/* CTA section */
.ig-cta-section { padding: 80px 24px; }

/* Responsive */
@media (max-width: 900px) {
    .ig-layout {
        grid-template-columns: 1fr;
    }
    .ig-sidebar {
        position: static;
    }
    .ig-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .ig-nav li { margin: 0; }
    .ig-nav-link { font-size: 12px; padding: 7px 10px; }
    .ig-sidebar-inner { padding: 16px; }
}

@media (max-width: 600px) {
    .ig-hero { padding: 80px 16px 48px; }
    .ig-help-grid { grid-template-columns: 1fr; }
    .ig-section-header { flex-direction: column; gap: 12px; }
    .ig-help-section { padding: 24px 16px; }
    .ig-app-block { padding: 20px 16px; }
}


/* ================================================================
   IPTV KOPEN PAGE v2 (ik2-* classes)
   ================================================================ */

/* Hero */
.ik2-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d1240 100%);
    padding: 100px 24px 72px;
    text-align: center;
}

.ik2-hero-title {
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.ik2-hero-title .text-primary { color: #7c9fff; }

.ik2-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.ik2-hero-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: background .2s, border-color .2s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

.ik2-hero-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ik2-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

/* Stats */
.ik2-stats {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 32px 0;
}

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

.ik2-stat strong {
    display: block;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #1a3af5;
    line-height: 1.1;
}

.ik2-stat span {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    display: block;
}

/* Comparison */
.ik2-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ik2-compare-text .section-label { margin-bottom: 12px; }

.ik2-compare-text h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ik2-compare-text > p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ik2-cost-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ik2-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.ik2-cost-row:last-of-type { border-bottom: none; }

.ik2-cost-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
    border-top: 2px solid #e2e8f0;
    margin-top: 4px;
}

.ik2-cost-iptv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8eeff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a3af5;
}

.ik2-compare-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    background: #e8eeff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d0daff;
    margin: 0 auto;
}

.ik2-compare-placeholder svg { width: 80px; height: 80px; color: #1a3af5; opacity: 0.25; }

/* Sport badges */
.ik2-sport-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.ik2-sport-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
}

/* Steps */
.ik2-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ik2-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    padding: 0 20px;
}

.ik2-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1a3af5;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ik2-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.ik2-step p { font-size: 14px; color: #666; line-height: 1.6; }

.ik2-step-arrow {
    font-size: 28px;
    color: #1a3af5;
    padding-top: 16px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* Devices */
.ik2-devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ik2-device-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}

.ik2-device-card:hover {
    border-color: #1a3af5;
    box-shadow: 0 4px 16px rgba(26,58,245,0.1);
}

.ik2-device-icon {
    width: 48px;
    height: 48px;
    background: #e8eeff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.ik2-device-icon svg { width: 22px; height: 22px; color: #1a3af5; }
.ik2-device-card h3 { font-size: 13px; font-weight: 700; color: #0a1628; margin: 0; }

/* Reviews */
.ik2-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ik2-review-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ik2-review-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.ik2-review-card p { font-size: 14px; color: #444; line-height: 1.65; margin-bottom: 16px; }
.ik2-review-author { display: flex; align-items: center; gap: 8px; }
.ik2-review-author strong { font-size: 14px; color: #0a1628; }
.ik2-review-author span { font-size: 12px; color: #888; }

/* FAQ */
.ik2-faq-list { max-width: 760px; margin: 0 auto; }

.ik2-faq-item { border-bottom: 1px solid #e2e8f0; }

.ik2-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0a1628;
    gap: 16px;
}

.ik2-faq-q .ik2-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #1a3af5;
    transition: transform .2s;
}

.ik2-faq-q.active .ik2-faq-icon { transform: rotate(180deg); }

.ik2-faq-a { padding-bottom: 20px; }
.ik2-faq-a p { font-size: 15px; color: #555; line-height: 1.7; margin: 0; }

/* Final CTA trust row */
.ik2-cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.ik2-cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 1024px) {
    .ik2-compare-grid { grid-template-columns: 1fr; }
    .ik2-compare-visual { display: none; }
}

@media (max-width: 900px) {
    .ik2-devices-grid { grid-template-columns: repeat(2, 1fr); }
    .ik2-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .ik2-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ik2-hero { padding: 80px 16px 56px; }
    .ik2-steps-grid { flex-direction: column; align-items: center; }
    .ik2-step-arrow { transform: rotate(90deg); padding: 0; }
    .ik2-step { max-width: 100%; }
}

@media (max-width: 600px) {
    .ik2-devices-grid { grid-template-columns: repeat(2, 1fr); }
    .ik2-reviews-grid { grid-template-columns: 1fr; }
    .ik2-hero-trust { gap: 12px; }
    .ik2-cta-trust { gap: 14px; }
}


/* ================================================================
   OVER ONS PAGE (ao-* classes)
   ================================================================ */

/* Hero */
.ao-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d1240 100%);
    padding: 100px 24px 72px;
    text-align: center;
}

.ao-hero-title {
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.ao-hero-title .text-primary { color: #7c9fff; }

.ao-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.ao-hero-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Stats */
.ao-stats {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 32px 0;
}

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

.ao-stat strong {
    display: block;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #1a3af5;
    line-height: 1.1;
}

.ao-stat span {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    display: block;
}

/* Story */
.ao-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ao-story-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 20px;
    line-height: 1.25;
}

.ao-story-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 18px;
}

.ao-story-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.ao-story-icon {
    width: 56px;
    height: 56px;
    background: #e8eeff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ao-story-icon svg { width: 26px; height: 26px; color: #1a3af5; }

.ao-story-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 16px;
}

.ao-promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ao-promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4ff;
    line-height: 1.5;
}

.ao-promise-list li:last-child { border-bottom: none; }

.ao-promise-list li::before {
    content: '✓';
    color: #1a3af5;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Market / Compare */
.ao-market-section {
    background: #f8faff;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.ao-market-inner { max-width: 800px; margin: 0 auto; }

.ao-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ao-compare-col {
    border-radius: 16px;
    padding: 28px;
}

.ao-compare-bad {
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.ao-compare-good {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.ao-compare-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ao-compare-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin: 0;
}

.ao-compare-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.ao-icon-bad { background: #fca5a5; color: #dc2626; }
.ao-icon-good { background: #86efac; color: #16a34a; }

.ao-compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ao-compare-col ul li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.5;
}

.ao-compare-col ul li:last-child { border-bottom: none; }

.ao-compare-bad ul li::before { content: '✕  '; color: #dc2626; }
.ao-compare-good ul li::before { content: '✓  '; color: #16a34a; font-weight: 700; }

/* Privacy card */
.ao-privacy-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.ao-privacy-icon {
    width: 64px;
    height: 64px;
    background: #e8eeff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ao-privacy-icon svg { width: 28px; height: 28px; color: #1a3af5; }

.ao-privacy-text { flex: 1; }

.ao-privacy-text h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 8px;
}

.ao-privacy-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Tech section */
.ao-tech-section { background: #f8faff; padding: 80px 0; }

.ao-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ao-tech-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ao-tech-icon {
    width: 48px;
    height: 48px;
    background: #e8eeff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ao-tech-icon svg { width: 22px; height: 22px; color: #1a3af5; }

.ao-tech-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.ao-tech-card p { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }

/* Features */
.ao-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.ao-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ao-feature-num {
    font-size: 13px;
    font-weight: 900;
    color: #1a3af5;
    background: #e8eeff;
    border-radius: 8px;
    padding: 6px 10px;
    flex-shrink: 0;
    line-height: 1;
}

.ao-feature-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 6px;
}

.ao-feature-body p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* Values */
.ao-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.ao-value-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ao-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ao-value-icon svg { width: 22px; height: 22px; }

.ao-value-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 8px;
}

.ao-value-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* CTA */
.ao-cta-section { padding: 0 0 80px; }

.ao-cta-box {
    background: linear-gradient(135deg, #0a1628 0%, #1a3af5 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    color: #fff;
}

.ao-cta-box h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ao-cta-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.ao-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.ao-cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ao-cta-trust span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Contact */
.ao-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.ao-contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ao-contact-card:hover {
    border-color: #1a3af5;
    box-shadow: 0 4px 20px rgba(26,58,245,0.12);
}

.ao-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ao-contact-icon svg { width: 22px; height: 22px; }

.ao-contact-card > div:nth-child(2) { flex: 1; }
.ao-contact-card strong { display: block; font-size: 15px; font-weight: 700; color: #0a1628; margin-bottom: 2px; }
.ao-contact-card span { font-size: 13px; color: #888; }

.ao-contact-arrow { width: 18px; height: 18px; color: #aaa; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .ao-tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .ao-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .ao-compare-grid { grid-template-columns: 1fr; }
    .ao-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ao-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ao-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ao-hero { padding: 80px 16px 56px; }
    .ao-privacy-card { flex-direction: column; text-align: center; }
    .ao-cta-box { padding: 48px 24px; }
    .ao-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .ao-features-grid { grid-template-columns: 1fr; }
    .ao-values-grid { grid-template-columns: 1fr; }
    .ao-tech-grid { grid-template-columns: 1fr; }
    .ao-cta-trust { gap: 12px; }
}


/* ================================================================
   GRATIS PROEF PAGE v2 (gp-* classes)
   ================================================================ */

/* Hero */
.gp-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d1240 100%);
    padding: 100px 24px 64px;
    text-align: center;
}

.gp-hero-inner { max-width: 700px; margin: 0 auto; }

.gp-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.gp-hero-title .text-primary { color: #7c9fff; }

.gp-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}

/* Section header */
.gp-section-header { text-align: center; margin-bottom: 48px; }
.gp-section-header h2 { font-size: clamp(22px,3vw,32px); font-weight: 800; color: #0a1628; margin: 8px 0 12px; }
.gp-section-header p { font-size: 15px; color: #666; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Steps */
.gp-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.gp-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.gp-step-icon {
    width: 52px;
    height: 52px;
    background: #e8eeff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.gp-step-icon svg { width: 22px; height: 22px; color: #1a3af5; }
.gp-step-icon-accent { background: linear-gradient(135deg,#1a3af5,#7c3aed); }
.gp-step-icon-accent svg { color: #fff; }

.gp-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #1a3af5;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-step-card h3 { font-size: 16px; font-weight: 700; color: #0a1628; margin-bottom: 10px; }
.gp-step-card p { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }

.gp-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    padding-top: 56px;
    flex-shrink: 0;
    color: #1a3af5;
}

.gp-step-arrow svg { width: 24px; height: 24px; }

/* Form section */
.gp-form-section { background: #f8faff; padding: 80px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }

.gp-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Form info */
.gp-form-info h2 { font-size: clamp(22px,3vw,30px); font-weight: 800; color: #0a1628; margin-bottom: 14px; line-height: 1.25; }
.gp-form-info > p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 28px; }

.gp-features-list { list-style: none; padding: 0; margin: 0; }
.gp-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #eef0f8;
}
.gp-features-list li:last-child { border-bottom: none; }

.gp-feat-icon { flex-shrink: 0; color: #1a3af5; display: flex; }
.gp-feat-icon svg { width: 18px; height: 18px; }

/* Form card */
.gp-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.gp-form-card-header {
    background: linear-gradient(135deg, #1a3af5 0%, #0f2bc4 100%);
    padding: 24px 28px;
    color: #fff;
}

.gp-form-card-header h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.gp-form-card-header p { font-size: 14px; color: rgba(255,255,255,0.8); margin: 0; }

#gp-trial-form { padding: 28px; }

.gp-form-group { margin-bottom: 20px; }
.gp-form-group label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 8px; }
.gp-required { color: #ef4444; }

.gp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.gp-input-wrap > svg {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: #aaa;
    pointer-events: none;
}

.gp-input-wrap input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 12px 12px 38px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    outline: none;
}

.gp-input-wrap input:focus {
    border-color: #1a3af5;
    box-shadow: 0 0 0 3px rgba(26,58,245,0.1);
}

.gp-input-hint { font-size: 12px; color: #888; margin-top: 6px; display: block; }

/* Optional-field tag (e.g. "(optioneel)" next to the message label). */
.gp-optional { color: #94a3b8; font-weight: 500; font-size: 12px; margin-left: 4px; }

/* Textarea variant — same look as the regular gp-input-wrap inputs but
 * the icon sits at the top so it doesn't collide with multi-line text. */
.gp-input-wrap-textarea { align-items: flex-start; }
.gp-input-wrap-textarea > svg { top: 14px; }
.gp-input-wrap textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 12px 12px 38px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    resize: vertical;
    min-height: 84px;
}
.gp-input-wrap textarea:focus {
    border-color: #1a3af5;
    box-shadow: 0 0 0 3px rgba(26,58,245,0.1);
}

/* Captcha row */
.gp-captcha-row { display: flex; align-items: center; gap: 10px; }
.gp-captcha-question {
    background: #e8eeff;
    color: #1a3af5;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.gp-captcha-input { flex: 1; }
.gp-captcha-refresh {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #888;
    transition: background .2s, color .2s;
}
.gp-captcha-refresh:hover { background: #e8eeff; color: #1a3af5; }
.gp-captcha-refresh svg { width: 16px; height: 16px; }
.gp-captcha-error { font-size: 12px; color: #ef4444; display: block; margin-top: 6px; }

/* Submit button */
.gp-submit-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
}

/* Spinner */
.gp-btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.gp-spinner {
    width: 18px; height: 18px;
    animation: gp-spin 1s linear infinite;
}
@keyframes gp-spin { to { transform: rotate(360deg); } }

.gp-form-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    text-align: center;
    justify-content: center;
}
.gp-form-notice svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Verification */
#gp-verification { padding: 28px; text-align: center; }

.gp-v-step h3 { font-size: 18px; font-weight: 700; color: #0a1628; margin-bottom: 8px; }
.gp-v-step p { font-size: 14px; color: #666; line-height: 1.6; }

.gp-v-spinner-ring {
    width: 56px; height: 56px;
    border: 4px solid #e8eeff;
    border-top-color: #1a3af5;
    border-radius: 50%;
    animation: gp-spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.gp-v-progress {
    background: #e8eeff;
    border-radius: 50px;
    height: 6px;
    margin-top: 20px;
    overflow: hidden;
}
.gp-v-progress-bar {
    height: 100%;
    background: #1a3af5;
    border-radius: 50px;
    width: 0;
    transition: width .06s linear;
}

.gp-v-shield {
    width: 64px; height: 64px;
    background: #e8eeff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.gp-v-shield svg { width: 28px; height: 28px; color: #1a3af5; }

.gp-v-checks { margin-top: 20px; text-align: left; }
.gp-v-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4ff;
}
.gp-v-check:last-child { border-bottom: none; }
.gp-vc-icon svg { width: 18px; height: 18px; color: #ccc; }
.gp-vc-done .gp-vc-icon svg { color: #16a34a; }
.gp-vc-done { color: #0a1628; }

.gp-v-success-icon {
    width: 72px; height: 72px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.gp-v-success-icon svg { width: 32px; height: 32px; color: #16a34a; }

.gp-v-email-reminder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8eeff;
    color: #1a3af5;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 20px;
}
.gp-v-email-reminder svg { width: 16px; height: 16px; }

/* Why section */
.gp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.gp-why-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.gp-why-icon {
    width: 52px; height: 52px;
    background: #e8eeff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.gp-why-icon svg { width: 22px; height: 22px; color: #1a3af5; }
.gp-why-card h3 { font-size: 16px; font-weight: 700; color: #0a1628; margin-bottom: 8px; }
.gp-why-card p { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }

/* CTA */
.gp-cta-section { padding: 0 0 80px; }

.gp-cta-box {
    background: linear-gradient(135deg, #0a1628 0%, #1a3af5 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
}

.gp-cta-box h2 { font-size: clamp(24px,3.5vw,40px); font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.gp-cta-box p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }

.gp-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.gp-cta-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.gp-cta-trust span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Responsive */
@media (max-width: 900px) {
    .gp-form-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .gp-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gp-hero { padding: 80px 16px 48px; }
    .gp-steps-grid { flex-direction: column; align-items: center; }
    .gp-step-arrow { transform: rotate(90deg); padding: 0; padding-top: 0; }
    .gp-step-card { max-width: 100%; width: 100%; }
    .gp-cta-box { padding: 48px 24px; }
}

@media (max-width: 600px) {
    .gp-why-grid { grid-template-columns: 1fr; }
    .gp-captcha-row { flex-wrap: wrap; }
    .gp-captcha-input { width: 100%; }
}


/* ===========================
   Privacybeleid (pb-*)
   =========================== */
.pb-hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.pb-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.pb-hero-accent { color: var(--accent, #e53935); }
.pb-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin: 0;
}
.pb-content {
  background: #f9f9f9;
  padding: 60px 0 80px;
}
.pb-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.pb-section {
  background: #fff;
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pb-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}
.pb-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 20px 0 8px;
}
.pb-section p {
  color: #555;
  line-height: 1.75;
  margin: 0 0 12px;
}
.pb-section p:last-child { margin-bottom: 0; }
.pb-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.pb-section ul li {
  position: relative;
  padding-left: 20px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 6px;
}
.pb-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent, #e53935);
  border-radius: 50%;
}
.pb-section a {
  color: var(--accent, #e53935);
  text-decoration: none;
}
.pb-section a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .pb-section { padding: 24px 20px; }
}


/* ===========================
   Optimized Site Navigation
   =========================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(10, 10, 15, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.site-logo .custom-logo {
  height: 36px;
  width: auto;
}
.logo-name {
  color: #fff;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links .nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links .nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  margin-left: 8px;
  font-size: 0.9rem !important;
  padding: 9px 20px !important;
  white-space: nowrap;
}
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(10,10,15,0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px 16px 20px;
  gap: 4px;
}
.nav-mobile-drawer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-drawer a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.mobile-nav-cta {
  margin-top: 8px;
  background: var(--accent, #e53935) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-mobile-drawer.open { display: flex; }
}
/* Push content below fixed nav */
body { padding-top: 70px; }


/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE — v1.1.1
   ============================================================ */

/* ── Base: smaller padding & font scales ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem) !important; }
  .section-subtitle { font-size: 14px; margin-bottom: 28px; }

  /* ── Hero ── */
  .hero { padding: 80px 0 48px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 36px;
    text-align: center;
  }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .hero-description { max-width: 100%; font-size: 15px; margin: 0 auto 28px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  .payment-icons { justify-content: center; }
  .hero-visual { display: none; }

  /* ── Features ── */
  .features-grid { grid-template-columns: 1fr !important; }
  .features-img-grid { grid-template-columns: 1fr !important; }
  .content-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .mockup-content { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Pricing ── */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-panel .pricing-grid { grid-template-columns: 1fr !important; }

  /* ── Benefits ── */
  .benefits-grid { grid-template-columns: 1fr !important; }

  /* ── Security ── */
  .security-grid { grid-template-columns: 1fr !important; gap: 32px; }

  /* ── Steps ── */
  .steps-grid { grid-template-columns: 1fr !important; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr !important; }

  /* ── Knowledge / Blog ── */
  .knowledge-grid { grid-template-columns: 1fr !important; }
  .kb-grid { grid-template-columns: 1fr !important; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }

  /* ── About / Over Ons ── */
  .about-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .about-values-grid { grid-template-columns: 1fr !important; }
  .ao-story-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .ao-compare-grid { grid-template-columns: 1fr !important; }
  .ao-stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
  .ao-tech-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ao-features-grid { grid-template-columns: 1fr !important; }
  .ao-values-grid { grid-template-columns: 1fr !important; }
  .ao-contact-grid { grid-template-columns: 1fr !important; }
  .ao-hero-inner { text-align: center; }

  /* ── Installatiegids ── */
  .install-layout { grid-template-columns: 1fr !important; }
  .ig-layout { grid-template-columns: 1fr !important; }
  .ig-sidebar { display: none; }
  .ig-help-grid { grid-template-columns: 1fr !important; }

  /* ── IPTV Kopen ── */
  .ik2-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ik2-compare-grid { grid-template-columns: 1fr !important; }
  .ik2-devices-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ik2-reviews-grid { grid-template-columns: 1fr !important; }

  /* ── Gratis Proef ── */
  .gp-form-wrapper { grid-template-columns: 1fr !important; gap: 32px; }
  .gp-why-grid { grid-template-columns: 1fr !important; }
  .gp-steps-grid { grid-template-columns: 1fr !important; }
  .proef-why-inner { grid-template-columns: 1fr !important; }
  .proef-features-grid { grid-template-columns: 1fr !important; }

  /* ── Comparison table — horizontal scroll ── */
  .comparison { overflow: hidden; }
  .comparison .container { padding: 0; }
  .comparison .text-center { padding: 0 16px; }
  .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0 16px 16px; }
  .comparison-grid { min-width: 560px; }
  .abbo-trust-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .footer-payment-icons { justify-content: center; }

  /* ── WooCommerce products ── */
  .woocommerce ul.products { grid-template-columns: 1fr !important; }

  /* ── Checkout ── */
  .iptv-checkout-grid { grid-template-columns: 1fr !important; }

  /* ── Buttons full-width on narrow screens ── */
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ── Extra small (phones ≤ 480px) ── */
@media (max-width: 480px) {
  .section { padding: 36px 0; }
  .container { padding: 0 12px; }

  .hero-title { font-size: clamp(1.5rem, 8vw, 2rem) !important; }
  .section-title { font-size: clamp(1.2rem, 7vw, 1.6rem) !important; }

  .content-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ao-tech-grid { grid-template-columns: 1fr !important; }
  .ao-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ik2-devices-grid { grid-template-columns: 1fr !important; }
  .ik2-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .abbo-trust-grid { grid-template-columns: 1fr !important; }

  /* Pricing cards full width */
  .pricing-grid { max-width: 100% !important; }
  .pricing-card { width: 100%; }

  /* pb pages (privacy, terms, etc) */
  .pb-section { padding: 20px 16px; }
  .pb-hero { padding: 56px 0 36px; }
  .pb-hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Nav mobile drawer tighter */
  .nav-mobile-drawer a { padding: 10px 12px; }

  /* Buttons */
  .btn { font-size: 14px; padding: 12px 20px; }
  .btn-lg { font-size: 15px; padding: 14px 28px; }

  /* Hero buttons stacked */
  .hero-buttons { flex-direction: column; align-items: stretch; }
}


/* ===========================
   Site Nav — White Header (v2)
   =========================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #111;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.site-logo svg { color: #111; }
.site-logo .custom-logo { height: 36px; width: auto; }
.site-logo img { height: 36px; width: auto; }
.logo-name { color: #111; font-weight: 800; }
/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links .nav-link {
  color: #444;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links .nav-link:hover { color: #111; background: #f4f4f4; }
/* CTA button */
.nav-cta {
  margin-left: 10px;
  background: #1a237e !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  border: none;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #283593 !important; transform: translateY(-1px) !important; }
/* Hamburger */
.nav-hamburger {
  display: none;
  order: -1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: #f4f4f4;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 8px 16px 16px;
  gap: 2px;
}
.nav-mobile-drawer a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-mobile-drawer a:hover { background: #f5f5f5; }
.mobile-nav-cta {
  margin-top: 6px;
  background: #1a237e !important;
  color: #fff !important;
  text-align: center;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.mobile-nav-cta:hover { background: #283593 !important; }
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-mobile-drawer.open { display: flex; }
}
body { padding-top: 68px; }
