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

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

:root {
  --red: #d0021b;
  --dark: #111827;
  --light-bg: #f9fafb;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  background: var(--dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--red); }
.header-badge {
  font-size: 0.7rem;
  color: #ccc;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   NAV – DESKTOP
══════════════════════════════════════ */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover  { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.12); font-weight: 700; }

.nav-cta {
  color: #fff;
  background: var(--red);
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  margin-left: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(208,2,27,0.4);
  -webkit-tap-highlight-color: transparent;
}
.nav-cta:hover { background: #a80015; transform: translateY(-1px); }

/* ── Hamburger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 49px;
  left: 0;
  right: 0;
  background: #16213e;
  z-index: 99;
  flex-direction: column;
  padding: 8px 0 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-link {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, color 0.15s;
}
.nav-mobile-link:hover,
.nav-mobile-link.active { background: rgba(255,255,255,0.07); color: #fff; }

.nav-mobile-cta {
  display: block;
  width: calc(100% - 40px);
  margin: 12px 20px 4px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(208,2,27,0.4);
  -webkit-tap-highlight-color: transparent;
}

/* Overlay behind mobile menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════
   AD LABEL
══════════════════════════════════════ */
.ad-label {
  background: #fffbe6;
  border-bottom: 1px solid #f0d060;
  text-align: center;
  padding: 7px 16px;
  font-size: 0.72rem;
  color: #7a6000;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #0d1b2a 0%, #1a2744 55%, #0f3460 100%);
  color: var(--white);
  padding: 56px 20px 48px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.7rem);
  font-weight: 900;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: #f5a623;
  font-style: normal;
}
.hero p {
  font-size: clamp(0.97rem, 3vw, 1.08rem);
  max-width: 600px;
  margin: 0 auto 30px;
  color: #c8d8ee;
  font-weight: 400;
}
.hero-img-wrap {
  max-width: 860px;
  margin: 30px auto 34px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  line-height: 0;
}
.hero-img-wrap img {
  width: 100%;
  display: block;
  height: auto;
}

/* Trust badges under hero button */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-item .ti-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Customer counter banner */
.counter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center;
}
.counter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}
.counter-item { text-align: center; }
.counter-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.counter-lbl {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}
.counter-sep {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(208,2,27,0.4);
  line-height: 1.4;
}
.btn-primary:hover  { background: #a80015; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
  padding: 15px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.15s;
  line-height: 1.4;
}
.btn-white:hover  { transform: translateY(-2px); }
.btn-white:active { transform: translateY(0); }

/* ══════════════════════════════════════
   STAT BANNER
══════════════════════════════════════ */
.stat-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 18px 20px;
  font-size: clamp(0.88rem, 3vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
}
.stat-banner strong { font-size: 1.1em; display: block; margin-top: 4px; }

/* ══════════════════════════════════════
   INTRO TEXT
══════════════════════════════════════ */
.intro {
  max-width: 780px;
  margin: 44px auto;
  padding: 0 20px;
  font-size: clamp(0.97rem, 2.5vw, 1.03rem);
  color: var(--text);
}
.intro p { margin-bottom: 18px; }
.intro strong { color: var(--dark); }
.intro .cta-center { text-align: center; margin-top: 32px; }

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features {
  background: var(--light-bg);
  padding: 56px 20px;
}
.section-tag {
  display: inline-block;
  background: #fee2e2;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 8px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}
.feature-card .icon-wrap {
  width: 52px; height: 52px;
  background: #fee2e2;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1.3;
}
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.compare-section {
  background: var(--white);
  padding: 56px 20px;
}
.compare-wrap {
  max-width: 820px;
  margin: 0 auto;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--border);
}
.compare-table th.col-verisure {
  background: var(--red);
  color: #fff;
  border-radius: 10px 10px 0 0;
  font-size: 1rem;
}
.compare-table th.col-others {
  color: var(--muted);
  background: var(--light-bg);
}
.compare-table th.col-feature { text-align: left; color: var(--dark); background: #fff; }
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.compare-table td.col-feature {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fafafa; }
.check-yes { color: #16a34a; font-size: 1.3rem; font-weight: 900; }
.check-no  { color: #dc2626; font-size: 1.3rem; }
.check-opt { color: #f59e0b; font-size: 0.78rem; font-weight: 600; }
.compare-table td.col-verisure { background: #fff5f5; font-weight: 700; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.steps {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 20px;
  text-align: center;
  background: var(--light-bg);
}
.steps h2 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: left;
}
.step-num {
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h4 { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.step p  { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ══════════════════════════════════════
   REGION SELECTOR
══════════════════════════════════════ */
.region-section {
  background: var(--dark);
  color: var(--white);
  padding: 48px 20px;
  text-align: center;
}
.region-section h2 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.region-section .subtitle {
  font-size: 0.92rem;
  color: #aac4e8;
  margin-bottom: 30px;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 32px;
}
.region-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
  line-height: 1.3;
  -webkit-tap-highlight-color: transparent;
}
.region-btn:hover,
.region-btn:active { background: var(--red); border-color: var(--red); color: var(--white); }
.region-section .btn-primary { margin-top: 8px; }

/* ══════════════════════════════════════
   CTA BLOCK
══════════════════════════════════════ */
.cta-block {
  background: linear-gradient(135deg, #d0021b, #8b0010);
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
}
.cta-block h2 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-block p {
  font-size: clamp(0.93rem, 2.5vw, 1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ══════════════════════════════════════
   DISCLAIMER
══════════════════════════════════════ */
.disclaimer {
  background: #f0f0f0;
  border-top: 2px solid #ddd;
  padding: 16px 20px;
  text-align: center;
  font-size: 0.74rem;
  color: #888;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 28px 20px;
  font-size: 0.78rem;
  line-height: 1.8;
}
footer .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
footer a { color: #aaa; text-decoration: none; padding: 4px 10px; display: inline-block; }
footer a:hover { color: var(--white); }

/* ══════════════════════════════════════
   STATIC PAGES
══════════════════════════════════════ */
.page-wrap {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 20px 60px;
}
.page-wrap h1 { font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 800; margin-bottom: 24px; color: var(--dark); }
.page-wrap h2 { font-size: 1.1rem; font-weight: 700; margin: 26px 0 10px; color: var(--dark); }
.page-wrap p  { margin-bottom: 14px; font-size: 0.96rem; color: var(--text); }
.page-wrap a  { color: var(--red); }

/* ══════════════════════════════════════
   NAV RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 860px) {
  .nav-desktop  { display: none; }
  .nav-burger   { display: flex; }
  .nav-mobile   { display: flex; }
  .header-badge { display: none; }
}

/* ══════════════════════════════════════
   TABLET  ≤ 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 40px 18px 36px; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .region-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
  }

  .counter-bar-inner { gap: 20px; }
  .counter-sep { display: none; }
  .counter-num { font-size: 1.25rem; }

  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.83rem; }
}

/* ══════════════════════════════════════
   MOBILE  ≤ 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Header */
  header { padding: 12px 16px; }
  .header-badge { display: none; }

  /* Hero */
  .hero { padding: 32px 16px 30px; }
  .hero h1 { font-size: 1.35rem; margin-bottom: 16px; }
  .hero p  { font-size: 0.93rem; margin-bottom: 22px; }
  .hero-img-wrap { margin: 20px auto 26px; border-radius: 10px; }

  /* Buttons – full width on mobile */
  .btn-primary,
  .btn-white {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 1rem;
  }
  .intro .cta-center .btn-primary,
  .region-section .btn-primary,
  .cta-block .btn-white { max-width: 400px; margin-left: auto; margin-right: auto; }

  /* Stat banner */
  .stat-banner { padding: 14px 16px; }

  /* Intro */
  .intro { margin: 32px auto; padding: 0 16px; font-size: 0.95rem; }

  /* Features – single column */
  .features { padding: 36px 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 20px 18px; }

  /* Counter */
  .counter-bar-inner { gap: 14px; }
  .counter-num { font-size: 1.1rem; }
  .counter-lbl { font-size: 0.68rem; }

  /* Compare table */
  .compare-section { padding: 36px 16px; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 9px 10px; }

  /* Hero trust */
  .hero-trust { gap: 14px; }
  .trust-item { font-size: 0.76rem; }

  /* Steps */
  .steps { padding: 36px 16px; }
  .step { padding: 16px; gap: 14px; }

  /* Regions */
  .region-section { padding: 36px 16px; }
  .region-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }
  .region-btn { padding: 12px 8px; font-size: 0.78rem; }

  /* CTA */
  .cta-block { padding: 40px 16px; }

  /* Footer */
  footer { padding: 24px 16px; }
  footer a { padding: 6px 8px; font-size: 0.82rem; }

  /* Static pages */
  .page-wrap { margin: 28px auto; padding: 0 16px 48px; }
}

/* ══════════════════════════════════════
   VERY SMALL  ≤ 360px
══════════════════════════════════════ */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.2rem; }
  .region-grid { grid-template-columns: 1fr; }
  .region-btn { padding: 13px 10px; }
}
