:root {
  --header: #041124;
  --navy: #0a172a;
  --ink: #06152b;
  --muted: rgba(255, 255, 255, 0.7);
  --ink-soft: rgba(6, 21, 43, 0.62);
  --ink-faint: rgba(6, 21, 43, 0.45);
  --line: rgba(6, 21, 43, 0.08);
  --shell: 1180px;
  --header-h: 64px;
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --radius-card: 18px;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  background: #020814;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.page { background: #fff; overflow-x: clip; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  padding: 0 36px;
  background: var(--header);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.logo-text {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-text span { opacity: 0.55; font-weight: 500; }

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.78;
  transition: opacity 0.25s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] { opacity: 1; }

.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 0;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.35s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(6, 21, 43, 0.18);
  background: #fff;
  color: var(--ink);
}

.btn-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.66rem;
  border-radius: 999px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.link-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover::after { transform: translateX(4px); }

/* ========== HERO ========== */
.fold {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  background: #fff;
}

.hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  padding: 40px 44px 120px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-stage {
  position: absolute;
  inset: 0 0 0 36%;
  pointer-events: none;
  overflow: hidden;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  transform: scale(1.04);
  animation: heroKen 18s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-2%, 1%, 0); }
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(10, 23, 42, 0.92) 16%, rgba(10, 23, 42, 0.35) 38%, transparent 56%),
    linear-gradient(180deg, transparent 55%, var(--navy) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
}

.hero-copy { max-width: 520px; }

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.2vw, 3.55rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.lede {
  margin: 16px 0 0;
  max-width: 38ch;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(560px, 100%);
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li { display: grid; gap: 4px; }
.trust-row svg { color: #fff; }
.trust-row strong { font-size: 0.74rem; font-weight: 600; }
.trust-row span { font-size: 0.64rem; color: rgba(255, 255, 255, 0.5); }

.hero-scroll {
  position: absolute;
  left: 44px;
  bottom: 36px;
  z-index: 3;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll::before {
  content: "";
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ========== ROUNDED WHITE SHELL ========== */
.shell-round {
  position: relative;
  z-index: 5;
  margin-top: -72px;
  padding: 28px 44px 48px;
  background: #fff;
  border-top-left-radius: 72px;
  border-top-right-radius: 72px;
}

.section {
  padding: 64px 44px;
  background: #fff;
}

.section--soft {
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}

.section--navy {
  background: var(--navy);
  color: #fff;
}

.section-inner,
.container {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2,
.section h2,
.band h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: inherit;
}

.section-lead {
  margin: 0 0 28px;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.section--navy .section-lead,
.section--navy .lede { color: var(--muted); }

.eyebrow-ink {
  display: block;
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.section--navy .eyebrow-ink { color: rgba(255, 255, 255, 0.55); }

/* ========== CAROUSEL ========== */
.carousel-wrap {
  position: relative;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 18px) / 4);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 10px;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel-card {
  scroll-snap-align: start;
  min-width: 0;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(6, 21, 43, 0.1);
}

.carousel-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f6;
}

.carousel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.carousel-card:hover .carousel-card__media img { transform: scale(1.06); }

.carousel-card__body { padding: 16px 16px 18px; }

.carousel-card__step {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.carousel-card h3 {
  margin: 6px 0 6px;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

.carousel-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.carousel-nav {
  position: absolute;
  top: 34%;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(6, 21, 43, 0.08);
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}

.carousel-nav:hover { transform: scale(1.06); }
.carousel-nav.prev { left: -12px; }
.carousel-nav.next { right: -12px; }

/* ========== MEDIA STRIP ========== */
.media-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.media-strip--flip { direction: rtl; }
.media-strip--flip > * { direction: ltr; }

.media-strip__img {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef1f6;
  box-shadow: 0 24px 50px rgba(6, 21, 43, 0.08);
}

.media-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-strip__copy h2 { margin: 0 0 14px; }
.media-strip__copy .lede {
  max-width: 44ch;
  color: var(--ink-soft);
}

/* ========== FEATURE CARDS ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.feature-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 320px;
  color: #fff;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.45s var(--ease);
}

.feature-card:hover { transform: translateY(-4px); }

.feature-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.feature-card:hover .feature-card__media img { transform: scale(1.07); }

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 17, 36, 0.15) 0%, rgba(4, 17, 36, 0.82) 100%);
}

.feature-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
  transition: max-height 0.45s var(--ease), opacity 0.35s ease, margin 0.35s ease;
}

.feature-card:hover p,
.feature-card:focus-within p {
  max-height: 140px;
  opacity: 1;
  margin-top: 4px;
}

.feature-card__hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card__hint { opacity: 0; }

/* ========== TILES ========== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tile {
  padding: 28px;
  border-radius: var(--radius-card);
  background: #f4f6fa;
  border: 1px solid var(--line);
}

.tile h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.tile p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  padding: 72px 44px 80px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.38;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 23, 42, 0.94) 0%, rgba(10, 23, 42, 0.72) 48%, rgba(10, 23, 42, 0.45) 100%),
    linear-gradient(180deg, transparent 60%, rgba(10, 23, 42, 0.55) 100%);
}

.page-hero .container { position: relative; z-index: 2; max-width: 720px; }

.page-hero .lede { color: var(--muted); max-width: 48ch; }

/* ========== BAND CTA ========== */
.band {
  padding: 72px 44px;
  background:
    radial-gradient(1200px 400px at 10% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
    var(--navy);
  color: #fff;
  text-align: center;
}

.band .lede {
  margin: 14px auto 0;
  max-width: 42ch;
  color: var(--muted);
}

.band .btn-group { justify-content: center; }

/* ========== FAQ ========== */
.faq-group { margin-bottom: 36px; }

.faq-group__title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  position: relative;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }

.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }

.faq-panel-inner { overflow: hidden; }

.faq-body {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.faq-body p { margin: 0; }

/* ========== FORMS ========== */
.form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(6, 21, 43, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { margin-bottom: 14px; }

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(6, 21, 43, 0.12);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(10, 23, 42, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 23, 42, 0.08);
}

.textarea { min-height: 130px; resize: vertical; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.faint { color: var(--ink-faint); font-weight: 500; }

.stepper {
  display: flex;
  gap: 8px;
  margin: 18px 0 24px;
  flex-wrap: wrap;
}

.stepper button {
  border: 0;
  background: #eef1f6;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.stepper button.is-active {
  background: var(--navy);
  color: #fff;
}

.stepper button.is-done { background: #d9e4f5; color: var(--ink); }

.form-success {
  text-align: center;
  padding: 28px 12px;
}

.form-success h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--header);
  color: #fff;
  padding: 56px 44px 28px;
}

.footer-grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.footer-brand strong {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.site-footer p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.site-footer a:hover { color: #fff; }

.footer-base {
  max-width: var(--shell);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav { gap: 14px; }
  .nav-link { letter-spacing: 0.08em; font-size: 0.64rem; }
  .hero-stage { inset: 0 0 0 44%; }
  .carousel { grid-auto-columns: calc((100% - 2 * 14px) / 3); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .burger { display: grid; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    transform: none;
    left: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-link {
    padding: 12px 4px;
    opacity: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-link[aria-current="page"]::after { display: none; }
  .header-actions .btn { display: none; }
  .media-strip,
  .media-strip--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 22px;
  }
  .feature-grid,
  .feature-grid--2,
  .tile-grid,
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { padding: 0 16px; height: 58px; }
  .hero {
    display: block;
    padding: 24px 16px 72px;
  }
  .hero-stage {
    position: relative;
    inset: auto;
    height: 220px;
    margin: 0 -16px 22px;
  }
  .hero-stage::before {
    background:
      linear-gradient(180deg, var(--navy) 0%, transparent 30%),
      linear-gradient(0deg, var(--navy) 0%, transparent 34%);
  }
  .hero-copy h1 { font-size: clamp(1.9rem, 8vw, 2.45rem); }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }
  .trust-row {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .shell-round {
    margin-top: -40px;
    border-radius: 28px 28px 0 0;
    padding: 22px 16px 36px;
  }
  .section,
  .page-hero,
  .band,
  .site-footer { padding-left: 16px; padding-right: 16px; }
  .carousel { grid-auto-columns: minmax(220px, 78%); }
  .carousel-nav { display: none; }
  .hero-scroll { left: 16px; bottom: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-card { padding: 22px 16px; }
}
