*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1f3a;
  --navy2: #1e3a5f;
  --yellow: #f5c518;
  --ylw2: #d4a800;
  --light: #f4f6fa;
  --mid: #6b7a8d;
  --white: #ffffff;
  --text: #1a2537;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding: 2px 0 2px 10px;
  margin-bottom: 14px;
}

.tag.dark {
  color: var(--navy);
  border-color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--ylw2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy2);
  transform: translateY(-2px);
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}

.section-title span {
  color: var(--ylw2);
}

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 560px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar-badge {
  background: var(--yellow);
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.logo-name span {
  color: var(--ylw2);
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ylw2);
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #e8edf3;
  padding: 16px 24px 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid #eef1f6;
}

.mobile-menu a:hover {
  color: var(--ylw2);
}

.mobile-menu .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}
.mobile-menu .btn-primary:hover {
  color: var(--navy2) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 93vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(11, 31, 58, 0.96) 38%,
      rgba(11, 31, 58, 0.65) 100%
    ),
    url("images/hero.avif") center/cover no-repeat;
}

.hero-stripe {
  position: absolute;
  right: -60px;
  top: 0;
  width: 520px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.07;
  transform: skewX(-14deg);
  pointer-events: none;
}

.hero-stripe2 {
  position: absolute;
  right: 120px;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.5;
  transform: skewX(-14deg);
  pointer-events: none;
}

.hero-stripe3 {
  position: absolute;
  right: 180px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.3;
  transform: skewX(-14deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 90px 0;
}

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.cred-badge {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  padding: 5px 12px;
  border-radius: 2px;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.3rem, 5.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--yellow);
  padding: 18px 0;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── INTRO ── */
.intro {
  padding: 96px 0;
  background: var(--white);
}

.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-visual {
  position: relative;
}

.intro-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: url(Images/e-life-bg1.png) center/cover no-repeat;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.intro-img-wrap svg {
  width: 60px;
  height: 60px;
  opacity: 0.75;
}

.intro-img-wrap span {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 114px;
  height: 114px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(245, 197, 24, 0.35);
}

.badge-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.badge-lbl {
  font-family: "Oswald", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  padding: 0 10px;
}

.intro-text .section-title {
  margin-bottom: 18px;
}

.intro-text .section-sub {
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.ck {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ck svg {
  width: 11px;
  height: 11px;
}

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--light);
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.svc-card {
  background: var(--white);
  padding: 36px 32px;
  border-bottom: 3px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.svc-card:hover {
  border-bottom-color: var(--yellow);
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.1);
  transform: translateY(-4px);
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}

.svc-card:hover .svc-icon {
  background: var(--yellow);
}

.svc-icon svg {
  width: 26px;
  height: 26px;
}

.svc-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-list li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── ADD SERVICES ── */
.add-svc {
  background: var(--navy);
  padding: 52px 0;
}

.add-svc .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.add-svc-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.add-svc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.add-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.add-card:hover {
  background: rgba(245, 197, 24, 0.12);
  border-color: var(--yellow);
}

.add-card svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
  flex-shrink: 0;
}

.add-card span {
  font-family: "Oswald", sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 96px 0;
  background: var(--white);
}

.how-head {
  text-align: center;
  margin-bottom: 64px;
}

.how-head .section-title {
  margin-bottom: 12px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0,
    var(--yellow) 8px,
    transparent 8px,
    transparent 18px
  );
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--white);
}

.step-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.step-desc {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ── WHY CHOOSE US ── */
.why {
  padding: 96px 0;
  background: var(--light);
}

.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-text .section-title {
  margin-bottom: 16px;
}

.why-text .section-sub {
  margin-bottom: 40px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.reason-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d8e2ef;
  line-height: 1;
  margin-bottom: 2px;
}

.reason-title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.reason-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.65;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wsc {
  background: var(--white);
  border-radius: 3px;
  padding: 28px 22px;
  text-align: center;
}

.wsc.accent {
  background: var(--navy);
}

.wsc.yellow {
  background: var(--yellow);
}

.wsc.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wsc-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.wsc.accent .wsc-num {
  color: var(--yellow);
}

.wsc.yellow .wsc-num {
  color: var(--navy);
}

.wsc-lbl {
  font-size: 0.76rem;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

.wsc.accent .wsc-lbl {
  color: rgba(255, 255, 255, 0.5);
}

.wsc.yellow .wsc-lbl {
  color: rgba(11, 31, 58, 0.65);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.testi-head {
  text-align: center;
  margin-bottom: 56px;
}

.testi-head .section-title {
  color: var(--white);
  margin-bottom: 10px;
}

.testi-head .section-title span {
  color: var(--yellow);
}

.testi-head p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 32px 28px;
  position: relative;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 197, 24, 0.25);
}

.testi-quote-mark {
  font-family: "Oswald", sans-serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--yellow);
  opacity: 0.25;
  position: absolute;
  top: 20px;
  right: 24px;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-stars span {
  color: var(--yellow);
  font-size: 1rem;
}

.testi-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.testi-name {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.testi-loc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ── CANADA COVERAGE ── */
.coverage {
  padding: 80px 0;
  background: var(--white);
}

.coverage .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.coverage-map {
  background: url(Images/map.png) center/contain no-repeat;
  border-radius: 3px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B1F3A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}

.map-icon {
  position: relative;
  z-index: 1;
}

.map-icon svg {
  width: 90px;
  height: 90px;
  color: var(--navy);
  opacity: 0.18;
}

.canada-label {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.canada-sub {
  font-size: 0.82rem;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.coverage-text .section-title {
  margin-bottom: 16px;
}

.coverage-text .section-sub {
  margin-bottom: 28px;
}

.coverage-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.coverage-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.55;
}

.cp-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── CTA FULL ── */
.cta-full {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  overflow: hidden;
}

.cta-full::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-full .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-copy h2 span {
  color: var(--yellow);
}

.cta-copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.cta-phone {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.cta-phone:hover {
  color: var(--white);
}

.cta-phone-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  margin-top: -8px;
}

/* ── FOOTER ── */
footer {
  background: #07172a;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin: 16px 0 20px;
}

.footer-creds {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-cred::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-col h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.footer-links a::before {
  content: "›";
  color: var(--yellow);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.fci-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.fci-icon {
  width: 32px;
  height: 32px;
  background: rgba(245, 197, 24, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fci-icon svg {
  width: 15px;
  height: 15px;
}

.fci-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.fci-text a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.fci-text a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--yellow);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .intro .container,
  .why .container,
  .coverage .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .intro-badge {
    bottom: -16px;
    right: 16px;
  }

  .why-visual {
    order: -1;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .how-steps::before {
    display: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-left {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-stats {
    gap: 22px;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    grid-template-columns: 1fr 1fr;
  }

  .cta-full .container {
    flex-direction: column;
  }

  .cta-actions {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip .container {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
