:root {
  --brand: #334ecc;
  --brand-strong: #24378e;
  --accent: #7a1239;
  --teal: #007f8a;
  --gold: #f1b84b;
  --ink: #1d2433;
  --muted: #667085;
  --line: #d9dfec;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(20, 31, 56, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  background: var(--brand);
  color: var(--white);
  font-size: 0.95rem;
}

.topbar__inner,
.site-header__inner,
.section,
.footer__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 152px;
  height: auto;
}

.brand__fallback {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-strong);
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.primary-nav a {
  text-decoration: none;
  color: #223057;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--brand);
}

.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.call-link:hover,
.call-link:focus {
  background: var(--brand-strong);
}

.hero {
  position: relative;
  min-height: min(560px, calc(100svh - 130px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #1d2433;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(16, 25, 46, 0.88), rgba(16, 25, 46, 0.58), rgba(16, 25, 46, 0.26)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero__inner {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #dbe3ff;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
}

.hero__copy {
  max-width: 680px;
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.3vw, 1.32rem);
  color: #edf2ff;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: #2c2106;
}

.btn--primary:hover,
.btn--primary:focus {
  background: #ffd478;
}

.btn--secondary {
  background: var(--white);
  color: var(--brand-strong);
}

.btn--outline {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--white);
}

.trust-strip {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.trust-strip .section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  min-width: 0;
}

.trust-item strong {
  display: block;
  line-height: 1.2;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.icon-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section--soft {
  background: var(--soft);
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100% - 1120px) / 2));
  padding-right: max(1rem, calc((100% - 1120px) / 2));
}

.section__head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.section__head p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(20, 31, 56, 0.08);
  overflow: hidden;
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}

.card__body {
  padding: 1.25rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  color: var(--brand-strong);
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border: 2px dashed var(--brand);
  border-radius: 8px;
  padding: 1.5rem;
  background: #fff8e7;
}

.coupon__price {
  color: var(--accent);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.coupon h2,
.coupon p {
  margin: 0;
}

.coupon__offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}

.coupon__offer {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  min-height: 144px;
  padding: 1rem;
  border: 1px solid rgba(51, 78, 204, 0.25);
  border-radius: 8px;
  background: var(--white);
}

.coupon__offer strong {
  color: #27324b;
  line-height: 1.25;
}

.coupon__offer em {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.35;
}

.coupon__offer span {
  color: var(--accent);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

.testimonial {
  padding: 1.25rem;
}

.testimonial blockquote {
  margin: 0;
  color: #30384b;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  color: var(--brand-strong);
  font-weight: 800;
  font-style: normal;
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-weight: 800;
  color: #27324b;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b9c2d6;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note,
.success-message {
  color: var(--muted);
  font-size: 0.94rem;
}

.success-message {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: #e9f8f0;
  color: #176640;
}

.success-message.is-visible {
  display: block;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-detail {
  padding: 1rem;
  border-left: 4px solid var(--brand);
  background: var(--soft);
  border-radius: 8px;
}

.contact-detail strong {
  display: block;
}

.site-footer {
  background: #172038;
  color: #e9edf8;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.site-footer a {
  color: #e9edf8;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.fine-print {
  color: #aeb8ce;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .topbar__inner {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 0.85rem 0;
  }

  .primary-nav .call-link {
    margin-top: 0.5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 3rem 0 3.5rem;
  }

  .trust-strip .section,
  .grid--3,
  .grid--2,
  .split,
  .footer__inner,
  .coupon {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .section--soft {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 540px) {
  .topbar {
    font-size: 0.86rem;
  }

  .call-link,
  .btn {
    width: 100%;
  }

  .hero__actions,
  .section-actions {
    width: 100%;
  }

  .coupon {
    padding: 1rem;
  }

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

@media print {
  @page {
    margin: 0.35in;
  }

  body.is-printing-coupon > *:not(main),
  body.is-printing-coupon main > *:not(.section--soft),
  body.is-printing-coupon .section--soft > *:not(.coupon) {
    display: none !important;
  }

  body.is-printing-coupon,
  body.is-printing-coupon .section--soft {
    background: #fff !important;
  }

  body.is-printing-coupon .section--soft {
    padding: 0 !important;
  }

  body.is-printing-coupon .coupon {
    border: 2px dashed #334ecc;
    box-shadow: none;
    margin: 0 auto;
    max-width: 980px;
    page-break-inside: avoid;
  }

  body.is-printing-coupon [data-print-coupon],
  body.is-printing-coupon .coupon__price {
    display: none !important;
  }
}
