:root {
  --bg: #f6f2ec;
  --ink: #1a1a1a;
  --wine: #4b0e0e;
  --green: #0c533d;
  --green-dark: #073b2b;
  --mint: #cae6d5;
  --gold: #ffd563;
  --gold-dark: #e5b520;
  --muted: #5e5751;
  --line: rgba(75, 14, 14, 0.14);
  --shadow: 0 16px 42px rgba(36, 22, 20, 0.14);
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Ramillas Trial";
  src: url("/assets/fonts/tt-ramillas/TT_Ramillas_Trial_Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Ramillas Trial";
  src: url("/assets/fonts/tt-ramillas/TT_Ramillas_Trial_Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Ramillas Trial";
  src: url("/assets/fonts/tt-ramillas/TT_Ramillas_Trial_Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TT Ramillas Trial";
  src: url("/assets/fonts/tt-ramillas/TT_Ramillas_Trial_Bold_Italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Open Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

html.passcode-locked body {
  overflow: hidden;
}

html.passcode-locked .page-shell {
  visibility: hidden;
  pointer-events: none;
}

a {
  color: inherit;
}

.passcode-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(246, 242, 236, 0.94), rgba(229, 197, 172, 0.88)),
    radial-gradient(circle at 72% 20%, rgba(255, 213, 99, 0.28), transparent 32%),
    var(--bg);
}

.passcode-card {
  width: min(100%, 440px);
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(75, 14, 14, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.passcode-eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.passcode-card h1 {
  margin: 0 0 10px;
  color: var(--wine);
  font-family: "TT Ramillas Trial", Georgia, serif;
  font-size: clamp(32px, 8vw, 48px);
  line-height: 1;
}

.passcode-copy {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.passcode-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.passcode-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(75, 14, 14, 0.22);
  border-radius: 8px;
  font: inherit;
}

.passcode-card input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(12, 83, 61, 0.18);
}

.passcode-card input[aria-invalid="true"] {
  border-color: var(--wine);
}

.passcode-error {
  min-height: 20px;
  margin: 8px 0 14px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

.passcode-card button {
  width: 100%;
  min-height: 48px;
  color: white;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.passcode-card button:hover {
  background: var(--green-dark);
}

.page-shell {
  min-height: 100vh;
  background: var(--bg);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(246, 242, 236, 0.94);
  border-bottom: 1px solid rgba(75, 14, 14, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.top-nav nav,
.trust-banner,
.hero-proof,
.logo-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: #3f3e2c;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--bg);
  background: var(--green);
  border-radius: 999px;
  font-family: Georgia, serif;
}

.top-nav nav {
  gap: 28px;
}

.top-nav nav a {
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.nav-cta,
.solid-button,
.outline-button,
.yellow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-size: 14px;
}

.nav-cta:hover,
.solid-button:hover {
  background: var(--green-dark);
}

.trust-banner {
  justify-content: center;
  gap: 22px;
  min-height: 44px;
  padding: 10px 18px;
  color: rgba(75, 14, 14, 0.82);
  background: #f6f2ec;
  font-size: 13px;
  font-weight: 700;
}

.trust-banner span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
  vertical-align: 1px;
}

.hero {
  position: relative;
  top: -85px;
  display: flex;
  align-items: center;
  min-height: 43vw;
  padding: clamp(96px, 9vw, 128px) 0 clamp(56px, 6vw, 84px);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 10;
  margin-left: 0;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(to right, rgba(213, 169, 133, 1), rgba(180, 172, 163, 0.4));
}

.hero-plan-online-hotspot {
  position: absolute;
  top: 13.2%;
  left: 52.7%;
  z-index: 35;
  display: block;
  width: clamp(190px, 13.1vw, 460px);
  height: clamp(44px, 3vw, 104px);
  border-radius: 999px;
  text-decoration: none;
}

.hero-plan-online-hotspot:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.hero-inner {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(24px, 8vw, 160px);
}

.hero-copy {
  max-width: 620px;
  margin-left: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "TT Ramillas Trial", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--wine);
  font-size: clamp(38px, 5.7vw, 72px);
  font-weight: 650;
  line-height: 1.1;
}

h1 em {
  display: inline;
  font-style: italic;
}

.hero-copy p {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--wine);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.25;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 590px;
}

.intent-card {
  position: relative;
  display: block;
  min-height: 150px;
  padding: 22px 48px 22px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(75, 14, 14, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(36, 22, 20, 0.12);
  text-align: left;
  text-decoration: none;
}

.intent-card:hover {
  border-color: rgba(75, 14, 14, 0.3);
  box-shadow: 0 12px 28px rgba(36, 22, 20, 0.16);
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  margin-bottom: 14px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.badge.now {
  color: white;
  background: #1f3d2b;
}

.badge.ahead {
  color: var(--wine);
  background: rgba(75, 14, 14, 0.1);
}

.intent-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "TT Ramillas Trial", Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
}

.intent-card small {
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.3;
}

.intent-card .arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--wine);
  opacity: 0.65;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.logo-strip {
  position: relative;
  z-index: 30;
  margin-top: -92px;
  overflow: visible;
}

.logo-row {
  justify-content: space-between;
  gap: clamp(12px, 3vw, 26px);
  width: 100%;
  padding: 0 clamp(12px, 4vw, 48px) 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.logo-row::-webkit-scrollbar {
  display: none;
}

.logo-row img {
  flex: 0 0 auto;
  width: clamp(66px, 8vw, 112px);
  max-height: 110px;
  object-fit: contain;
}

.dark-card-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(430px, 48vw, 700px);
  margin: 28px clamp(4px, 1.3vw, 16px) 40px;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 6vw, 96px);
  overflow: hidden;
  border-radius: clamp(18px, 3vw, 40px);
}

.dark-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dark-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-card-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.dark-card-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

.dark-card-copy p {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--mint);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.45;
}

.yellow-button {
  gap: 10px;
  min-height: 58px;
  padding: 0 clamp(22px, 5vw, 76px);
  color: #1a1a1a;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.yellow-button:hover {
  background: var(--gold-dark);
}

.support-section,
.meet-doulas-section,
.steps-section,
.faq-section {
  padding: clamp(48px, 7vw, 90px) clamp(16px, 5vw, 64px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.faq-section h2 {
  margin-bottom: 14px;
  color: #111827;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
}

.section-heading p {
  color: #5f646d;
  font-size: 17px;
  line-height: 1.55;
}

.meet-doulas-section {
  background: var(--bg);
}

.doula-heading {
  max-width: 820px;
}

.eyebrow {
  margin-bottom: 14px;
  color: rgba(12, 83, 61, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.doula-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(22px, 4vw, 40px);
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.doula-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.doula-bullets span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--green);
  background: var(--mint);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.doula-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  max-width: 1280px;
  margin: 0 auto;
}

.doula-card,
.doula-directory-card {
  overflow: hidden;
  border-radius: 16px;
}

.doula-card {
  background: rgba(235, 228, 219, 0.4);
  box-shadow: 0 4px 14px rgba(36, 22, 20, 0.08);
}

.doula-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.doula-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doula-photo span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(36, 22, 20, 0.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.doula-card-copy {
  padding: 14px 16px 16px;
}

.doula-card-copy h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
}

.doula-card-copy p {
  margin-bottom: 0;
  color: rgba(26, 26, 26, 0.72);
  font-size: 13px;
}

.doula-directory-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 24px;
  color: white;
  background: var(--green);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.doula-directory-card:hover {
  background: var(--green-dark);
}

.doula-directory-card strong {
  font-family: "TT Ramillas Trial", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
}

.doula-directory-card span {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.doula-directory-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-style: normal;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 28px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: white;
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(17, 24, 39, 0.06);
}

.price-card:hover {
  border-color: var(--green);
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 16px 42px rgba(12, 83, 61, 0.18);
}

.featured-bar {
  position: absolute;
  top: -32px;
  left: 12px;
  right: 12px;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px 32px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--green);
  border-radius: 16px 16px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured-bar span:first-child {
  color: var(--gold);
}

.pill {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pill.green {
  color: var(--green);
  background: #e2efe2;
}

.pill.gold {
  color: #7a5a12;
  background: #f4e6c2;
}

.price-card h3 {
  margin-bottom: 14px;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #111827;
  font-family: "TT Ramillas Trial", Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.price span {
  margin-top: 5px;
  font-size: 0.55em;
}

.price-card p {
  color: #5f646d;
  font-size: 14px;
  line-height: 1.55;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 18px 0 22px;
  margin: 16px 0 0;
  border-top: 1px solid #e5e7eb;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
}

.price-card li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.outline-button,
.solid-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: 999px;
  font-size: 14px;
}

.outline-button {
  color: var(--green);
  border: 1px solid var(--green);
  background: white;
}

.outline-button:hover {
  color: white;
  background: var(--green);
}

.solid-button {
  color: white;
  background: var(--green);
}

.steps-section {
  background: #fffaf5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.steps-grid article {
  padding: 28px;
  background: white;
  border: 1px solid rgba(75, 14, 14, 0.1);
  border-radius: 16px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: white;
  background: var(--wine);
  border-radius: 999px;
  font-weight: 800;
}

.steps-grid p,
.faq-section p {
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  place-items: center;
  padding: clamp(64px, 8vw, 100px) clamp(16px, 5vw, 64px);
  background: var(--green);
  text-align: center;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  max-width: 640px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.5;
}

.funnel-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(248, 242, 234, 0.94), rgba(255, 255, 255, 0.98)),
    var(--paper);
}

.funnel-hero {
  padding: clamp(76px, 9vw, 120px) clamp(16px, 5vw, 64px) clamp(56px, 7vw, 90px);
  background:
    linear-gradient(135deg, rgba(75, 14, 14, 0.9), rgba(31, 61, 43, 0.86)),
    var(--green);
  color: white;
  text-align: center;
}

.funnel-hero .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
}

.funnel-hero h1 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  color: white;
  font-size: clamp(42px, 5vw, 72px);
}

.funnel-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
}

.funnel-panel {
  width: min(1080px, calc(100% - 32px));
  margin: clamp(36px, 5vw, 64px) auto;
  padding: clamp(28px, 4vw, 46px);
  background: white;
  border: 1px solid rgba(75, 14, 14, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(36, 22, 20, 0.08);
}

.funnel-panel h2 {
  margin-bottom: 22px;
  color: var(--wine);
  font-size: clamp(28px, 3vw, 44px);
}

.funnel-panel > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.funnel-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.funnel-options .intent-card {
  min-height: 190px;
  background: #fffaf3;
}

.faq-section {
  max-width: 980px;
  margin: 0 auto;
}

.faq-section details {
  padding: 22px 0;
  border-bottom: 1px solid rgba(75, 14, 14, 0.14);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(16px, 5vw, 64px);
  color: #5f646d;
  border-top: 1px solid rgba(75, 14, 14, 0.1);
}

footer a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hero {
    top: 0;
    min-height: auto;
    padding-top: 64px;
  }

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

  .hero-image {
    opacity: 0.28;
    margin-left: 0;
  }

  .hero-plan-online-hotspot {
    display: none;
  }

  .logo-strip {
    margin-top: 0;
  }

  .pricing-grid,
  .steps-grid,
  .funnel-options {
    grid-template-columns: 1fr;
  }

  .doula-track {
    display: flex;
    gap: 18px;
    margin-right: calc(clamp(16px, 5vw, 64px) * -1);
    margin-left: calc(clamp(16px, 5vw, 64px) * -1);
    padding: 0 clamp(16px, 5vw, 64px) 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .doula-track::-webkit-scrollbar {
    display: none;
  }

  .doula-card,
  .doula-directory-card {
    flex: 0 0 min(280px, 72vw);
    scroll-snap-align: start;
  }

  .featured-bar {
    position: static;
    z-index: auto;
    margin: -26px -26px 18px;
    padding: 12px 16px;
    border-radius: 14px 14px 0 0;
  }
}

@media (max-width: 720px) {
  .top-nav {
    min-height: 64px;
  }

  .top-nav nav {
    display: none;
  }

  .trust-banner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero {
    padding-bottom: 40px;
  }

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

  .intent-card {
    min-height: 128px;
  }

  .hero-proof {
    color: rgba(75, 14, 14, 0.82);
  }

  .dark-card-section {
    margin-right: 4px;
    margin-left: 4px;
  }

  .dark-card-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .yellow-button {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .logo-row img {
    width: 58px;
  }

  footer {
    flex-direction: column;
  }
}
