/* =============================================================
   IPTV NEDERLAND PRO v2 — MAIN STYLESHEET
   Fonts: Montserrat (headings) + Inter (body)
   ============================================================= */

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

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --brand-primary:    #E63946;
  --brand-primary-dk: #C1121F;
  --brand-accent:     #FFD60A;
  --brand-dark:       #0A0A0F;
  --brand-dark-2:     #12121A;
  --brand-dark-3:     #1C1C28;
  --brand-dark-4:     #242436;
  --text-white:       #FFFFFF;
  --text-muted:       #8888AA;
  --text-soft:        #CCCCEE;
  --border:           rgba(255,255,255,0.07);
  --border-hover:     rgba(255,255,255,0.14);
  --font-display:     'Montserrat', sans-serif;
  --font-body:        'Inter', sans-serif;
  --r-sm:  8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-glow: 0 0 50px rgba(230,57,70,0.25);
  --ease: cubic-bezier(0.22,1,0.36,1);
  --t: 0.22s var(--ease);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--brand-dark);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.1; font-weight: 800; }
p { color: var(--text-muted); line-height: 1.72; }
a { color: inherit; text-decoration: none; transition: var(--t); }
img { max-width: 100%; height: auto; display: block; }
ul,ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Accessibility */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--brand-primary); color: #fff;
  padding: 10px 20px; border-radius: var(--r-sm);
  z-index: 9999; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 16px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm    { max-width: 860px;  margin: 0 auto; padding: 0 28px; }
.section-pad     { padding: 100px 0; }
.section-pad-sm  { padding: 60px 0; }

/* ── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.text-red    { color: var(--brand-primary); }
.text-yellow { color: var(--brand-accent);  }
.text-muted  { color: var(--text-muted);    }
.text-center { text-align: center;          }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.10);
  border: 1px solid rgba(230,57,70,0.25);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 14px; color: var(--text-white);
}

.section-sub {
  font-size: 18px; color: var(--text-muted);
  max-width: 620px; margin: 0 auto 52px;
  line-height: 1.72;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.03em; padding: 14px 28px;
  border-radius: var(--r-md); border: none;
  cursor: pointer; transition: var(--t);
  white-space: nowrap; line-height: 1;
  text-align: center;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--brand-primary); color: #fff;
  box-shadow: 0 4px 20px rgba(230,57,70,0.35);
}
.btn-primary:hover { background: var(--brand-primary-dk); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230,57,70,0.5); }

.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.btn-outline {
  background: transparent; color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.btn-lg { padding: 17px 36px; font-size: 16px; border-radius: var(--r-lg); }
.btn-block { width: 100%; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1260px; margin: 0 auto; padding: 0 28px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 20px; font-weight: 900;
  letter-spacing: -0.03em; color: var(--text-white); flex-shrink: 0;
}
.nav-logo-box {
  width: 34px; height: 34px; background: var(--brand-primary);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.nav-logo-accent { color: var(--brand-primary); }

/* Nav menu — fixes broken menu */
.nav-menu {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu li { position: relative; }
.nav-menu li a,
.nav-menu > li > a {
  display: block;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  padding: 8px 13px; border-radius: var(--r-sm);
  transition: var(--t); white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
  color: var(--text-white); background: rgba(255,255,255,0.07);
}
/* WordPress auto-injects <ul> inside .nav-menu; ensure clean style */
.nav-menu ul { display: none; } /* hide sub-menus for now */

/* Nav right side */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25);
  color: #25D366; font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; transition: var(--t);
  white-space: nowrap;
}
.nav-wa-btn:hover { background: rgba(37,211,102,0.2); color: #25D366; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-white); border-radius: 2px; transition: var(--t);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(12,12,20,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 24px; z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 11px 14px;
  font-size: 15px; font-weight: 600;
  color: var(--text-soft); border-radius: var(--r-sm);
  transition: var(--t);
}
.mobile-nav a:hover { color: var(--text-white); background: rgba(255,255,255,0.07); }
.mobile-nav .mobile-wa {
  margin-top: 12px; background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25); color: #25D366;
  text-align: center; border-radius: var(--r-md); padding: 13px;
}

/* Sticky WhatsApp button */
.sticky-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 990;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45); transition: var(--t);
  animation: wa-pulse 2.5s ease infinite;
}
.sticky-wa:hover { transform: scale(1.12); }
.sticky-wa svg { width: 28px; height: 28px; fill: white; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 44px rgba(37,211,102,0.75); }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 108px 0 80px; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(230,57,70,0.12) 0%, transparent 60%),
    linear-gradient(160deg,
      rgba(10,10,15,0.97) 0%,
      rgba(10,10,15,0.85) 40%,
      rgba(10,10,15,0.6)  70%,
      rgba(10,10,15,0.92) 100%);
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

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

/* Live badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,214,10,0.09); border: 1px solid rgba(255,214,10,0.25);
  color: var(--brand-accent);
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; padding: 6px 15px;
  border-radius: 999px; margin-bottom: 22px;
}
.hero-dot {
  width: 7px; height: 7px; background: var(--brand-accent);
  border-radius: 50%; animation: dot 1.8s ease infinite;
}
@keyframes dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

/* H1 */
.hero-h1 {
  font-size: clamp(38px, 5.8vw, 76px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.035em; margin-bottom: 22px;
}
.hero-h1 .red  { color: var(--brand-primary); }
.hero-h1 .year { color: var(--brand-accent); }

.hero-desc {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.74; margin-bottom: 36px; max-width: 500px;
}
.hero-desc strong { color: var(--text-soft); font-weight: 600; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero stats */
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.stat-val {
  display: block; font-family: var(--font-display);
  font-size: 30px; font-weight: 900;
  color: var(--text-white); letter-spacing: -0.04em;
}
.stat-lbl { font-size: 13px; color: var(--text-muted); }

/* Hero visual */
.hero-visual { position: relative; }

.tv-mock {
  background: var(--brand-dark-3);
  border-radius: 22px; border: 2px solid var(--border);
  overflow: hidden; aspect-ratio: 16/10; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), var(--shadow-glow);
}
.tv-mock img { width: 100%; height: 100%; object-fit: cover; }
.tv-mock-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #14142a 0%, #0d1f3c 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,0.3); font-size: 13px; text-align: center; padding: 24px;
}
.tv-live-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--brand-primary); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; padding: 4px 12px; border-radius: 999px;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(20,20,34,0.96); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 11px 15px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(14px);
}
.float-card.bl { bottom: -18px; left: -20px; animation: fc 4s ease-in-out infinite; }
.float-card.tr { top: -18px;   right: -18px; animation: fc 4s ease-in-out infinite 1.5s; }
@keyframes fc { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.fc-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.fc-sport { background: rgba(255,214,10,0.14); }
.fc-check { background: rgba(37,211,102,0.14); }

.fc-title { display: block; font-size: 13px; font-weight: 700; color: var(--text-white); }
.fc-sub   { font-size: 11px; color: var(--text-muted); }

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--brand-dark-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 500; color: var(--text-muted); white-space: nowrap;
}
.trust-ic {
  width: 28px; height: 28px; background: rgba(230,57,70,0.12);
  border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px;
}

/* ── FEATURES ──────────────────────────────────────────────── */
.features-sec { background: var(--brand-dark-2); }

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

.feat-card {
  background: var(--brand-dark-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px; transition: var(--t);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), transparent);
  opacity: 0; transition: opacity .25s;
}
.feat-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 50px; height: 50px;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.18);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feat-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; color: var(--text-white); }
.feat-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── SPLIT SECTIONS ────────────────────────────────────────── */
.split-dark  { background: var(--brand-dark); }
.split-dark2 { background: var(--brand-dark-2); }

.split-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.split-layout.flip { direction: rtl; }
.split-layout.flip > * { direction: ltr; }

.split-visual {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; border: 1px solid var(--border);
  position: relative;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.split-visual:hover img { transform: scale(1.04); }

.split-placeholder {
  width: 100%; height: 100%; background: var(--brand-dark-3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,0.25); text-align: center; padding: 24px;
}
.sp-icon { font-size: 44px; display: block; margin-bottom: 6px; }
.sp-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(230,57,70,0.14); border: 1px dashed rgba(230,57,70,0.35);
  color: rgba(230,57,70,0.7); padding: 5px 12px; border-radius: 5px; margin-top: 4px;
}

.split-text .eyebrow { margin-bottom: 14px; }
.split-text h2 {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 900;
  letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.1;
  color: var(--text-white);
}
.split-text > p { font-size: 16px; color: var(--text-muted); line-height: 1.72; margin-bottom: 22px; }

/* Check list */
.check-list { margin-bottom: 30px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--text-muted); margin-bottom: 11px; line-height: 1.55;
}
.chk {
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #25D366; margin-top: 1px;
}

/* Films grid */
.films-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 10px; border-radius: var(--r-xl); overflow: hidden;
}
.film-thumb {
  aspect-ratio: 2/3; border-radius: 10px;
  border: 1px solid var(--border); overflow: hidden;
  position: relative; cursor: pointer; transition: transform .22s;
}
.film-thumb:hover { transform: scale(1.05); z-index: 2; }
.film-thumb img { width: 100%; height: 100%; object-fit: cover; }
.film-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 28px; opacity: .3;
}
.film-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 8px;
}
.genre-pill {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  background: var(--brand-primary); color: white; padding: 3px 8px; border-radius: 5px;
}

/* ── DEVICES ───────────────────────────────────────────────── */
.devices-sec { background: var(--brand-dark); }

.devices-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 16px; margin-top: 52px;
}

.device-card {
  background: var(--brand-dark-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 18px;
  text-align: center; display: block;
  text-decoration: none; color: inherit; transition: var(--t);
}
.device-card:hover {
  border-color: rgba(230,57,70,0.4); color: inherit;
  transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.device-img {
  width: 68px; height: 68px; margin: 0 auto 16px;
  background: var(--brand-dark-4); border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; overflow: hidden;
}
.device-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.device-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text-white); }
.device-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.device-more    { font-size: 12px; font-weight: 700; color: var(--brand-primary); font-family: var(--font-display); }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-sec { background: var(--brand-dark-2); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px; max-width: 1000px; margin: 0 auto;
}

.price-card {
  background: var(--brand-dark-3); border: 1px solid var(--border);
  border-radius: 26px; padding: 38px 30px;
  position: relative; transition: var(--t);
  display: flex; flex-direction: column;   /* ← flex column for proper button alignment */
}
.price-card:hover { transform: translateY(-4px); }

.price-card.featured {
  border-color: var(--brand-primary);
  background: linear-gradient(148deg, rgba(230,57,70,0.07) 0%, var(--brand-dark-3) 100%);
  box-shadow: var(--shadow-glow);
}

.best-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-primary); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 20px; border-radius: 999px; white-space: nowrap;
}

.price-period {
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-primary); margin-bottom: 16px;
}
.price-card.featured .price-period { color: var(--brand-accent); }

.price-display { display: flex; align-items: flex-start; gap: 2px; line-height: 1; margin-bottom: 8px; }
.price-euro    { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--text-white); padding-top: 8px; }
.price-integer { font-family: var(--font-display); font-size: 60px; font-weight: 900; color: var(--text-white); letter-spacing: -0.04em; }
.price-decimal { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--text-white); padding-top: 10px; }

.price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.price-note strong { color: var(--brand-accent); font-weight: 700; }

.price-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.price-feats { margin-bottom: 28px; flex: 1; }  /* flex:1 pushes button to bottom */
.price-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5;
}

/* FIX: Centered, full-width pricing button */
.price-btn {
  display: flex;                          /* flex not inline-flex */
  align-items: center;
  justify-content: center;               /* centred text */
  width: 100%;                           /* full card width */
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 15px 20px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  transition: var(--t);
  gap: 8px;
  line-height: 1;
}
.price-btn.primary {
  background: var(--brand-primary); color: #fff;
  box-shadow: 0 4px 18px rgba(230,57,70,0.35);
}
.price-btn.primary:hover { background: var(--brand-primary-dk); transform: translateY(-2px); }
.price-btn.outline {
  background: transparent; color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.price-btn.outline:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); }

.payment-note {
  text-align: center; margin-top: 36px;
  font-size: 13px; color: var(--text-muted); line-height: 1.8;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.reviews-sec { background: var(--brand-dark); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.review-card {
  background: var(--brand-dark-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px; transition: var(--t);
}
.review-card:hover { border-color: rgba(230,57,70,0.22); transform: translateY(-3px); }

.review-stars { color: var(--brand-accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card blockquote {
  font-size: 15px; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 18px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  color: white; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--text-white); }
.reviewer-city { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-sec { background: var(--brand-dark-2); }

.faq-wrap { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 10px; overflow: hidden;
}

.faq-btn {
  width: 100%; background: var(--brand-dark-3); border: none;
  color: var(--text-white); font-family: var(--font-display);
  font-size: 15px; font-weight: 700; text-align: left;
  padding: 18px 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transition: background .18s;
}
.faq-btn:hover { background: var(--brand-dark-4); }

.faq-arrow {
  width: 26px; height: 26px; min-width: 26px;
  background: rgba(255,255,255,0.055); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: transform .3s ease, background .2s;
}
.faq-item.is-open .faq-arrow { transform: rotate(180deg); background: rgba(230,57,70,0.18); color: var(--brand-primary); }

.faq-body { max-height: 0; overflow: hidden; transition: max-height .38s ease; background: var(--brand-dark-3); }
.faq-item.is-open .faq-body { max-height: 320px; }
.faq-body-inner { padding: 0 22px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.74; }

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-sec {
  background: var(--brand-dark);
  border-top: 1px solid var(--border); position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(230,57,70,0.09) 0%, transparent 72%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(30px, 4.5vw, 56px); font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: 14px; color: var(--text-white);
}
.cta-inner > p { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.65; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-assure { font-size: 13px; color: var(--text-muted); }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-sec { background: var(--brand-dark-2); }

.contact-box {
  background: var(--brand-dark-3); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 60px 44px;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.wa-bubble {
  width: 76px; height: 76px;
  background: rgba(37,211,102,0.12); border: 2px solid rgba(37,211,102,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 34px; margin: 0 auto 22px;
}
.contact-box h2 { font-size: 26px; font-weight: 800; color: var(--text-white); margin-bottom: 12px; }
.contact-box p  { font-size: 15px; color: var(--text-muted); max-width: 420px; margin: 0 auto 6px; line-height: 1.65; }
.phone-display  { font-family: var(--font-display); font-size: 34px; font-weight: 900; letter-spacing: -0.02em; color: var(--text-white); margin: 16px 0 6px; }
.hours-note     { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.contact-btns   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-dark-2);
  border-top: 1px solid var(--border); padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-about p { font-size: 14px; color: var(--text-muted); line-height: 1.72; margin-top: 14px; max-width: 270px; }
.footer-wa-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  background: rgba(37,211,102,0.09); border: 1px solid rgba(37,211,102,0.2);
  color: #25D366; font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; transition: var(--t);
}
.footer-wa-link:hover { background: rgba(37,211,102,0.18); color: #25D366; }

.footer-col h4 {
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-white); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--text-white); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p  { font-size: 13px; color: var(--text-muted); }
.footer-bottom a  { font-size: 13px; color: var(--text-muted); margin-left: 18px; }
.footer-bottom a:hover { color: var(--text-white); }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .devices-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .hero-layout  { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual  { display: none; }
  .split-layout { grid-template-columns: 1fr; gap: 36px; }
  .split-layout.flip { direction: ltr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 400px; }
  .nav-menu      { display: none !important; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 700px) {
  .section-pad { padding: 68px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .devices-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .films-grid    { grid-template-columns: repeat(2,1fr); }
  .hero-stats    { gap: 20px; }
  .hero-btns, .cta-btns, .contact-btns { flex-direction: column; }
  .btn-lg, .btn   { width: 100%; }
  .contact-box    { padding: 36px 20px; }
  .trust-item:nth-child(n+5) { display: none; }
}

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

/* ── WP COMPATIBILITY ──────────────────────────────────────── */
.wp-block-image { margin: 0; }
/* Make sure wp auto-paragraphs in content areas don't break layout */
.site-content p { margin-bottom: 1em; }
.site-content p:last-child { margin-bottom: 0; }
