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

:root {
  --navy: #0d1b3f;
  --navy-dark: #07112b;
  --accent: #ff5c4d;
  --accent-2: #ff8b5f;
  --soft: #f5f7fb;
  --card: #ffffff;
  --text: #1b1f33;
  --muted: #5a6076;
  --border: #e5e8f0;
  --shadow: 0 18px 45px rgba(13, 27, 63, 0.08);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.soft-bg {
  background: linear-gradient(135deg, #f9fbff 0%, #f3f6fd 100%);
}

.grid {
  display: grid;
  gap: 32px;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.align-center {
  align-items: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.3;
}

.brand-text strong {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.brand-text span:not(.tagline) {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.brand-text .tagline {
  color: var(--muted);
  font-weight: 400;
  font-size: 11px;
  margin-top: 2px;
  line-height: 1.3;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.nav .btn {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  background: linear-gradient(120deg, rgba(13, 27, 63, 0.08), rgba(255, 92, 77, 0.06));
}

.hero-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(30px, 5vw, 40px);
  margin: 16px 0 12px;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 27, 63, 0.08);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
}

.bullets,
.checklist,
.bullet {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullets li::before,
.bullet li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.checklist li {
  padding-left: 0;
}

.checklist li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 10px;
  font-weight: 700;
}

.hero-cta {
  margin-top: 20px;
}

.hero-cta .cta-sub {
  color: var(--muted);
  margin-top: 10px;
  max-width: 520px;
}

.hero-media .card {
  overflow: hidden;
  padding: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.photo-card {
  padding: 0;
  box-shadow: 0 25px 55px rgba(13, 27, 63, 0.18);
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 4vw, 34px);
}

h3 {
  margin: 6px 0 10px;
  font-size: 20px;
}

.muted {
  color: var(--muted);
}

.cards {
  margin-top: 28px;
}

.offer .badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(13, 27, 63, 0.08);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
}

.offer .badge.accent {
  background: rgba(255, 92, 77, 0.12);
  color: var(--accent);
}

.offer .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 6px;
}

.alt {
  margin-top: 28px;
  border-style: dashed;
  background: linear-gradient(135deg, rgba(255, 92, 77, 0.06), #fff);
}

.badge.subtle {
  background: rgba(13, 27, 63, 0.06);
  color: var(--muted);
}

.card-title {
  font-weight: 700;
  margin: 0 0 10px;
}

.note {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.steps {
  list-style: decimal;
  padding-left: 18px;
  margin: 12px 0 0;
  display: grid;
  gap: 12px;
}

blockquote {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 92, 77, 0.06);
  border-radius: 0 14px 14px 0;
  color: var(--navy);
}

.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}

.cta .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}

.cta .muted,
.cta .section-label {
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.wide {
  padding: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff704f 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 92, 77, 0.25);
}

.btn.secondary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 27, 63, 0.25);
}

.btn.ghost {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.foot-label {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer {
  background: var(--navy-dark);
  color: #fff;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

.footer-bottom .container {
  padding: 16px 0;
}

.bullet li {
  color: var(--muted);
}

.media {
  position: relative;
  overflow: hidden;
}

.stat-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #fff;
  color: var(--navy);
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 140px;
}

.stat-badge strong {
  display: block;
  font-size: 18px;
}

.section .card.highlight {
  background: linear-gradient(135deg, rgba(13, 27, 63, 0.9), rgba(13, 27, 63, 0.8));
  color: #fff;
  border: none;
  box-shadow: 0 25px 55px rgba(13, 27, 63, 0.35);
}

.section .card.highlight .steps li {
  color: #fff;
}

.bullet,
.checklist {
  color: var(--text);
}

.card.offer {
  display: grid;
  gap: 10px;
}

.grid.two-col .right {
  justify-self: end;
  text-align: right;
}

.cards .card {
  min-height: 100%;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 16px;
    background: #fff;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    width: 220px;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .grid.two-col .right {
    text-align: left;
    justify-self: start;
  }

  .cta .grid.two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .topbar .container {
    width: 92vw;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .wide {
    padding: 24px;
  }

  .container {
    width: min(100%, 92vw);
  }
}

