:root {
  --ink: #15283f;
  --muted: #607083;
  --line: #dbe7ee;
  --paper: #ffffff;
  --white: #ffffff;
  --blue: #2377bf;
  --blue-dark: #164e83;
  --teal: #18a77e;
  --teal-dark: #0f7458;
  --mist: #f3faf9;
  --sky: #eef7ff;
  --cream: #fbfefd;
  --shadow: 0 24px 70px rgba(21, 40, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.hero {
  min-height: 680px;
  padding: 24px clamp(18px, 4vw, 56px) 72px;
  background: var(--white);
  border-bottom: 1px solid rgba(219, 231, 238, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logoBrand img {
  display: block;
  width: min(300px, 58vw);
  height: auto;
  background: transparent;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.navButton {
  color: var(--white);
  background: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  max-width: 1180px;
  margin: 48px auto 0;
}


.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.85rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 16px;
}

.primaryButton,
.secondaryButton,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.primaryButton,
button {
  color: var(--white);
  background: var(--blue);
  border: 0;
  box-shadow: 0 10px 25px rgba(35, 119, 191, 0.24);
}

.primaryButton:hover,
button:hover {
  background: var(--blue-dark);
}

.secondaryButton {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.microcopy,
.formHint,
.note {
  color: var(--muted);
  font-size: 0.94rem;
}

.sampleCard {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(219, 231, 238, 0.95);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mediaCard h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.cardHeader {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.cardHeader span {
  width: 11px;
  height: 11px;
  background: var(--line);
  border-radius: 99px;
}

.cardHeader span:nth-child(1) { background: #2d89d0; }
.cardHeader span:nth-child(2) { background: #18a77e; }
.cardHeader span:nth-child(3) { background: #b8d4e7; }

.tableMock {
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.tableRow {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 0.75fr 0.85fr;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.tableRow:last-child {
  border-bottom: 0;
}

.tableHead {
  color: var(--ink);
  background: linear-gradient(90deg, var(--sky), var(--mist));
  font-weight: 850;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 56px);
}

.section.soft {
  max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
  background: var(--sky);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.soft > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.sectionIntro {
  max-width: 790px;
  margin-bottom: 34px;
}

.sectionIntro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.sectionIntro.narrow {
  max-width: 850px;
  text-align: center;
}

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

.fourSteps {
  grid-template-columns: repeat(4, 1fr);
}

.steps article,
.priceCard,
.faq article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.processSection .steps article {
  box-shadow: 0 14px 36px rgba(21, 40, 63, 0.06);
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.steps p,
.priceCard p,
.faq p,
.requestCopy p,
.sampleCard p,
.trustGrid p {
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chips span {
  max-width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
  text-align: center;
}

.price {
  margin: 12px 0;
  color: var(--blue);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.priceCard {
  position: relative;
}

.priceCard.featured {
  border-color: rgba(35, 119, 191, 0.35);
  box-shadow: 0 18px 42px rgba(35, 119, 191, 0.11);
}

.pill {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 10px;
  color: var(--teal-dark) !important;
  background: var(--mist);
  border: 1px solid rgba(24, 167, 126, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.priceCard ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.priceCard li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
}

.priceCard li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.trustSection {
  max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, var(--mist), var(--white));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trustGrid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.requestSection {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.processMini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.processMini span {
  position: relative;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

.formEmbed {
  overflow: hidden;
  min-height: 560px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

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

.footerBrand img {
  display: block;
  width: 170px;
  height: auto;
}

footer p {
  margin: 0;
}

.thankYouPage {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--white);
}

.thankYouCard {
  max-width: 680px;
  padding: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.thankYouCard h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.thankYouCard p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

@media (max-width: 1100px) {
  .fourSteps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .heroGrid,
  .requestSection,
  .trustGrid {
    grid-template-columns: 1fr;
  }

  .steps,
  .pricingGrid,
  .faqGrid,
  .fourSteps {
    grid-template-columns: 1fr;
  }

  .navLinks a:not(.navButton) {
    display: none;
  }

  .logoBrand img {
    width: min(240px, 56vw);
  }

}

@media (max-width: 560px) {
  .hero {
    min-height: unset;
    padding-bottom: 56px;
  }

  .nav {
    gap: 12px;
  }

  .logoBrand img {
    width: min(205px, 54vw);
  }

  .heroGrid {
    margin-top: 34px;
  }

  .navButton {
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  .chips {
    gap: 10px;
  }

  .chips span {
    padding: 11px 14px;
    line-height: 1.25;
  }

  .tableRow {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
  }

  .tableRow span:nth-child(4) {
    display: none;
  }

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

/* V4 additions */
.explainSection {
  padding-top: 82px;
  padding-bottom: 72px;
}

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

.useGrid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(21, 40, 63, 0.05);
}

.iconCircle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--blue);
  background: linear-gradient(135deg, var(--sky), var(--mist));
  border: 1px solid var(--line);
  border-radius: 16px;
}

.iconCircle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.useGrid p,
.contactCard p {
  color: var(--muted);
}

.requestSection {
  display: block;
}

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

.requestCopy .processMini {
  justify-content: center;
}

.formEmbed {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 22px);
}

.contactSection {
  max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, var(--sky), var(--white));
  border-top: 1px solid var(--line);
}

.contactCard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(21, 40, 63, 0.08);
}

.contactCard h2 {
  margin-bottom: 12px;
}

.contactCard p:last-child {
  margin-bottom: 0;
}

.contactCard .primaryButton {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .useGrid,
  .contactCard {
    grid-template-columns: 1fr;
  }

  .requestCopy {
    text-align: left;
  }

  .requestCopy .processMini {
    justify-content: flex-start;
  }

  .contactCard .primaryButton {
    width: 100%;
  }
}

/* V6 refinements */
.pill.neutral {
  color: var(--blue-dark) !important;
  background: var(--sky);
  border-color: rgba(35, 119, 191, 0.24);
}

.contactActions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.contactActions .primaryButton,
.contactActions .secondaryButton {
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .contactActions {
    justify-items: stretch;
  }
}


/* V7 pricing clarity */
.pricingNote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1000px;
  margin: -10px 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(24, 167, 126, 0.24);
  background: var(--mist);
  border-radius: 22px;
  color: var(--blue-dark);
}

.pricingNote strong {
  font-size: 1rem;
}

.pricingNote span {
  color: var(--muted);
  font-weight: 750;
}

.priceCard.altFeature {
  border-color: rgba(24, 167, 126, 0.35);
  box-shadow: 0 18px 42px rgba(24, 167, 126, 0.10);
}

.includedPanel {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 26px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(21, 40, 63, 0.06);
}

.includedPanel h3 {
  margin: 0;
  font-size: 1.35rem;
}

.includeGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.includeGrid li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
  font-weight: 650;
}

.includeGrid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

@media (max-width: 900px) {
  .pricingNote,
  .includedPanel {
    display: grid;
  }

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

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