/* ============================================================
   Sunshine Registered Agent — Florida LLC landing page
   Direction 01 · "Established & Serious"
   Navy + brass gold · DM Serif Display + DM Sans
   ============================================================ */

:root {
  --navy: #14233a;
  --navy-deep: #0e1a2c;
  --navy-line: #27364b;
  --gold: #a9772a;
  --gold-light: #c9ae78;
  --gold-ink: #876722; /* gold text on light bg */
  --gold-tag: #8a6a22;
  --ivory: #faf7f0;
  --ivory-warm: #f1ede3;
  --paper: #ffffff;
  --line: #e4ddcd;
  --line-card: #e0d9c8;
  --ink: #2c3543; /* darkest body */
  --slate: #4c5663; /* body text */
  --slate-soft: #79828f; /* muted */
  --cream-text: #f2f1eb; /* text on navy */
  --cream-mute: #aab4c2; /* muted text on navy */
  --green: #2e7d5b;
  --green-light: #d4edda;
  --green-onnavy: #7fd3a3;
  --maxw: 1320px;
  --pad-x: 44px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--ivory);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 18px;
}

.ph {
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 10px, rgba(0, 0, 0, 0.02) 10px 20px);
}

a {
  color: inherit;
}

.stars {
  letter-spacing: 1px;
}
.stars-gold {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}
.btn-lg {
  font-size: 19px;
  padding: 18px 34px;
}
.btn-block {
  display: flex;
  width: 100%;
}

.btn-navy {
  background: var(--navy);
  color: var(--cream-text);
}
.btn-navy:hover {
  background: var(--navy-deep);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 28px -10px rgba(20, 35, 58, 0.26);
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -10px rgba(20, 35, 58, 0.34);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream-text);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  padding-left: 8px;
  padding-right: 8px;
}
.btn-ghost:hover {
  color: var(--gold);
}

/* ---------- Utility bar ---------- */
.utility-bar {
  background: var(--navy-deep);
}
.util-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px var(--pad-x);
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--cream-mute);
}
.util-rating {
  display: flex;
  align-items: center;
  gap: 9px;
}
.util-rating .stars {
  color: var(--gold-light);
}
.util-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.util-sep {
  color: #39495f;
}
.util-phone {
  color: var(--cream-text);
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Nav ---------- */
.nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px var(--pad-x);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-seal {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-name {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-tag);
  text-transform: uppercase;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.nav-phone:hover {
  opacity: 0.8;
}
.nav-phone svg {
  flex-shrink: 0;
}
.nav-signin {
  color: var(--navy);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}
.nav-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* ---------- First fold ---------- */
/* Fill the viewport so the "as featured in" logos bar sits flush at the bottom;
   the hero grows to absorb any slack. On short screens it just overflows (scrolls). */
.fold {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(10px, 2vh, 20px);
}
.hero-bg {
  display: none;
}
.hero-glow {
  display: none;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
  padding: clamp(10px, 1.2vh, 20px) var(--pad-x) clamp(10px, 1.2vh, 20px);
  width: 100%;
}

.hero-inner-centered {
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 50px;
  align-items: stretch;
  text-align: left;
}

.hero-inner-collage {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

/* Hero collage */
.hero-collage {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: stretch;
  /* Slightly smaller so press + details rows fit on the first fold. */
  aspect-ratio: 1 / 1.18;
  max-height: clamp(420px, calc(100vh - 260px), 660px);
}
.hero-collage-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
  min-height: 0;
}
.hero-collage-col--offset {
  /* padding-top removed so both columns share the same total height */
}
.hero-collage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 22px 44px -24px rgba(20, 35, 58, 0.3);
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  background: #eef1f5;
}

@media (max-width: 900px) {
  .hero-inner-collage {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-collage {
    aspect-ratio: 1 / 1;
  }
  .hero-collage-col--offset {
    padding-top: 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow-onnavy {
  background: rgba(201, 174, 120, 0.14);
  color: var(--gold-light);
  position: relative;
}
.hero-center h1 {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  line-height: 1.08;
  color: var(--navy);
  margin: 28px 0 0;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.hero-center h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.4;
  color: var(--slate);
  margin: 18px 0 0;
  max-width: 560px;
}
.hero-phone-mobile {
  display: none;
}

.hero-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  width: 100%;
  max-width: 500px;
}
.hero-input {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid var(--line-card);
  border-radius: 8px;
  background: var(--paper);
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.hero-input::placeholder {
  color: var(--slate-soft);
}
.hero-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(169, 119, 42, 0.12);
}
.hero-input-row .btn {
  padding: 16px 28px;
  font-size: 18px;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  font-size: 15px;
  color: var(--slate);
}
.hero-proof .stars-gold {
  font-size: 20px;
}
.hero-proof strong {
  color: var(--navy);
}
.hero-proof-details span {
  display: inline;
}
.hero-proof-details span + span::before {
  content: " · ";
}

/* Trustpilot hero proof */
.hero-proof-trustpilot {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.tp-head {
  margin-bottom: 0;
}
.tp-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.tp-logo-star {
  color: #00b67a;
  font-size: 18px;
  line-height: 1;
}
.tp-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tp-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}
.tp-star-box {
  background: #00b67a;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.tp-star-partial {
  display: inline-block;
  width: 16px;
  overflow: hidden;
}
.tp-meta {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}
.tp-meta strong {
  color: var(--navy);
}

@media (max-width: 640px) {
  .hero-proof-trustpilot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-proof-trustpilot .tp-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Hero trust bar */
.hero-trust-bar {
  background: rgba(232, 228, 220, 0.5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 6px var(--pad-x);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.hero-trust-icon {
  color: var(--gold);
  font-size: 18px;
}

/* Legacy hero copy (for non-centered pages) */
.hero-copy h1 {
  font-family: "DM Serif Display", serif;
  font-size: 60px;
  line-height: 1.04;
  color: var(--navy);
  margin: 22px 0 0;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.hero-copy h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-media {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: 520px;
}
.hero-photo {
  aspect-ratio: 1 / 1;
  max-height: clamp(300px, calc(100vh - 360px), 460px);
  border-radius: 10px;
  border: 1px solid #e0d9c8;
  background-color: #eee9de;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(20, 35, 58, 0.32);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 95% 50%;
}
.chip {
  position: absolute;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 16px 32px -16px rgba(20, 35, 58, 0.32);
}
.chip-name {
  top: 24px;
  left: -30px;
  right: auto;
  border: 1px solid var(--line);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chip-check {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #e7f5ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 15px;
  flex-shrink: 0;
}
.chip-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.chip-sub {
  font-size: 12px;
  color: var(--slate-soft);
}
.chip-filed {
  bottom: 30px;
  right: -22px;
  background: var(--navy);
  color: var(--cream-text);
  padding: 13px 17px;
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.4);
}
.chip-filed-label {
  font-size: 12px;
  color: #c2a36a;
}
.chip-filed-value {
  font-size: 20px;
  font-family: "DM Serif Display", serif;
}

/* ---------- Trust badges ---------- */
.trust-badges {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.badge {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: clamp(14px, 2vh, 24px) 28px;
  border-right: 1px solid var(--line);
}
.badge:last-child {
  border-right: 0;
}
.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 15px;
  flex-shrink: 0;
}
.badge-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.badge-sub {
  font-size: 14px;
  color: var(--slate-soft);
  line-height: 1.45;
  margin-top: 2px;
}

/* ---------- Featured in ---------- */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.featured {
  background: var(--navy);
}
.featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(10px, 1.6vh, 20px) var(--pad-x);
  flex-wrap: wrap;
}
.featured-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c2a36a;
  font-weight: 600;
  white-space: nowrap;
}
.featured-logos {
  overflow: hidden;
  opacity: 0.85;
}
.featured-track {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.featured-track span {
  font-family: "DM Serif Display", serif;
  font-size: 23px;
  color: var(--cream-text);
}
.marquee-clone {
  display: none;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
#next-steps .section-head {
  max-width: 900px;
}
.section-head h2 {
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  line-height: 1.1;
  color: var(--navy);
  margin: 18px 0 12px;
  font-weight: 400;
}
.section-head p {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
}
.section-head strong {
  color: var(--navy);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background: #ece4d4;
  color: var(--gold-ink);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 84px var(--pad-x);
  background: var(--ivory);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.plans-single {
  grid-template-columns: 1fr;
  max-width: 640px;
}
.plans-single .plan-featured {
  transform: none;
}
.pricing-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 1100px;
}
.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-info-box {
  max-width: 900px;
  margin: 28px auto 0;
  background: var(--paper);
  border: 1px solid var(--line-card);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
}
.pricing-info-box p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}
.pricing-info-box a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 600;
}
.pricing-info-box a:hover {
  color: var(--gold);
}
.plan-features .includes-basic {
  background: rgba(169, 119, 42, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--gold-ink);
  gap: 10px;
}
.plan-featured .plan-features .includes-basic {
  background: rgba(201, 174, 120, 0.15);
  color: var(--gold-light);
}
.plan-features .includes-basic .tick {
  color: var(--gold);
}
.plan-featured .plan-features .includes-basic .tick {
  color: var(--gold-light);
}

/* ---------- Provider comparison table ---------- */
.comparison-wrap {
  margin-top: 48px;
}
.comparison-title {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}
.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--line-card);
  background: var(--paper);
}
.provider-comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.provider-comparison thead {
  background: var(--navy);
}
.provider-comparison thead th {
  background: transparent;
  color: var(--cream-text);
  font-weight: 600;
  padding: 10px 6px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  height: auto;
  min-height: 56px;
  vertical-align: middle;
  position: relative;
}
.provider-comparison thead th span {
  display: block;
  line-height: 1.35;
}
.provider-comparison thead th:first-child {
  width: 22%;
  text-align: left;
}
.provider-comparison thead th:first-child span {
  transform: none;
  position: static;
  display: block;
  padding: 14px 16px;
}
.provider-comparison tbody td {
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  word-break: break-word;
}
.provider-comparison tbody tr:last-child td {
  border-bottom: 0;
}
.provider-comparison tbody td:first-child {
  text-align: left;
  padding: 13px 16px;
  border-right: 1px solid var(--line-card);
  font-size: 14px;
}
.provider-comparison .highlight td {
  background: rgba(169, 119, 42, 0.06);
}
.provider-comparison .highlight td:first-child {
  background: rgba(169, 119, 42, 0.08);
  border-left: 3px solid var(--gold);
}
.provider-comparison .tick {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}
.provider-comparison .cross {
  color: #c45b5b;
  font-weight: 700;
  font-size: 15px;
}
.provider-comparison tbody td:nth-child(10) {
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
}
.provider-comparison .highlight td:nth-child(10) {
  color: var(--gold-ink);
}

@media (max-width: 768px) {
  .comparison-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .provider-comparison {
    font-size: 11px;
  }
  .provider-comparison thead th {
    height: auto;
    min-height: 48px;
    font-size: 11px;
  }
  .provider-comparison tbody td {
    padding: 8px 4px;
    font-size: 11px;
  }
  .provider-comparison tbody td:first-child {
    padding: 8px 8px;
    font-size: 11px;
  }
  .provider-comparison thead th:first-child span {
    padding: 10px 8px;
    font-size: 11px;
  }
  .provider-comparison tbody td:nth-child(10) {
    font-size: 10px;
  }
  .provider-comparison .tick,
  .provider-comparison .cross {
    font-size: 13px;
  }
}

.plan {
  background: var(--paper);
  border: 1px solid var(--line-card);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.plan-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-ink);
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.plan-subtitle {
  font-size: 15px;
  color: var(--slate-soft);
  margin-top: 4px;
  line-height: 1.4;
  min-height: 2.8em;
}
.plan-featured .plan-subtitle {
  color: var(--cream-text);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin: 10px 0 4px;
}
.plan-price .currency {
  font-family: "DM Serif Display", serif;
  font-size: 50px;
  color: var(--navy);
  line-height: 1;
}
.plan-price .amount {
  font-family: "DM Serif Display", serif;
  font-size: 50px;
  color: var(--navy);
  line-height: 1;
  margin-left: 2px;
}
.plan-price .suffix {
  font-size: 17px;
  color: var(--gold);
  margin-left: 10px;
  font-weight: 500;
}
.plan-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 4px;
}
.plan-top-row .plan-price {
  margin: 0;
}
.plan-save {
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-save .was {
  font-size: 18px;
  color: var(--slate-soft);
  text-decoration: line-through;
}
.plan-save .save-tag {
  background: #e7f5ec;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.02em;
}
.plan-desc {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 22px;
}
.plan-proc {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 15px;
  color: var(--slate-soft);
  font-weight: 500;
}
.plan-proc .proc-ico {
  color: var(--gold);
}
.plan-rule {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 18px 0;
  flex-shrink: 0;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  align-items: center;
  flex-wrap: nowrap;
}
.plan-features .tick {
  color: var(--green);
}
.feature-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--slate-soft);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-style: italic;
  font-family: "DM Serif Display", serif;
  cursor: help;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
}
.info-icon:hover,
.info-icon:focus {
  background: var(--gold);
}
.info-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cream-text);
  font-size: 12.5px;
  font-style: normal;
  font-family: "DM Sans", sans-serif;
  line-height: 1.45;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
  width: max-content;
  max-width: 260px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease;
  z-index: 10;
  box-shadow: 0 6px 18px -4px rgba(20, 35, 58, 0.35);
}
.info-icon::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease;
  z-index: 10;
}
.info-icon:hover::after,
.info-icon:hover::before,
.info-icon:focus::after,
.info-icon:focus::before {
  opacity: 1;
  visibility: visible;
}

/* Featured plan info-icon colors */
.plan-featured .info-icon {
  background: rgba(170, 180, 194, 0.35);
  color: var(--cream-text);
}
.plan-featured .info-icon:hover,
.plan-featured .info-icon:focus {
  background: var(--gold);
  color: var(--navy);
}

.plan-featured {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
  box-shadow: 0 30px 60px -26px rgba(20, 35, 58, 0.5);
}
.plan-featured .plan-name {
  color: var(--gold);
}
.plan-featured .plan-price .currency {
  color: var(--cream-text);
}
.plan-featured .plan-price .amount {
  color: var(--cream-text);
}
.plan-featured .plan-price .suffix {
  color: var(--gold-light);
}
.plan-featured .plan-desc {
  color: var(--cream-mute);
}
.plan-featured .plan-rule {
  background: var(--navy-line);
}
.plan-featured .plan-features li {
  color: #e7eaf0;
}
.plan-featured .plan-features .tick {
  color: var(--green-onnavy);
}
.plan-featured .plan-save .was {
  color: var(--cream-mute);
}
.plan-featured .plan-save .save-tag {
  background: rgba(127, 211, 163, 0.16);
  color: var(--green-onnavy);
}
.plan-featured .plan-proc {
  color: var(--cream-text);
}
.plan-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ---------- Features ---------- */
.features {
  padding: 92px var(--pad-x);
  background: var(--ivory-warm);
}
.features .section-head {
  max-width: 840px;
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature {
  text-align: center;
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}
.feature h3 {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.25;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- Reviews ---------- */
.reviews {
  padding: 84px var(--pad-x);
  background: var(--ivory);
}
.reviews .section-head {
  max-width: 600px;
  margin-bottom: 50px;
}
.reviews-stars {
  font-size: 20px;
  letter-spacing: 3px;
}
/* Reviews carousel */
.review-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 0 52px;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-track .review {
  flex: 0 0 calc((100% - 48px) / 3);
}
.review {
  background: var(--paper);
  border: 1px solid var(--line-card);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee9de;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Some source images (floater cutouts) ship with white padding baked in.
   Zoom slightly so the card never shows blank space around the subject. */
.review-photo img[src*="floater-"],
.review-photo img[src*="greenline-lawn"] {
  transform: scale(1.15);
  transform-origin: center center;
}
.review-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
}
.review-biz {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
}
.review-meta {
  font-size: 15px;
  color: var(--slate-soft);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.review-owner {
  font-size: 14px;
  color: var(--slate-soft);
  margin-top: 6px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 26px);
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-card);
  background: #fff;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(20, 35, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.carousel-arrow:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}
.carousel-prev {
  left: -18px;
}
.carousel-next {
  right: -18px;
}
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--line-card);
  transition:
    background 0.2s ease,
    width 0.2s ease;
}
.carousel-dots button.is-active {
  background: var(--gold);
  width: 22px;
  border-radius: 5px;
}
.review-stars {
  font-size: 17px;
  margin: 14px 0 10px;
}
.review blockquote {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Info Sections (What is an LLC / Why form an LLC) ---------- */
.info-section {
  padding: 92px var(--pad-x);
}
.info-left {
  background: var(--ivory);
}
.info-right {
  background: var(--ivory-warm);
}
.info-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-left .info-inner {
  justify-items: start;
}
.info-right .info-inner {
  justify-items: end;
}
.info-right .info-text {
  grid-column: 2;
}
.info-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}
.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
#why-llc .info-image {
  justify-self: start;
  max-width: none;
  aspect-ratio: 3 / 2;
}
#what-is-llc .info-image {
  aspect-ratio: 3 / 2;
}
.info-text h2 {
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.info-text p {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 14px;
}
.info-text p:last-child {
  margin-bottom: 0;
}
.info-lead {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 28px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.benefit h3 {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.25;
}
.benefit p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 92px var(--pad-x);
  background: var(--ivory);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-card);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 400;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-item[open] .faq-q {
  padding-bottom: 12px;
}
.faq-q::after {
  content: "+";
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-q::after {
  content: "−";
}
.faq-a {
  padding: 0 28px 24px;
}
.faq-a p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
}
.faq-a ol,
.faq-a ul {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
}
.faq-a li {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.6;
  padding-left: 0;
  margin-bottom: 8px;
}
.faq-a .step-list {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-a .step-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
.faq-a .step-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  margin-top: 2px;
}
.faq-a .check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-a .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.faq-a .check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
  margin-top: 1px;
}
.faq-a .type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 14px 0;
}
.faq-a .type-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.5;
}
.faq-a .type-card strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.faq-a .highlight-box {
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
  font-size: 17px;
  line-height: 1.6;
}
.faq-a .faq-subhead {
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  margin: 14px 0 6px;
}
.faq-a > *:last-child {
  margin-bottom: 0;
}

/* ---------- Dark sections (alternating) ---------- */
.section-dark {
  background: #e2dccf;
  color: var(--slate);
}
.section-dark .section-head h2 {
  color: var(--navy);
}
.section-dark .section-head p {
  color: var(--slate);
}
.section-dark .pill {
  background: #ece4d4;
  color: var(--gold-ink);
}

/* Info sections on dark */
.section-dark.info-section .info-text h2 {
  color: var(--navy);
}
.section-dark.info-section .info-text p {
  color: var(--slate);
}
.section-dark.info-section .info-lead {
  color: var(--ink);
}
.section-dark.info-section .benefit h3 {
  color: var(--navy);
}
.section-dark.info-section .benefit p {
  color: var(--slate);
}

/* Reviews carousel dots on dark */
.section-dark .carousel-dots button {
  background: #c8c0af;
}
.section-dark .carousel-dots button.is-active {
  background: var(--gold);
}

/* ---------- Closing CTA ---------- */
.closing-cta {
  padding: 92px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}
.closing-glow {
  position: absolute;
  top: -90px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 174, 120, 0.16), rgba(201, 174, 120, 0) 70%);
}
.closing-cta h2 {
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  line-height: 1.08;
  color: var(--cream-text);
  margin: 18px 0 16px;
  position: relative;
  font-weight: 400;
}
.closing-cta p {
  font-size: 20px;
  color: var(--cream-mute);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative;
}
.closing-cta .btn {
  position: relative;
  padding: 19px 42px;
  font-size: 20px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 44px 90px 44px var(--pad-x);
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-seal {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-name {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--cream-text);
}
.footer-legal {
  font-size: 14px;
  color: #8893a3;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 981px) {
  .utility-bar {
    display: none;
  }
}
@media (max-width: 980px) {
  .util-rating {
    display: none;
  }
  :root {
    --pad-x: 28px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .hero-inner-centered {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-floater {
    display: none;
  }
  .hero-center h1 {
    font-size: 34px;
  }
  .hero-input-row {
    max-width: 400px;
  }
  .hero-copy h1 {
    font-size: 48px;
  }
  .hero-media {
    max-width: 440px;
  }
  .hero-trust-inner {
    gap: 24px;
  }
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge:nth-child(2) {
    border-right: 0;
  }
  .badge:nth-child(1),
  .badge:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .plans,
  .pricing-layout,
  .features-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .info-inner {
    grid-template-columns: 1fr;
    justify-items: start !important;
  }
  .info-text {
    max-width: 100%;
  }
  .info-right .info-text {
    grid-column: auto;
  }
  .info-left .info-image {
    order: -1;
  }
  .plans .plan:nth-child(1) {
    order: 3;
  }
  .plans .plan:nth-child(2) {
    order: 1;
  }
  .plans .plan:nth-child(3) {
    order: 2;
  }
  .pricing-layout .plan-featured {
    order: 1;
  }
  .pricing-layout .plan:not(.plan-featured) {
    order: 2;
  }
  .plan-featured {
    transform: none;
  }
  .carousel-track .review {
    flex: 0 0 calc((100% - 24px) / 2);
  } /* 2 visible */
  .carousel-prev {
    left: 4px;
  }
  .carousel-next {
    right: 4px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: none;
  }
  .nav-cta-mobile {
    display: none;
  }
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 0;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    order: 3;
    width: 100%;
    padding-top: 6px;
  }
  .nav.open .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-top: 1px solid var(--line);
  }
  .nav.open .nav-actions {
    display: flex;
    order: 4;
    width: 100%;
    gap: 14px;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
  }
  .nav.open .nav-actions .btn-navy {
    flex: 1;
  }
  .hero-phone-mobile {
    display: block;
    margin-top: 18px;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
  }
  .hero-phone-mobile a {
    color: var(--navy);
    text-decoration: none;
  }
  .hero-center h1 {
    margin-top: 14px;
  }
}

@media (min-width: 601px) {
  .featured {
    justify-content: center;
  }
  .featured-track {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  :root {
    --pad-x: 20px;
  }
  .util-inner {
    justify-content: center;
    text-align: center;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .hero-sub {
    font-size: 17px;
  }
  .section-head h2 {
    font-size: 34px;
  }
  .closing-cta h2 {
    font-size: 34px;
  }
  .trust-badges {
    grid-template-columns: 1fr;
  }
  .badge {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .badge:last-child {
    border-bottom: 0;
  }
  .chip-name {
    left: 0;
  }
  .chip-filed {
    right: 0;
  }
  .featured {
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .featured-label {
    text-align: center;
  }
  .featured-logos {
    flex: none;
    width: 100%;
    overflow: hidden;
  }
  .featured-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    width: max-content;
    animation: marquee 22s linear infinite;
  }
  .featured-track span {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 22px;
    font-size: 20px;
  }
  .marquee-clone {
    display: block;
  }
  .carousel-track .review {
    flex: 0 0 100%;
  } /* 1 visible */
  .hero-proof-details {
    display: flex;
    flex-direction: column;
  }
  .hero-proof-details span + span::before {
    content: none;
  }
  /* Keep feature tooltips inside the card so they don't cause horizontal scroll */
  .info-icon::after {
    left: auto;
    right: 0;
    transform: none;
  }
  .info-icon::before {
    left: auto;
    right: 3px;
    transform: none;
  }
  /* FAQ lists: keep bold term + description on one continuous line of text */
  .faq-a {
    padding: 0 20px 20px;
  }
  .faq-a .check-list li,
  .faq-a .step-list li {
    display: block;
    position: relative;
    padding-left: 38px;
  }
  .faq-a .check-list li::before,
  .faq-a .step-list li::before {
    position: absolute;
    left: 0;
    top: 0;
  }
  .faq-a .step-list li::before {
    top: 2px;
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 12px;
  }
  .faq-a .step-list {
    gap: 14px;
  }
  .faq-a .step-list li {
    line-height: 1.55;
  }
  .plan-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}

/* Legal pages */
.legal-article {
  max-width: 760px;
  margin: 24px auto;
  padding: 40px;
  line-height: 1.65;
}
.legal-article h1,
.legal-article h2 {
  font-family: "DM Serif Display", serif;
  margin-top: 1.6em;
}
.legal-article h1 {
  font-size: 2rem;
  margin-top: 0;
}
.legal-article h2 {
  font-size: 1.25rem;
}
.legal-article p,
.legal-article li {
  color: #2c3543;
}
.legal-article ul {
  padding-left: 1.25rem;
}
.footer-legal a {
  color: inherit;
  text-decoration: underline;
}

/* Hero CTA inline note */
.hero-cta-note {
  font-size: 14px;
  color: var(--slate-soft);
  font-weight: 500;
}

/* All-Inclusive plan renewal line */
.plan-renewal {
  font-size: 13px;
  color: var(--slate-soft);
  margin: 2px 0 8px;
  font-weight: 500;
}
.plan-featured .plan-renewal {
  color: var(--cream-text);
}

/* Step-by-step section */
.steps-section {
  padding: 92px var(--pad-x);
}
.steps-grid {
  list-style: none;
  padding: 0;
  margin: 64px auto 0;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  display: none;
}
.step-card {
  background: var(--paper);
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: 44px 22px 26px;
  position: relative;
  margin-top: 24px;
  box-shadow:
    0 1px 2px rgba(20, 35, 58, 0.04),
    0 8px 24px -16px rgba(20, 35, 58, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(20, 35, 58, 0.05),
    0 18px 36px -18px rgba(20, 35, 58, 0.28);
}
.step-card .step-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  margin-bottom: 0;
  box-shadow:
    0 0 0 6px var(--ivory),
    0 8px 18px -8px rgba(20, 35, 58, 0.45);
  z-index: 1;
}
.section-dark .step-card .step-num {
  box-shadow:
    0 0 0 6px #e2dccf,
    0 8px 18px -8px rgba(20, 35, 58, 0.45);
}
.step-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 + p {
  margin-top: 10px;
}
.step-card p {
  font-size: 17px;
  color: var(--slate);
  margin: 0;
  line-height: 1.55;
  text-align: center;
}

.steps-cta {
  text-align: center;
  margin: 48px auto 0;
  max-width: 700px;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.4;
}
.steps-cta strong {
  color: var(--gold);
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 36px;
  }
  .steps-grid::before {
    display: none;
  }
}

/* Next-steps timeline */
.next-steps-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.next-steps-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 18px 0;
  position: relative;
}
.timeline-item:first-child {
  padding-top: 0;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--ivory);
}
.timeline-icon svg {
  width: 26px;
  height: 26px;
}
.timeline-content {
  flex: 1;
  padding-top: 4px;
}
.timeline-content h3 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.25;
}
.timeline-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Next-steps CTA */
.next-step-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--green-light);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  line-height: 1.4;
}

/* Next-steps card grid (with image backgrounds) */
.next-steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.next-step-card {
  background: var(--paper);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 18px rgba(20, 35, 58, 0.06),
    0 1px 3px rgba(20, 35, 58, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.next-step-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(20, 35, 58, 0.1),
    0 2px 6px rgba(20, 35, 58, 0.05);
}
.next-step-media {
  position: relative;
  height: 170px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.next-step-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 35, 58, 0.05) 0%, rgba(20, 35, 58, 0.28) 100%);
}
.next-step-icon {
  position: absolute;
  left: 18px;
  bottom: -22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 16px rgba(20, 35, 58, 0.25),
    0 0 0 4px var(--paper);
  z-index: 2;
}
.next-step-icon svg {
  width: 24px;
  height: 24px;
}
.next-step-body {
  padding: 36px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.next-step-body p {
  flex: 1;
}
.next-step-body h3 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.25;
}
.next-step-body p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .next-steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .next-step-media {
    height: 180px;
  }
}
