:root {
  --bg: #edf2f8;
  --bg-soft: #f9fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #071d45;
  --muted: #4a5a74;
  --line: rgba(7, 29, 69, 0.11);
  --brand: #c79a2d;
  --brand-deep: #9c7417;
  --accent: #071f52;
  --accent-soft: #dce5f4;
  --shadow: 0 24px 70px rgba(8, 28, 66, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 154, 45, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(7, 31, 82, 0.12), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 42%, #f6f9fd 100%);
}

img {
  max-width: 100%;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 70%);
}

.contact-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.contact-rail a {
  padding: 8px 12px;
  border: 1px solid rgba(199, 154, 45, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(8, 28, 66, 0.06);
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-logo-crop {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 238px;
  height: 56px;
  overflow: hidden;
  flex: none;
}

.brand-logo {
  width: 238px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  flex: none;
  transform: translateY(-132px);
}

.brand-copy {
  display: none;
}

.brand-copy-compact {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-copy-visible {
  display: inline-flex;
}

.brand-copy-visible strong {
  color: var(--accent);
  font-size: 0.96rem;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-copy-compact span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.nav a {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(199, 154, 45, 0.12);
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  color: #f7fbff !important;
  padding-inline: 14px !important;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font: inherit;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.hero-copy,
.hero-card-panel,
.card,
.step-card,
.compare-card,
.review-card,
.contact-form,
.faq-list details,
.trust-strip article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 253, 0.92)),
    var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(199, 154, 45, 0.18), transparent 68%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.page-hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 5.4vw, 4.4rem);
}

.hero-lead,
.section-heading p,
.card p,
.step-card p,
.compare-card li,
.review-card p,
.contact-copy p,
.faq-list p,
.hero-card-panel p,
.metrics dd,
.trust-strip p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 58ch;
  margin: 16px 0 0;
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

.button-primary {
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #fffdf8;
}

.button-secondary {
  border: 1px solid rgba(7, 31, 82, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
}

.button-full {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hero-points,
.compare-card ul,
.contact-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(7, 31, 82, 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

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

.hero-stats article {
  padding: 14px;
  border: 1px solid rgba(7, 29, 69, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-card {
  display: flex;
}

.hero-card-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(180deg, rgba(10, 32, 81, 0.98), rgba(5, 20, 53, 0.96)),
    var(--accent);
  color: #edf3ef;
  overflow: hidden;
  position: relative;
}

.hero-logo {
  width: min(340px, 100%);
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 12px 14px;
  box-shadow: 0 20px 40px rgba(4, 16, 42, 0.2);
}

.hero-card-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(227, 197, 155, 0.12);
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d9e7df;
}

.hero-card-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-card-panel p,
.metrics dd {
  color: rgba(237, 243, 239, 0.82);
}

.metrics {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.metrics div {
  padding-top: 12px;
  border-top: 1px solid rgba(237, 243, 239, 0.14);
}

.metrics dt {
  font-weight: 800;
}

.metrics dd {
  margin: 6px 0 0;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(237, 243, 239, 0.14);
}

.hero-note-mark {
  flex: none;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(199, 154, 45, 0.12);
}

.hero-note p {
  margin: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.trust-strip article,
.card,
.step-card,
.compare-card,
.review-card,
.contact-form,
.faq-list details {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.trust-strip h3,
.card h3,
.step-card h3,
.compare-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.section {
  padding: 64px 0 0;
}

.page-hero {
  padding: 38px 0 0;
}

.page-hero-copy {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 253, 0.92)),
    var(--bg-soft);
  box-shadow: var(--shadow);
}

.page-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 12ch;
}

.page-hero-copy p:last-child {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.section-grid {
  display: grid;
  gap: 28px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}

.section-heading p {
  margin: 0;
  font-size: 0.95rem;
}

.benefits-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.card,
.step-card,
.review-card,
.compare-card,
.trust-strip article,
.faq-list details,
.contact-form {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card:hover,
.step-card:hover,
.review-card:hover,
.compare-card:hover,
.trust-strip article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(8, 28, 66, 0.16);
  border-color: rgba(199, 154, 45, 0.28);
}

.situations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.situation-pill {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.74);
  font-weight: 700;
  color: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.compare-card li {
  position: relative;
  padding-left: 22px;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateY(-50%);
}

.compare-card-accent {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.95), rgba(251, 239, 224, 0.82));
}

.cta-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(199, 154, 45, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 31, 82, 0.98), rgba(14, 46, 110, 0.94));
  box-shadow: 0 24px 70px rgba(8, 28, 66, 0.16);
}

.cta-banner-card > .button + .button {
  margin-left: 10px;
}

.cta-banner-card h2 {
  margin: 0;
  color: #f7fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.cta-banner-card .eyebrow {
  color: #dcc17d;
}

.review-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  margin: 0 0 18px;
  font-size: 0.95rem;
}

.review-card cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list details summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 14px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 80px;
}

.contact-copy {
  padding: 18px 0;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-points li {
  color: var(--accent);
  font-weight: 700;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-badge {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(199, 154, 45, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 246, 252, 0.88));
}

.contact-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.contact-badge span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-pill {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 31, 82, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form label:nth-of-type(5),
.contact-form label:nth-of-type(6),
.contact-form .button-full,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(94, 74, 56, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(199, 154, 45, 0.22);
  border-color: rgba(199, 154, 45, 0.6);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer strong {
  color: var(--accent);
}

.footer p {
  margin: 4px 0 0;
}

@media (max-width: 1080px) {
  .hero,
  .contact,
  .benefits-grid,
  .reviews-grid,
  .process-grid,
  .trust-strip,
  .compare-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-stats,
  .cta-banner-card {
    grid-template-columns: 1fr;
  }

  .cta-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .contact-rail,
  .contact-quick-links {
    flex-direction: column;
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 10px 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }

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

  .nav a {
    width: 100%;
    text-align: center;
  }

  .hero-copy,
  .hero-card-panel,
  .contact-form,
  .page-hero-copy {
    padding: 24px;
  }

  .brand-logo {
    width: 188px;
    transform: translateY(-104px);
  }

  .brand-logo-crop {
    width: 188px;
    height: 46px;
  }

  .hero-logo {
    width: min(320px, 100%);
  }

  .hero {
    padding-top: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
