:root {
  --blue: #0b2f64;
  --blue-ink: #0a2550;
  --blue-soft: #eef5ff;
  --yellow: #f6c343;
  --mustard: #d9a928;
  --yellow-soft: #fff5cd;
  --bg: #f8fbff;
  --card: #ffffff;
  --text: #111827;
  --muted: #5b6476;
  --border: #e3e8f0;
  --shadow: 0 18px 45px rgba(10, 37, 80, 0.13);
  --radius: 16px;
  --font: "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: #0d1b2a;
  background:
    radial-gradient(circle at top left, rgba(5, 24, 58, 0.34) 0, rgba(11, 47, 100, 0.22) 18rem, transparent 38rem),
    linear-gradient(135deg, #071d45 0%, #153f76 13%, #d9e6f8 28%, #ffffff 45%, #fffdf4 57%, #fff4cf 73%, #edcc68 88%, var(--mustard) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--mustard);
  border-bottom: 1px solid rgba(10, 37, 80, 0.16);
  box-shadow: 0 8px 24px rgba(10, 37, 80, 0.12);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 800;
}

.logo-mark {
  width: 39px;
  height: 39px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 5px 12px rgba(11, 47, 100, 0.16);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.22rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.48rem 0.74rem;
  border-radius: 999px;
  color: #0d2345;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.nav-link.active,
.nav-cta {
  color: #fff;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(10, 37, 80, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--blue-ink);
}

.hero {
  padding: clamp(2rem, 4vw, 3rem) 0 1.25rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.offer-card,
.detail-panel,
.subject-card,
.benefit-card,
.image-card,
.framework-steps article,
.signal-grid article,
.why-grid article,
.pipeline-card,
.testimonial-grid blockquote,
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(11, 47, 100, 0.07);
}

.hero-copy {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 1.15rem;
  color: var(--blue-ink);
  font-size: clamp(2.15rem, 3.15vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-actions,
.cta-row,
.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.12rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-actions .btn,
.offer-cta {
  min-height: 58px;
  padding: 0.95rem 1.35rem;
  font-size: 1.06rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-ink));
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--blue-ink);
  background: #fff;
  border-color: var(--border);
  box-shadow: inset 0 0 0 1px var(--border);
}

.btn-light {
  color: var(--blue-ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 18, 44, 0.18);
}

.btn-wide {
  width: 100%;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--blue-ink);
  background: rgba(11, 47, 100, 0.07);
  font-size: 0.92rem;
  font-weight: 800;
}

.offer-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.3rem;
}

.offer-price {
  padding: 1.15rem;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0b2f64 0%, #123f7d 100%);
}

.offer-price span,
.offer-price small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.offer-price strong {
  display: block;
  margin: 0.2rem 0;
  font-size: clamp(3.1rem, 6.5vw, 4.25rem);
  line-height: 0.92;
}

.availability-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 2px solid rgba(10, 37, 80, 0.14);
  border-radius: 14px;
  color: var(--blue-ink);
  background: linear-gradient(135deg, #f6c343 0%, #fff1b8 100%);
  box-shadow: 0 14px 32px rgba(10, 37, 80, 0.12);
}

.availability-card strong {
  grid-row: 1 / 3;
  font-size: clamp(4.8rem, 8vw, 6.4rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.availability-label,
.availability-copy {
  display: block;
  font-weight: 900;
}

.availability-label {
  align-self: end;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.availability-copy {
  align-self: start;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.1;
}

.offer-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.offer-list div {
  padding: 0.68rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
}

.offer-list dt {
  color: var(--blue-ink);
  font-weight: 800;
}

.offer-list dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.quick-strip {
  padding: 1rem 0 2rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.strip-grid div {
  padding: 1rem;
  border: 1px solid rgba(11, 47, 100, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(11, 47, 100, 0.06);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  color: var(--blue-ink);
  font-size: 1.08rem;
}

.strip-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-proof {
  padding-top: 1.5rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.18fr 0.78fr;
  gap: 1rem;
  align-items: stretch;
}

.image-card {
  margin: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.image-card-large img {
  height: 340px;
}

.image-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: #24344d;
  font-weight: 800;
  line-height: 1.4;
}

.section {
  padding: 3.6rem 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: 1.5rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.section h2,
.final-panel h2,
.band-inner h2 {
  margin: 0 0 0.7rem;
  color: var(--blue-ink);
  font-size: clamp(1.75rem, 3.3vw, 2.55rem);
  line-height: 1.13;
}

.section p,
.final-panel p,
.band-inner p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.detail-panel {
  padding: 1.4rem;
}

.detail-panel h3 {
  margin: 0 0 0.8rem;
  color: var(--blue-ink);
  font-size: 1.18rem;
}

.local-authority {
  padding-top: 2rem;
}

.local-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(11, 47, 100, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, #eef5ff 0%, #fffdf3 100%);
  box-shadow: 0 16px 48px rgba(11, 47, 100, 0.1);
}

.local-panel h2 {
  margin: 0 0 0.75rem;
  color: var(--blue-ink);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.13;
}

.local-panel p {
  margin: 0;
  color: var(--muted);
}

.local-list {
  display: grid;
  gap: 0.65rem;
}

.local-list span {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(11, 47, 100, 0.1);
  border-radius: 12px;
  color: var(--blue-ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.trust-signals {
  padding-top: 2rem;
  padding-bottom: 2.8rem;
}

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

.signal-grid article {
  min-height: 180px;
  padding: 1.2rem;
}

.signal-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
}

.signal-grid span {
  display: block;
  color: #24344d;
  font-weight: 800;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #24344d;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.38rem;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 4px #fff7d9;
}

.subject-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.subject-card,
.benefit-card {
  min-height: 220px;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.subject-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 47, 100, 0.18);
  box-shadow: 0 18px 40px rgba(11, 47, 100, 0.14);
}

.subject-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  color: var(--blue-ink);
  background: var(--yellow-soft);
  font-weight: 900;
}

.subject-card h3,
.benefit-card h3 {
  margin: 0 0 0.45rem;
  color: var(--blue-ink);
  font-size: 1.08rem;
}

.subject-card p,
.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
}

.framework {
  padding-bottom: 2.4rem;
}

.framework-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.framework-steps article {
  position: relative;
  min-height: 180px;
  padding: 1.1rem;
}

.framework-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -0.56rem;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  transform: rotate(45deg);
  z-index: 2;
}

.framework-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  color: var(--blue-ink);
  background: var(--yellow);
  font-weight: 900;
}

.framework-steps h3 {
  margin: 0 0 0.35rem;
  color: var(--blue-ink);
  font-size: 1rem;
}

.framework-steps p {
  margin: 0;
  font-size: 0.9rem;
}

.why-works {
  padding-top: 2.4rem;
}

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

.why-grid article {
  min-height: 190px;
  padding: 1.2rem;
}

.why-grid h3 {
  margin: 0 0 0.45rem;
  color: var(--blue-ink);
  font-size: 1.08rem;
}

.why-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.image-frame {
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(10, 35, 80, 0.14);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.timeline div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.timeline strong {
  color: var(--blue);
  font-weight: 900;
}

.timeline span {
  color: var(--muted);
  font-weight: 700;
}

.mock-pipeline {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.pipeline-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

.pipeline-card div {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 3rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
}

.pipeline-card div::before {
  content: counter(pipeline);
  counter-increment: pipeline;
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  color: var(--blue-ink);
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.pipeline-card {
  counter-reset: pipeline;
}

.pipeline-card strong,
.pipeline-card span {
  display: block;
}

.pipeline-card strong {
  color: var(--blue-ink);
  font-weight: 900;
}

.pipeline-card span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-weight: 700;
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr) auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.7rem;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0b2f64 0%, #123f7d 100%);
  box-shadow: var(--shadow);
}

.testimonials {
  padding-top: 2rem;
  padding-bottom: 2.8rem;
}

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

.testimonial-grid blockquote {
  display: grid;
  align-content: space-between;
  min-height: 250px;
  margin: 0;
  padding: 1.25rem;
}

.testimonial-grid p {
  margin: 0 0 1rem;
  color: #24344d;
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-grid cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.value-panel h2,
.value-panel p {
  color: #fff;
}

.value-panel p {
  margin-bottom: 0;
  opacity: 0.85;
}

.value-stack {
  display: grid;
  gap: 0.55rem;
}

.value-stack div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.value-stack span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.value-stack strong {
  color: #fff;
  font-weight: 900;
  text-align: right;
}

.confidence {
  padding-top: 3rem;
}

.action-band {
  padding: 2.8rem 0;
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(11, 47, 100, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, #eef5ff 0%, #fffdf3 100%);
  box-shadow: 0 16px 48px rgba(11, 47, 100, 0.12);
}

.band-inner p {
  margin-bottom: 0;
}

.narrow {
  max-width: 860px;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--blue-ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.chevron {
  width: 13px;
  height: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.faq-item.open .chevron {
  transform: rotate(225deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  color: var(--muted);
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.faq-item.open .faq-content {
  max-height: 240px;
  padding-bottom: 1rem;
}

.faq-content p {
  margin: 0;
}

.final-cta {
  padding: 3.4rem 0 4.5rem;
}

.final-panel {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.final-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 2.4rem 1.2rem 5.5rem;
  color: #0d2345;
  background: var(--mustard);
  border-top: 1px solid rgba(10, 37, 80, 0.16);
  box-shadow: 0 -12px 34px rgba(10, 37, 80, 0.12);
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1.4rem;
}

.footer-brand h3,
.footer-links h4 {
  margin: 0 0 0.5rem;
}

.footer-brand p {
  max-width: 470px;
  margin: 0;
  color: #263c59;
}

.footer-logo {
  width: 52px;
  height: 52px;
  margin-bottom: 0.65rem;
  border-radius: 12px;
  object-fit: cover;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-links a {
  color: #263c59;
  font-weight: 700;
}

.footer-links a:hover {
  color: #0d2345;
}

.sticky-book {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(100% - 2rem);
  padding: 0.6rem 0.65rem 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 37, 80, 0.95);
  box-shadow: 0 16px 36px rgba(5, 18, 44, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-book.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-book span {
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.sticky-book a {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--blue-ink);
  background: var(--yellow);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-layout,
  .split,
  .split.reverse,
  .value-panel,
  .band-inner,
  .local-panel {
    grid-template-columns: 1fr;
  }

  .subject-grid,
  .benefit-grid,
  .strip-grid,
  .testimonial-grid,
  .signal-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .framework-steps article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -0.55rem;
    transform: translateX(50%) rotate(135deg);
  }

  .value-panel .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding-top: 0.75rem;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-link {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .strip-grid,
  .subject-grid,
  .benefit-grid,
  .testimonial-grid,
  .signal-grid,
  .why-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .image-card img,
  .image-card-large img {
    height: 250px;
  }

  .section {
    padding: 2.8rem 0;
  }

  .image-frame {
    min-height: 300px;
  }

  .timeline div {
    grid-template-columns: 64px 1fr;
  }

  .sticky-book {
    left: 0.75rem;
    right: 0.75rem;
    justify-content: space-between;
    border-radius: 16px;
    gap: 0.45rem;
  }

  .sticky-book span {
    white-space: normal;
  }

  .sticky-book a {
    padding: 0.52rem 0.65rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 1.4rem, 1120px);
  }

  .hero-copy,
  .offer-card,
  .value-panel,
  .band-inner,
  .final-panel {
    padding: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }
}
