/* ==========================================================================
   Surefire Systems — Landing Page
   Brand: #257c8e (teal) · #051c2e (navy) · #d0f0f6 (cyan tint) · #ffffff
   Type: Poppins (display) · Open Sans (body)
   ========================================================================== */

:root {
  /* Brand colors */
  --primary: #257c8e;
  --primary-deep: #1c6373;
  --primary-soft: #d0f0f6;
  --navy: #051c2e;
  --navy-soft: #0e2a40;
  --accent: #ed1c24;
  --accent-soft: #ffe5e6;
  --white: #ffffff;
  --ink: #0d1f2e;
  --muted: #5a6b78;
  --border: #e4ecef;
  --bg: #ffffff;
  --bg-soft: #f6fbfc;

  /* Tokens */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 1px 3px rgba(5, 28, 46, 0.06), 0 1px 2px rgba(5, 28, 46, 0.04);
  --shadow-md: 0 6px 24px rgba(5, 28, 46, 0.08);
  --shadow-lg: 0 24px 60px rgba(5, 28, 46, 0.18);
  --shadow-glow: 0 30px 80px rgba(37, 124, 142, 0.25);

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-deep); }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }
em { font-style: italic; color: var(--primary-deep); font-weight: 600; }

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.eyebrow--dark { color: var(--primary-deep); background: rgba(37, 124, 142, 0.1); }
.eyebrow--light { color: var(--primary-soft); background: rgba(208, 240, 246, 0.12); }

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  margin-bottom: 1rem;
}
.section-title--center { text-align: center; }
.section-title--light { color: var(--white); }

.section-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  max-width: 60ch;
}
.section-sub--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub--light { color: rgba(255, 255, 255, 0.85); }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head .eyebrow { display: inline-block; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 124, 142, 0.28);
}
.btn--primary:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 124, 142, 0.36); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(5, 28, 46, 0.18);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--accent {
  background: var(--white);
  color: var(--primary-deep);
}
.btn--accent:hover { background: var(--primary-soft); color: var(--primary-deep); transform: translateY(-2px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(5, 28, 46, 0.06);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__logo img {
  height: 42px;
  width: auto;
}
.header__nav {
  margin-left: auto;
  display: flex;
  gap: 2rem;
}
.header__nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.header__nav a:hover::after { transform: scaleX(1); }
.header__cta { padding: 0.7rem 1.3rem; font-size: 0.9rem; }
.header__menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  margin-left: auto;
  position: relative;
}
.header__menu-toggle span {
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 220ms ease, top 220ms ease, opacity 180ms ease;
}
.header__menu-toggle span:nth-child(1) { top: 14px; }
.header__menu-toggle span:nth-child(2) { top: 21px; }
.header__menu-toggle span:nth-child(3) { top: 28px; }
body.nav-open .header__menu-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .header__menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .header__menu-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ==========================================================================
   HERO — full-bleed image background with text overlay
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 78vh, 720px);
  padding: clamp(4rem, 9vh, 7rem) 0 clamp(3.5rem, 7vh, 5.5rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0.08) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
}
.hero__copy {
  max-width: 760px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.95rem, 3.8vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 1.4rem;
}
.hero__title-accent {
  display: inline-block;
  color: var(--primary-soft);
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 72ch;
  margin: 0 0 1.4rem;
  line-height: 1.6;
  text-wrap: balance;
}
.hero__pillars-line {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  letter-spacing: 0.02em;
  color: var(--white);
  background: rgba(208, 240, 246, 0.14);
  border: 1px solid rgba(208, 240, 246, 0.28);
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  margin: 0 0 1.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__transition {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  margin: 1.5rem 0 0;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0;
}
.hero .btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 124, 142, 0.36);
}
.hero .btn--primary:hover {
  background: var(--primary-soft);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(37, 124, 142, 0.30);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust {
  padding: 3rem 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.trust__label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.trust__logos img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 250ms ease, opacity 250ms ease, transform 250ms ease;
}
.trust__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.problem {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.problem__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}
.problem__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 100%;
}
.problem__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.problem__media-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(5, 28, 46, 0.85);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0 2rem;
}
.pain-list li {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem 1.1rem;
  position: relative;
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.pain-list li::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
  width: 4px;
  height: 32px;
  background: var(--primary);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 220ms ease;
}
.pain-list li:hover {
  transform: translateY(-2px);
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-md);
}
.pain-list li:hover::before { opacity: 1; }
.pain-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.pain-list p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.pain-list--simple {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.pain-list--simple li {
  padding: 0.95rem 1rem 0.95rem 3rem;
  position: relative;
}
.pain-list--simple li::after {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.pain-list--simple p {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.5;
}
.pain-list--simple li:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}
.pain-list--simple li::before { display: none; }
.problem__close {
  font-size: 1.1rem;
  margin: 1.5rem 0 1.5rem;
}

/* ==========================================================================
   SOLUTIONS
   ========================================================================== */
.guide {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-soft);
  position: relative;
}
.guide .section-sub {
  max-width: 78ch;
}
.guide__reasons {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-sm);
}
.guide__reasons-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.guide__reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}
.reason {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.reason__num {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.reason p {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}
.guide__products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.25rem 1.5rem;
  text-align: center;
  transition: transform 220ms ease, box-shadow 250ms ease, border-color 220ms ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.product-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  transition: background 220ms ease;
}
.product-card:hover .product-card__icon { background: var(--primary); }
.product-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 220ms ease;
}
.product-card:hover .product-card__icon img { filter: brightness(0) invert(1); }
.product-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.product-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.guide__close {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.guide__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(37, 124, 142, 0.55), transparent 70%),
    radial-gradient(50% 60% at 10% 90%, rgba(37, 124, 142, 0.45), transparent 70%),
    linear-gradient(180deg, #051c2e 0%, #0a2a40 100%);
}
.process__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(208, 240, 246, 0.14) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, #000 30%, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 50%, #000 30%, transparent 75%);
}
.process > .container { position: relative; z-index: 1; }
.process__sub {
  max-width: 70ch;
  text-wrap: balance;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  counter-reset: step;
}
.process__steps--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(208, 240, 246, 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem;
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}
.process-step:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-soft);
}
.process-step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
  background: rgba(208, 240, 246, 0.12);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 0.65rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.process-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-weight: 400;
}
.process__close {
  text-align: center;
}
.process__close p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.process__close em { color: var(--primary-soft); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
/* ==========================================================================
   SUCCESS
   ========================================================================== */
.success {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
  position: relative;
}
.success__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.success__list li {
  position: relative;
  padding: 1.1rem 1.2rem 1.1rem 3.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.success__list li:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.success__list li::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   OFFER
   ========================================================================== */
.offer {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-soft);
  position: relative;
}
.offer__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.offer__visual {
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.offer__guide-card {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(70% 50% at 30% 0%, rgba(208, 240, 246, 0.30), transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem 1.85rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: rotate(-3deg);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.offer__guide-card:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow: 0 30px 70px rgba(5, 28, 46, 0.30);
  color: var(--white);
}
.offer__guide-card:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}
.offer__guide-card::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -20%;
  width: 80%;
  height: 70%;
  background: radial-gradient(circle, rgba(208, 240, 246, 0.15), transparent 70%);
  pointer-events: none;
}
.offer__guide-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--primary-soft);
  color: var(--primary-deep);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: auto;
}
.offer__guide-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: var(--white);
  line-height: 1.05;
  margin: 1.5rem 0 0.5rem;
  position: relative;
  z-index: 1;
}
.offer__guide-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
  position: relative;
  z-index: 1;
}
.offer__guide-pages {
  height: 5px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.offer__guide-pages::before,
.offer__guide-pages::after {
  content: '';
  display: block;
  height: 5px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 4px;
  margin-top: 0.6rem;
}
.offer__guide-pages::before { width: 75%; }
.offer__guide-pages::after { width: 50%; }
.offer__subheading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 60ch;
  margin-bottom: 1.75rem;
}
.offer__inside-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
}
.offer__list {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 2rem;
}
.offer__list li {
  position: relative;
  padding: 0.85rem 1.1rem 0.85rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.offer__list li::before {
  content: '→';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}
.final-cta__card {
  background:
    radial-gradient(50% 70% at 0% 0%, rgba(37, 124, 142, 0.40), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(208, 240, 246, 0.20), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  color: var(--white);
  line-height: 1.1;
  margin: 0 auto 1.25rem;
  max-width: 22ch;
  letter-spacing: -0.02em;
}
.final-cta__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--primary-soft);
  margin: 0 0 0.65rem;
}
.final-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.final-cta__alt {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}
.final-cta__alt a {
  color: var(--primary-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta__alt a:hover { color: var(--white); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2.5rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer__logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}
.footer__nav a:hover { color: var(--primary-soft); }
.footer__copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero { min-height: clamp(520px, 70vh, 640px); }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5, 28, 46, 0.55) 0%, rgba(5, 28, 46, 0.85) 50%, rgba(5, 28, 46, 0.95) 100%);
  }
  .hero__copy { max-width: 100%; }

  .problem__inner { grid-template-columns: 1fr; }
  .problem__media { aspect-ratio: 16 / 10; max-width: 640px; margin: 0 auto; width: 100%; }

  .guide__products { grid-template-columns: repeat(3, 1fr); }
  .guide__reasons-grid { grid-template-columns: 1fr; gap: 1.25rem; }

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

  .offer__inner { grid-template-columns: 1fr; }
  .offer__visual { order: -1; }
  .success__list { grid-template-columns: 1fr; }

  .pain-list { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .header__nav,
  .header__cta { display: none; }
  .header__menu-toggle { display: block; }

  body.nav-open .header__nav {
    display: flex;
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(5, 28, 46, 0.08);
    z-index: 99;
  }
  body.nav-open .header__nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  body.nav-open .header__cta {
    display: inline-flex;
    position: fixed;
    inset: auto var(--gutter) 1.5rem var(--gutter);
    z-index: 99;
    justify-content: center;
  }

  .hero { padding-top: 2.5rem; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .hero__pillars { grid-template-columns: 1fr; gap: 0.75rem; padding-top: 1.5rem; }
  .pillar { flex-direction: row; align-items: baseline; gap: 0.75rem; }
  .pillar__num { font-size: 1.5rem; }

  .trust__logos { gap: 1.75rem; }
  .trust__logos img { height: 28px; }

  .pain-list { grid-template-columns: 1fr; gap: 0.85rem; }
  .pain-list li { padding: 1rem 1.1rem; }

  .guide__products { grid-template-columns: repeat(2, 1fr); }
  .product-card { padding: 1.4rem 1rem 1.2rem; }

  .process__steps { grid-template-columns: 1fr; }

  .final-cta__card { padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); }

  .footer__nav { gap: 1rem 1.25rem; }

  .btn { padding: 0.85rem 1.4rem; font-size: 0.9rem; }
  .btn--lg { padding: 0.95rem 1.6rem; font-size: 0.95rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
}

/* Small mobile polish */
@media (max-width: 420px) {
  .header__logo img { height: 34px; }
  .section-head { margin-bottom: 2.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
