:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --ink: #111b31;
  --muted: #5e6d85;
  --brand: #1456a0;
  --brand-strong: #0c3d78;
  --brand-dark: #0c2445;
  --accent: #e5a719;
  --accent-soft: #fff6dc;
  --border: #dbe4f0;
  --success: #087a55;
  --success-bg: #e9faf3;
  --danger: #a8412f;
  --danger-bg: #fff0ec;
  --shadow: 0 18px 55px rgba(12, 36, 69, 0.09);
  --shadow-soft: 0 10px 30px rgba(12, 36, 69, 0.06);
  --radius: 1.35rem;
  --radius-small: 0.9rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-strong);
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(20, 86, 160, 0.34);
  outline-offset: 3px;
}

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3 {
  color: var(--brand-dark);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

p {
  margin-top: 0;
}

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

.header-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 78px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
}

.brand {
  align-items: center;
  color: var(--brand-dark);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 850;
  gap: 0.7rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--brand-dark);
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  border-radius: 0.75rem;
  box-shadow: 0 8px 18px rgba(20, 86, 160, 0.22);
  display: inline-flex;
  gap: 3px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-mark i {
  background: white;
  border-radius: 999px;
  display: block;
  width: 2px;
}

.brand-mark i:nth-child(1),
.brand-mark i:nth-child(4) {
  height: 12px;
  opacity: 0.72;
}

.brand-mark i:nth-child(2) {
  height: 22px;
}

.brand-mark i:nth-child(3) {
  height: 16px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 1.8vw, 1.45rem);
  justify-content: flex-end;
}

.site-nav > a:not(.button) {
  color: #40506a;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav > a:not(.button):hover {
  color: var(--brand);
}

.site-nav .nav-login {
  border-left: 1px solid var(--border);
  padding-left: 1.2rem;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

main > .container {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.section {
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  scroll-margin-top: 6rem;
}

.section-tinted {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 700px;
}

.centered-heading {
  margin: 0 auto clamp(2.25rem, 5vw, 4rem);
  text-align: center;
}

.section-kicker,
.result-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
  max-width: 760px;
}

.muted,
.small-note {
  color: var(--muted);
}

.small-note {
  font-size: 0.94rem;
  margin-top: 1rem;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button,
button {
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border: 1px solid transparent;
  border-radius: 0.8rem;
  box-shadow: 0 10px 24px rgba(20, 86, 160, 0.2);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover,
button:hover {
  box-shadow: 0 14px 30px rgba(20, 86, 160, 0.27);
  color: white;
  transform: translateY(-1px);
}

.button.secondary {
  background: white;
  border-color: var(--border);
  box-shadow: none;
  color: var(--brand-dark);
}

.button.secondary:hover {
  border-color: #b8c9dd;
  box-shadow: var(--shadow-soft);
  color: var(--brand);
}

.nav-cta {
  border-radius: 0.7rem;
  box-shadow: none;
  min-height: 42px;
  padding: 0.65rem 1rem;
}

.wide-button {
  margin-top: 1.5rem;
  width: 100%;
}

.button-light {
  background: white;
  box-shadow: none;
  color: var(--brand-dark);
  flex-shrink: 0;
}

.button-light:hover {
  color: var(--brand);
}

.eyebrow,
.badge {
  align-items: center;
  background: #eaf2fd;
  border: 1px solid #cfe0f5;
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.75rem;
}

.eyebrow > span {
  color: var(--accent);
  font-size: 0.65rem;
}

.compact-eyebrow {
  margin-bottom: 1rem;
}

.landing-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(229, 167, 25, 0.11), transparent 20%),
    radial-gradient(circle at 22% 20%, rgba(20, 86, 160, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
  position: relative;
}

.landing-hero::before {
  background-image: radial-gradient(rgba(20, 86, 160, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  inset: 0 0 auto auto;
  height: 280px;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  width: 340px;
}

.landing-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  position: relative;
}

.landing-title {
  font-size: clamp(3.1rem, 6.4vw, 6.2rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
  margin-top: 1.3rem;
  max-width: 900px;
}

.landing-title span {
  color: var(--brand);
  display: block;
}

.landing-subtitle {
  color: var(--brand-dark);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 760;
  margin-bottom: 0.55rem;
}

.landing-hero-copy .lead {
  max-width: 760px;
}

.hero-actions .button {
  min-height: 54px;
  padding-left: 1.45rem;
  padding-right: 1.45rem;
}

.hero-reassurance {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 0.65rem 1.4rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.hero-reassurance li::before {
  color: var(--success);
  content: "✓";
  font-weight: 900;
  margin-right: 0.4rem;
}

.call-preview {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cedced;
  border-radius: 1.6rem;
  box-shadow: 0 30px 80px rgba(12, 36, 69, 0.16);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  transform: rotate(1deg);
}

.call-preview::after {
  background: var(--accent);
  border-radius: 999px;
  bottom: -14px;
  content: "";
  height: 28px;
  opacity: 0.82;
  position: absolute;
  right: 42px;
  width: 28px;
}

.call-preview-header {
  align-items: center;
  display: flex;
  gap: 0.85rem;
}

.call-icon,
.step-icon,
.feature-icon {
  align-items: center;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  border-radius: 0.9rem;
  color: white;
  display: inline-flex;
  flex-shrink: 0;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.call-preview-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  margin: 0;
  text-transform: uppercase;
}

.call-preview-number {
  color: var(--brand-dark);
  font-weight: 800;
  margin: 0;
}

.live-pill,
.status-pill {
  background: var(--success-bg);
  border-radius: 999px;
  color: var(--success);
  font-size: 0.76rem;
  font-weight: 850;
  margin-left: auto;
  padding: 0.35rem 0.62rem;
}

.call-wave {
  align-items: center;
  display: flex;
  gap: 7px;
  height: 118px;
  justify-content: center;
  margin: 1rem 0;
}

.call-wave span {
  animation: wave 1.6s ease-in-out infinite;
  background: linear-gradient(var(--brand), var(--accent));
  border-radius: 999px;
  display: block;
  height: 34px;
  opacity: 0.75;
  width: 6px;
}

.call-wave span:nth-child(2),
.call-wave span:nth-child(8) { height: 58px; animation-delay: 100ms; }
.call-wave span:nth-child(3),
.call-wave span:nth-child(7) { height: 82px; animation-delay: 200ms; }
.call-wave span:nth-child(4),
.call-wave span:nth-child(6) { height: 48px; animation-delay: 300ms; }
.call-wave span:nth-child(5) { height: 96px; animation-delay: 400ms; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.72); }
  50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .call-wave span { animation: none; }
  .button,
  button { transition: none; }
}

.call-preview-result {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.05rem 1.15rem;
}

.call-preview-result strong {
  color: var(--brand-dark);
  display: block;
  font-size: 1.05rem;
}

.call-preview-result p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
}

.audience-strip {
  background: white;
  border-bottom: 1px solid var(--border);
}

.audience-strip-inner {
  align-items: center;
  color: #6f7c90;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.91rem;
  font-weight: 800;
  gap: 0.8rem 1.8rem;
  justify-content: center;
  padding-bottom: 1.35rem;
  padding-top: 1.35rem;
}

.audience-strip span:not(:last-child)::after {
  color: #c2ccda;
  content: "·";
  margin-left: 1.8rem;
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.step-card,
.feature-card,
.card,
.panel,
.notice-panel,
.cta-panel,
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.55rem;
}

.step-card {
  min-height: 285px;
  padding: 1.8rem;
}

.step-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.step-number {
  background: #eaf2fd;
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 0.35rem 0.65rem;
}

.step-card p,
.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.result-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
}

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

.tick-list li {
  color: #33425a;
  font-weight: 650;
  padding-left: 1.8rem;
  position: relative;
}

.tick-list li::before {
  align-items: center;
  background: var(--success-bg);
  border-radius: 999px;
  color: var(--success);
  content: "✓";
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 1.25rem;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0.16rem;
  width: 1.25rem;
}

.job-summary-card {
  background: white;
  border: 1px solid #cfdaea;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.job-summary-header {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1.7rem 1.2rem;
}

.job-summary-header h3 {
  font-size: 1.45rem;
  margin: 0;
}

.status-pill.urgent {
  background: var(--danger-bg);
  color: var(--danger);
}

.job-summary-list {
  display: grid;
  margin: 0;
  padding: 0.45rem 1.7rem 1.2rem;
}

.job-summary-list > div {
  align-items: baseline;
  border-bottom: 1px solid #edf1f6;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(95px, 0.35fr) minmax(0, 1fr);
  padding: 0.85rem 0;
}

.job-summary-list dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.job-summary-list dd {
  color: var(--brand-dark);
  font-weight: 750;
  margin: 0;
}

.job-summary-action {
  background: var(--brand-dark);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.7rem;
}

.job-summary-action span {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  opacity: 0.7;
  text-transform: uppercase;
}

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

.feature-card {
  min-height: 250px;
  padding: 1.6rem;
}

.feature-icon {
  margin-bottom: 1.35rem;
}

.managed-setup-panel {
  align-items: start;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-strong));
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
  color: white;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  padding: clamp(2rem, 5vw, 4rem);
}

.managed-setup-panel h2,
.managed-setup-panel .lead {
  color: white;
}

.managed-setup-panel .lead {
  opacity: 0.82;
}

.managed-setup-panel .section-kicker {
  color: #9dc7f4;
}

.setup-checklist {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.setup-checklist li {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.setup-checklist li > span {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 900;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.setup-checklist strong {
  color: white;
}

.setup-checklist p {
  font-size: 0.9rem;
  margin: 0.2rem 0 0;
  opacity: 0.72;
}

.pricing-landing-section {
  background: white;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.pricing-landing-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr);
}

.single-price-card {
  background: white;
  border: 2px solid #c7d9ef;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.single-price-card h3 {
  font-size: 1.6rem;
}

.price-pair {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.4rem 0;
  padding: 1.35rem 0;
}

.price-pair p {
  margin: 0;
}

.price-pair p + p {
  border-left: 1px solid var(--border);
  padding-left: 1.25rem;
}

.price-pair strong {
  color: var(--brand-dark);
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-pair span {
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

.compact-tick-list {
  gap: 0.58rem;
  margin-top: 0;
}

.compact-tick-list li {
  font-size: 0.94rem;
}

.faq-container {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
  padding: 1.25rem 3.25rem 1.25rem 1.35rem;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--brand);
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
  position: absolute;
  right: 1.35rem;
  top: 0.95rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-list details p {
  color: var(--muted);
  margin: 0;
  padding: 1rem 1.35rem 1.35rem;
}

.final-cta-section {
  padding-top: 0;
}

.final-cta-panel {
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(229, 167, 25, 0.25), transparent 27%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
  color: white;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
}

.final-cta-panel h2,
.final-cta-panel p {
  color: white;
}

.final-cta-panel p:last-child {
  margin-bottom: 0;
  max-width: 720px;
  opacity: 0.82;
}

.light-kicker {
  color: #c9e2ff !important;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-panel {
  border-color: #c7d9f8;
}

.featured-card {
  border-color: #c7d9f8;
  margin-top: 2rem;
  max-width: 640px;
}

.price {
  color: var(--brand-dark);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.price-subtitle {
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 750;
  margin: 0 0 1rem;
}

.notice-panel {
  background: var(--success-bg);
  color: var(--success);
  margin-top: 1.5rem;
}

.cta-panel {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.split-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.pricing-section {
  padding-top: 1rem;
}

.feature-list {
  padding-left: 1.25rem;
}

.form-intro {
  padding-bottom: 1rem;
}

.form-container {
  padding-top: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

label {
  color: var(--brand-dark);
  font-weight: 750;
}

input,
select,
textarea {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--ink);
  font: inherit;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(20, 86, 160, 0.12);
  outline: none;
}

textarea {
  min-height: 120px;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 1rem 0 2rem;
}

.checkbox {
  align-items: center;
  background: #f9fbff;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  display: flex;
  gap: 0.6rem;
  padding: 0.8rem;
}

.priced-check-list .checkbox {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
}

.priced-check-list .checkbox input {
  margin-right: 0.5rem;
}

.priced-check-list .checkbox span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  padding-left: 1.6rem;
}

.checkbox input {
  width: auto;
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow-x: auto;
}

table {
  background: var(--surface);
  border-collapse: collapse;
  width: 100%;
}

th {
  background: #edf4ff;
  color: var(--brand-dark);
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
}

tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  background: #081b34;
  color: #b9c6d8;
  margin-top: 2rem;
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 2.5rem;
  padding-top: 3rem;
}

.footer-brand {
  color: white;
  margin-bottom: 0.9rem;
}

.footer-brand:hover {
  color: white;
}

.footer-grid p {
  margin-bottom: 0;
  max-width: 560px;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
  min-width: 190px;
}

.footer-nav a {
  color: #c9d5e4;
  font-size: 0.92rem;
  font-weight: 650;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.84rem;
  margin: 0;
}

@media (max-width: 1040px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .site-nav .nav-login {
    border-left: 0;
    padding-left: 0;
  }

  .landing-hero-grid,
  .result-grid,
  .managed-setup-panel,
  .pricing-landing-grid {
    grid-template-columns: 1fr;
  }

  .call-preview {
    margin: 0 auto;
    max-width: 580px;
    transform: none;
    width: 100%;
  }

  .managed-setup-panel {
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 10rem;
  }

  .site-nav {
    gap: 0.55rem 1rem;
  }

  .site-nav > a:not(.button) {
    font-size: 0.88rem;
  }

  .nav-cta {
    width: 100%;
  }

  .steps-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .feature-card {
    min-height: auto;
  }

  .audience-strip-inner {
    gap: 0.65rem 1rem;
  }

  .audience-strip span:not(:last-child)::after {
    margin-left: 1rem;
  }

  .final-cta-panel,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .header-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .site-nav > a:not(.button) {
    flex: 1 1 auto;
  }

  .landing-hero {
    padding-top: 3.2rem;
  }

  .landing-title {
    font-size: clamp(2.75rem, 15vw, 4.3rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-reassurance {
    display: grid;
  }

  .call-preview {
    padding: 1.15rem;
  }

  .call-preview-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .live-pill {
    margin-left: 0;
  }

  .call-wave {
    height: 90px;
  }

  .audience-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-strip span:not(:last-child)::after {
    content: "";
    margin: 0;
  }

  .job-summary-list > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .price-pair {
    grid-template-columns: 1fr;
  }

  .price-pair p + p {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1rem;
  }

  .single-price-card {
    padding: 1.25rem;
  }

  .managed-setup-panel,
  .final-cta-panel {
    border-radius: 1.25rem;
    padding: 1.5rem;
  }

  .button-light {
    width: 100%;
  }
}