/* ============================================
   IPTV Danmark – Global Stylesheet
   Futuristic Neon Design | Denmark Colors
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --red: #C60C30;
  --red-light: #ff1a3d;
  --red-dark: #8f0820;
  --white: #FFFFFF;
  --bg-primary: #050812;
  --bg-secondary: #0a0f1e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(198, 12, 48, 0.08);
  --border-color: rgba(198, 12, 48, 0.25);
  --border-glow: rgba(198, 12, 48, 0.6);
  --text-primary: #f0f0f0;
  --text-secondary: #a0a8c0;
  --text-muted: #5a6380;
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --glow-red: 0 0 20px rgba(198, 12, 48, 0.4), 0 0 60px rgba(198, 12, 48, 0.15);
  --glow-red-intense: 0 0 30px rgba(198, 12, 48, 0.7), 0 0 80px rgba(198, 12, 48, 0.3);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-secondary); }

.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  background: rgba(198, 12, 48, 0.07);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--glow-red);
}

.btn-primary:hover {
  background: var(--red-light);
  box-shadow: var(--glow-red-intense);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--glow-red);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
}

.btn-icon {
  font-size: 1.1em;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 8, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo span {
  color: var(--red);
  text-shadow: var(--glow-red);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--glow-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
/* ========== HERO – Luxury Premium ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(198,12,48,0.55) 0%, transparent 65%);
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  animation-name: orbFloat1;
}

.hero-orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #0c1a6e 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  opacity: 0.6;
  animation-delay: 4s;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-28px); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}

/* ── Inner wrapper ── */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease both;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red), 0 0 22px rgba(198,12,48,0.5);
  animation: dotPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px var(--red), 0 0 22px rgba(198,12,48,0.5); }
  50%       { box-shadow: 0 0 4px var(--red); }
}

/* ── H1 ── */
.hero-h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.75s ease 0.15s both;
  line-height: 1;
}

.h1-line-1 {
  display: block;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.88);
  line-height: 1.05;
}

.h1-line-2 {
  display: block;
  line-height: 1;
}

.h1-red {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--red);
  text-shadow:
    0 0 30px rgba(198,12,48,0.7),
    0 0 70px rgba(198,12,48,0.35),
    0 0 140px rgba(198,12,48,0.15);
  display: inline-block;
}

/* ── Subtitle ── */
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.48);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  animation: fadeInUp 0.75s ease 0.28s both;
}

.hero-sub strong { color: rgba(255,255,255,0.75); font-weight: 600; }

/* ── CTAs ── */
.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.75s ease 0.4s both;
}

/* Shimmer sweep on primary button */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: shimmerSweep 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0%       { left: -100%; }
  45%, 100% { left: 160%; }
}

/* Ghost / outline-2 button */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: rgba(198,12,48,0.5);
  color: var(--white);
  background: rgba(198,12,48,0.06);
  box-shadow: 0 0 20px rgba(198,12,48,0.12);
}

/* ── Stats bar ── */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 1.3rem 2.5rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  max-width: 620px;
  margin: 0 auto;
  animation: fadeInUp 0.75s ease 0.5s both;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-stat-item {
  flex: 1;
  text-align: center;
}

.hero-stat-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-stat-item span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.stat-sep {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

/* ── Device mockup ── */
.hero-device-wrap {
  position: relative;
  max-width: 820px;
  margin: 4rem auto -80px;
  z-index: 2;
  animation: fadeInUp 0.9s ease 0.55s both;
}

.hero-device-glow {
  position: absolute;
  width: 65%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(198,12,48,0.4) 0%, transparent 70%);
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(35px);
  z-index: 0;
}

.hero-device-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 40px 100px rgba(0,0,0,0.75)) drop-shadow(0 0 60px rgba(198,12,48,0.15));
}

/* ── Floating chips ── */
.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8,12,28,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.chip-1 {
  top: 20%;
  left: 0px;
  animation: chipFloat1 6s ease-in-out infinite;
}

.chip-2 {
  top: 38%;
  right: 0px;
  animation: chipFloat2 7s ease-in-out infinite;
}

@keyframes chipFloat1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes chipFloat2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ---------- Card / Glass ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow-red);
}

.card:hover::before {
  opacity: 1;
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: rgba(198, 12, 48, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.card:hover .feature-icon {
  background: rgba(198, 12, 48, 0.2);
  box-shadow: var(--glow-red);
  border-color: var(--red);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(198,12,48,0.4), transparent);
}

.pricing-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--glow-red);
}

.pricing-card.popular {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(198,12,48,0.12) 0%, rgba(5,8,18,0.9) 100%);
  transform: scale(1.03);
}

.pricing-card.popular::before {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 1;
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--glow-red);
}

.savings-badge {
  display: inline-block;
  background: rgba(198, 12, 48, 0.15);
  color: var(--red);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  margin-bottom: 1rem;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.pricing-price {
  margin-bottom: 0.3rem;
}

.pricing-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  vertical-align: super;
  margin-right: 2px;
}

.pricing-price .period-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1.5rem 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  width: 18px;
  height: 18px;
  background: rgba(198,12,48,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Trust Section ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(198,12,48,0.4);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow-red);
}

.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(198,12,48,0.2), rgba(10,15,30,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.blog-thumb img,
img.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  font-size: 0;
}

.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-secondary) 0%, transparent 50%);
}

img.blog-thumb::after { display: none; }

.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-meta .tag {
  background: rgba(198,12,48,0.1);
  color: var(--red);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
}

.blog-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.blog-card:hover h3 { color: var(--red); }

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}

.blog-card:hover .blog-read-more { gap: 0.6rem; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-glow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-toggle {
  width: 26px;
  height: 26px;
  background: rgba(198,12,48,0.1);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--red);
  transition: all var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
  box-shadow: var(--glow-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(198,12,48,0.1);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.contact-info-text a:hover { color: var(--red); }

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #128c7e, #075e54);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(18,140,126,0.3);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(18,140,126,0.5);
  color: var(--white);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: rgba(198,12,48,0.05);
  box-shadow: 0 0 0 3px rgba(198,12,48,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ---------- How It Works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.how-step:hover {
  border-color: rgba(198,12,48,0.4);
  box-shadow: 0 0 32px rgba(198,12,48,0.12);
}

.how-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(198,12,48,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.how-step h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ---------- Article Section ---------- */
.article-section {}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.article-grid-reverse .article-text { order: 1; }
.article-grid-reverse .article-img-wrap { order: 2; }

.article-img-wrap {
  position: relative;
}

.article-img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(198,12,48,0.08);
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-card);
}

.article-img-caption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.article-text p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.article-text p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .article-grid,
  .article-grid-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .article-grid-reverse .article-text { order: 0; }
  .article-grid-reverse .article-img-wrap { order: 0; }
}

/* ---------- Nordic Banner ---------- */
.nordic-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 4rem 0;
}

.nordic-banner-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nordic-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nordic-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,8,18,0.92) 0%,
    rgba(5,8,18,0.75) 50%,
    rgba(5,8,18,0.45) 100%
  );
}

.nordic-banner-content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .nordic-banner { min-height: 420px; }
  .nordic-banner-overlay {
    background: rgba(5,8,18,0.88);
  }
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 260px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo span { color: var(--red); }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--red); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(198,12,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--red); }

.breadcrumb .sep { color: var(--border-color); }

.breadcrumb .current { color: var(--red); }

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0;
}

/* ---------- Notification / Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  transform: translateY(200%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), var(--glow-red);
}

.toast.show { transform: translateY(0); }

.toast-icon { font-size: 1.3rem; }

.toast-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--red);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--glow-red);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-red-intense);
}

/* ---------- Page Banner ---------- */
.section-band {
  background: linear-gradient(135deg, rgba(198,12,48,0.08), rgba(198,12,48,0.03));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0;
  text-align: center;
}

/* Trust section background */
.trust-bg-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(5,8,18,0.88) 0%, rgba(198,12,48,0.18) 100%),
    url('public/hero-bg.png') center/cover no-repeat;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(198,12,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* CTA band background */
.cta-bg-section {
  position: relative;
  background:
    linear-gradient(160deg, rgba(5,8,18,0.82) 0%, rgba(198,12,48,0.22) 60%, rgba(5,8,18,0.9) 100%),
    url('public/hero-bg.png') center/cover no-repeat;
  border-top: 1px solid rgba(198,12,48,0.3);
  border-bottom: 1px solid rgba(198,12,48,0.3);
  padding: 5rem 0;
}

.cta-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(198,12,48,0.15) 0%, transparent 65%);
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-device-wrap { max-width: 680px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,8,18,0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.mobile-open a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
  }

  .nav-links.mobile-open a:hover {
    color: var(--red);
    background: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .hero-stats { gap: 1.5rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 130px 0 0; }
  .hero-stats-bar { flex-wrap: wrap; gap: 1rem; padding: 1rem 1.5rem; }
  .stat-sep { display: none; }
  .hero-stat-item { flex: 0 0 calc(50% - 0.5rem); }
  .hero-device-wrap { margin-top: 3rem; margin-bottom: -40px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 360px; justify-content: center; }
  .floating-chip { font-size: 0.72rem; padding: 0.45rem 0.9rem; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .btn-large { padding: 0.95rem 1.8rem; }
}
