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

:root {
  --primary:     #0f172a;
  --primary-mid:  #2c778b;
  --primary-light:#0084ac;
  --accent:       #ff7a00;
  --accent-hover: #e66d00;
  --white:        #ffffff;
  --off-white:    #f5f7fa;
  --light-blue:   #c3cfe2;
  --text-dark:    #1a1a1a;
  --text-mid:     #333333;
  --border:       #e2e8f0;
  --shadow-sm:    0 4px 16px rgba(0,0,0,.08);
  --shadow-md:    0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:    0 15px 50px rgba(0,0,0,.20);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
  color: var(--primary);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 0;
  font-weight: 500;
  word-spacing: .3px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   TOP HEADER — sky blue bar with phone & email
   ============================================================ */
.top-header {
  background: var(--primary);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s;
}

.top-contact-link:hover { color: #4fc3f7; }

.top-contact-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .8;
}

.top-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.22);
}

/* ============================================================
   MAIN HEADER — white sticky bar with logo + nav
   ============================================================ */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
}

.main-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.main-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.main-logo img {
  height: 72px;
  width: auto;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li a {
  display: block;
  padding: 9px 15px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all .2s;
  letter-spacing: .02em;
  position: relative;
  white-space: nowrap;
}

.main-nav li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s;
}

.main-nav li a:hover {
  color: var(--primary-light);
  background: rgba(50,130,184,.08);
}

.main-nav li a:hover::after { transform: scaleX(1); }

.main-nav li a.nav-cta {
  background: var(--primary-light);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(50,130,184,.35);
  margin-left: 8px;
}

.main-nav li a.nav-cta::after { display: none; }

.main-nav li a.nav-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO BANNER
   ============================================================ */
.page-banner {
  position: relative;
  min-height: 400px;
  background: url('https://insurancehelpline.co.uk/images/banner.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,43,81,.92) 0%,
    rgba(0,43,81,.72) 55%,
    rgba(30,90,142,.30) 100%);
}

.banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.banner-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.banner-content h1 em {
  font-style: normal;
  color: #ffd166;
}

.banner-content p {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 480px;
}

.banner-btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(255,122,0,.35);
  letter-spacing: .02em;
}

.banner-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,122,0,.45);
}

/* ============================================================
   HERO FORM SECTION
   ============================================================ */
.hero-form-section {
  background: #ffffff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.hero-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 15% 50%,
    rgba(50,130,184,.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT content */
.hero-left .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(50,130,184,.12);
  border: 1px solid rgba(0,43,81,.25);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.hero-left h2 em { font-style: normal; color: var(--accent); }

.hero-left .hero-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hbadge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid rgba(50,130,184,.25);
  color: var(--text-dark);
  padding: 7px 13px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hbadge .dot { color: var(--primary-light); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-box {
  text-align: center;
  padding: 16px 10px;
  border: 1.5px solid rgba(50,130,184,.25);
  border-radius: var(--radius-sm);
  background: rgba(50,130,184,.08);
  transition: all .3s;
}

.stat-box:hover {
  background: rgba(50,130,184,.14);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-size: .75rem;
  color: var(--text-mid);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* ── FORM CARD (matches CPCS blue gradient card) ── */
.form-card {
  background: linear-gradient(135deg, #1e5a8e 0%, #2d7ab8 100%);
  padding: 24px 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  position: sticky;
  top: 100px;
}

.form-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 5px;
  text-align: center;
  color: var(--white);
}

.form-sub {
  text-align: center;
  opacity: .9;
  margin-bottom: 18px;
  font-size: .875rem;
  color: var(--white);
}

.form-group { margin-bottom: 8px; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: .85rem;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  background: rgba(255,255,255,.95);
  color: var(--text-dark);
  transition: all .3s;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,122,0,.15);
  transform: translateY(-1px);
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  width: 100%;
  padding: 13px 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,122,0,.4);
}

.form-note {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── Alerts ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  font-weight: 600;
  font-size: .95rem;
}
.alert-success { background: #d4edda; color: #155724; border: 2px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 2px solid #f5c6cb; }

/* ============================================================
   CTA WRAPPER BANNER
   ============================================================ */
.cta_wrapper {
  background: var(--white);
  border: 1.5px solid rgba(50,130,184,.18);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: -22px auto 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.cta__trustpilot {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cta_ratting {
  font-weight: 700;
  font-size: .95rem;
  color: #00b67a;
}

.cta_heading span {
  display: flex;
  flex-direction: column;
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.5;
}

.cta_heading span span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.cta_btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cta_btn {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.cta_btn.fbtn {
  background: var(--primary-light);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(50,130,184,.3);
}

.cta_btn.fbtn:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.cta_btn.tbtn {
  background: transparent;
  color: var(--primary-light);
  border: 1.5px solid rgba(50,130,184,.4);
}

.cta_btn.tbtn:hover {
  background: rgba(50,130,184,.08);
  border-color: var(--primary-light);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  padding: 12px 5%;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section { padding: 52px 5%; }

.section-tag {
  /* display: inline-block; */
  width: fit-content;
  background: rgba(50,130,184,.1);
  color: var(--primary);
  border: 1px solid rgba(50,130,184,.25);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 5px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.25;
  display: inline-block;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================================
   CLAIM CARDS
   ============================================================ */
.claims-section { background: linear-gradient(135deg, #f7faff 0%, #f3f3f3 100%); }

.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.claim-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.claim-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-light);
  transform: scaleX(0);
  transition: transform .3s;
}

.claim-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.claim-card:hover::after { transform: scaleX(1); }

.claim-icon { width: 48px; height: 48px; margin-bottom: 14px; }

.claim-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
}

.claim-card p {
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.75;
}

.claim-list { list-style: none; margin-top: 12px; padding: 0; margin-bottom: 0; }

.claim-list li {
  color: var(--text-mid);
  font-size: .9rem;
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.6;
  font-weight: 500;
}

.claim-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 900;
}

/* ============================================================
   STEPS SECTION
   ============================================================ */
.steps-section {
  background: #fff;
  position: relative;
}

.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.steps-section .section-title { border-bottom-color: var(--primary-light); }
.steps-section .section-desc  { color: var(--text-mid); }
.steps-section .section-tag   { background: rgba(50,130,184,.1); color: var(--primary); border-color: rgba(50,130,184,.25); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  position: relative;
  z-index: 1;
  gap: 16px;
}

.step-item {
  text-align: center;
  padding: 28px 18px 24px;
  background: rgba(50,130,184,.05);
  border: 1px solid rgba(50,130,184,.15);
  border-radius: var(--radius-md);
  transition: all .3s;
}

.step-item:hover {
  background: rgba(50,130,184,.10);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid rgba(255,122,0,.2);
  box-shadow: 0 6px 20px rgba(255,122,0,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem; font-weight: 900;
  color: var(--white);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   NO WIN NO FEE SECTION
   ============================================================ */
.nwnf2-section {
  background: linear-gradient(135deg, #f7faff 0%, #f3f3f3 100%);
  padding: 52px 5%;
  position: relative;
  overflow: hidden;
}

.nwnf2-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(50,130,184,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nwnf2-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.nwnf2-header { text-align: center; margin-bottom: 48px; }
.nwnf2-header .section-tag {
    display: inline;
}

.nwnf2-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.nwnf2-header h2 em { font-style: normal; color: var(--primary-light); }

.nwnf2-header p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.nwnf2-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

.nwnf2-dark-card {
  background: linear-gradient(135deg, #1e5a8e 0%, #2d7ab8 100%);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}

.nwnf2-dark-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.nwnf2-dark-card-inner { position: relative; z-index: 1; }

.nwnf2-shield {
  width: 68px; height: 68px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.nwnf2-dark-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.nwnf2-dark-card .sub {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.nwnf2-stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.nwnf2-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.nwnf2-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffd166;
  min-width: 52px;
  line-height: 1;
}

.nwnf2-stat-label { font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.5; }
.nwnf2-stat-label strong { display: block; color: rgba(255,255,255,.95); font-weight: 600; font-size: .9rem; }

.nwnf2-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 6px 20px rgba(255,122,0,.35);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nwnf2-card-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,122,0,.45);
}

.nwnf2-features { display: flex; flex-direction: column; gap: 14px; }

.nwnf2-feat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}

.nwnf2-feat:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.nwnf2-feat-num {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.nwnf2-feat:nth-child(1) .nwnf2-feat-num { background: rgba(50,130,184,.1);  color: var(--primary-light); }
.nwnf2-feat:nth-child(2) .nwnf2-feat-num { background: rgba(32,164,111,.1);  color: #20a46f; }
.nwnf2-feat:nth-child(3) .nwnf2-feat-num { background: rgba(239,68,68,.08);  color: #e53e3e; }
.nwnf2-feat:nth-child(4) .nwnf2-feat-num { background: rgba(245,158,11,.1);  color: #d97706; }

.nwnf2-feat-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.nwnf2-feat-body p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

.nwnf2-feat-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(50,130,184,.1);
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
}

.nwnf2-feat:nth-child(2) .nwnf2-feat-tag { color: #20a46f; background: rgba(32,164,111,.1); }

.nwnf2-guarantee {
  margin-top: 28px;
  background: var(--primary) ;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.12);
}

.nwnf2-guarantee-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nwnf2-guarantee-text { flex: 1; min-width: 200px; }
.nwnf2-guarantee-text h4 { font-size: 1rem; color: var(--white); margin-bottom: 3px; }
.nwnf2-guarantee-text p { font-size: .87rem; color: rgba(255,255,255,.72); line-height: 1.6; margin: 0; }

.nwnf2-guarantee-badges { display: flex; gap: 10px; flex-wrap: wrap; }

.nwnf2-gbadge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
}

/* ============================================================
   ABOUT BLOCK
   ============================================================ */
.about-block-section {
  background: #ffffff;
  padding: 30px 5%;
}

.about-block-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-block-img img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-md);
}

.about-block-content h2 {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.3;
  border-bottom: 3px solid var(--primary-light);
  padding-bottom: 12px;
}

.about-block-content p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ============================================================
   COMPENSATION SECTION
   ============================================================ */
.comp-section { background: linear-gradient(135deg, #f7faff 0%, #f3f3f3 100%) }

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}

.comp-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.comp-card h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 700;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .92rem;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  font-weight: 500;
}

.comp-item:last-child { border-bottom: none; }

.factors-list { display: flex; flex-direction: column; gap: 14px; }

.factor-item { display: flex; gap: 12px; align-items: flex-start; }

.factor-num {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--primary-light);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .88rem;
  flex-shrink: 0;
}

.factor-text h5 { font-weight: 700; margin-bottom: 4px; font-size: .98rem; color: var(--primary); }
.factor-text p  { color: var(--text-mid); font-size: .92rem; line-height: 1.75; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #ffffff; }
.faq-accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-section .section-title { text-align: center; display: block; }

.faq-details {
  background: rgba(50,130,184,.06);
  border: 1.5px solid rgba(50,130,184,.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-details[open] { border-color: var(--primary-light); }

.faq-chevron {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  transition: transform .3s;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-weight: 700;
  font-size: .97rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  gap: 12px;
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-details[open] .faq-chevron { transform: rotate(90deg); }

.faq-body {
  padding: 12px 20px 18px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.85;
  border-top: 1px solid rgba(50,130,184,.15);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #f7faff 0%, #f3f3f3 100%);
    text-align: center;
    padding: 52px 5%;
    position: relative;
    overflow: hidden;
}
.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color:var(--primary);
  margin-bottom: 12px;
  font-weight: 900;
}

.cta-section p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 18px rgba(255,122,0,.35);
  letter-spacing: .02em;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,122,0,.45);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(0,135,190,.5);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}

.btn-outline:hover { border-color: var(--primary); background: rgba(0,135,190,.08); }

.cta-warning {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,135,190,.1);
  border: 1px solid rgba(0,135,190,.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #000;
  text-align: center;
  padding: 30px 20px 24px;
}

footer a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-weight: 600;
  transition: color .25s;
}

footer a:hover {
  color: var(--accent);
}

footer p {
  margin: 0 auto 10px;
  max-width: 720px;
}

/* privacy links */
footer p:first-child a {
  font-size: .85rem;
  letter-spacing: .02em;
}

/* address line */
footer p:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

/* svg icon color */
footer svg {
  flex-shrink: 0;
  opacity: .8;
}

/* legal text */
footer p:nth-child(3),
footer p:nth-child(4) {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}

/* copyright */
footer p:last-child {
  margin-top: 6px;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 1000;
  background: #25D366; width: 55px; height: 55px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,.4); transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.6); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.banner-content { animation: fadeUp .65s ease forwards; }
.hero-left      { animation: fadeUp .65s ease forwards; }
.hero-right     { animation: fadeUp .65s .12s ease both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    gap: 2px;
  }
  .main-nav.open { display: flex; align-items: start; }
  .main-nav li a { padding: 12px 14px; border-radius: 8px; }
  .main-nav li a.nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
  .banner-inner,
  .hero-form-inner,
  .nwnf2-body,
  .comp-grid,
  .about-block-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-card { position: relative; top: 0; }
  .nwnf2-dark-card { max-width: 100%; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  
  .cta_wrapper {
    flex-direction: column;
    text-align: center;
    margin: -16px 16px 0;
    padding: 16px;
  }
  .cta_btns { width: 100%; }
  .cta_btn  { flex: 1; text-align: center; }
  .nwnf2-guarantee  { flex-direction: column; text-align: center; }
  .nwnf2-guarantee-badges { justify-content: center; }
  .hero-form-inner { grid-template-columns: 1fr; }
  .banner-inner { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .section { padding: 36px 5%; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 18px 14px; }
  .trust-bar { gap: 14px; }
  .cta_btns { flex-direction: column; }
  .nwnf2-feat { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-security { flex-direction: column; align-items: center; gap: 12px; }
  .top-header-inner { justify-content: center; gap: 14px; }
}