:root {
  --brand-green: #57bb73;
  --brand-green-bright: #00d263;
  --brand-green-deep: #2f8f56;
  --brand-green-soft: #edf9f1;
  --brand-green-tint: rgba(87, 187, 115, 0.16);
  --brand-dark: #0f1720;
  --brand-dark-soft: #162330;
  --brand-slate: #1d2a36;
  --text: #314252;
  --muted: #617384;
  --border: #d8e3dc;
  --border-strong: #c0d1c6;
  --surface: #f5faf7;
  --surface-strong: #eef5f1;
  --white: #ffffff;
  --shadow-sm: 0 10px 24px rgba(15, 23, 32, 0.08);
  --shadow-md: 0 20px 60px rgba(15, 23, 32, 0.14);
  --shadow-lg: 0 28px 70px rgba(15, 23, 32, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: min(1180px, calc(100vw - 2rem));
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(87, 187, 115, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fcfefd 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--white);
  color: var(--brand-dark);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(192, 209, 198, 0.72);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.3rem;
}

.brand img {
  width: min(250px, 42vw);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-slate);
  content: "";
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-bar {
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -0.38rem;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 0.38rem;
}

.nav-menu {
  justify-self: end;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--brand-slate);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--brand-green-deep);
  background: var(--brand-green-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  border: 1px solid var(--brand-green);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-bright) 100%);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
  box-shadow: 0 14px 34px rgba(0, 210, 99, 0.18);
}

.btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 210, 99, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn-ghost {
  background: var(--white);
  color: var(--brand-slate);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  color: var(--brand-green-deep);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  background:
    linear-gradient(115deg, rgba(9, 16, 22, 0.95) 0%, rgba(9, 16, 22, 0.88) 42%, rgba(9, 16, 22, 0.5) 100%),
    url("../images/hero-banner.jpg") center/cover no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -8rem -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 187, 115, 0.24), transparent 70%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 5.3rem);
  padding: 5rem 0 4.5rem;
}

.hero-copy {
  color: var(--white);
  max-width: 42rem;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero h1,
.page-hero h1,
section h2,
section h3,
section h4,
.footer-title {
  margin: 0;
  color: var(--brand-slate);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.3vw, 5rem);
  margin-bottom: 1rem;
}

.hero p {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}
.hero p1 {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(88, 88, 88, 0.9);
  max-width: 60ch;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-points span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex: 0 0 2rem;
  border-radius: 50%;
  background: rgba(87, 187, 115, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--brand-green-bright);
  font-weight: 900;
}

.hero-panel,
.card {
  background: var(--white);
  border: 1px solid rgba(216, 227, 220, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-panel {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 248, 0.96) 100%);
}

.hero-panel .panel-logo {
  width: 10rem;
  margin-bottom: 1rem;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--brand-green-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-title {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.panel-text,
.muted,
.lead-muted,
.card p,
.card li,
.footer-copy {
  color: var(--muted);
}

.panel-list,
.checklist,
.inline-list,
.contact-list,
.footer-list,
.metric-list,
.policy-list,
.timeline,
.badge-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.panel-list li,
.checklist li,
.contact-list li,
.policy-list li {
  position: relative;
  padding-left: 1.55rem;
}

.panel-list li::before,
.checklist li::before,
.policy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--brand-green-deep);
  font-weight: 900;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.inline-list li,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

.trust-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 227, 220, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
}

.trust-item strong {
  color: var(--brand-slate);
  font-size: 1.02rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(245, 250, 247, 0.92) 0%, rgba(238, 245, 241, 0.88) 100%);
}

.section-dark {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #152433 100%);
  color: var(--white);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-intro,
.section-dark .muted,
.section-dark p,
.section-dark li,
.section-dark .section-lead,
.section-dark .section-kicker,
.section-dark .card-link {
  color: var(--white);
}

.section-dark .panel-list li::before,
.section-dark .checklist li::before,
.section-dark .policy-list li::before,
.section-dark .contact-list li::before {
  color: var(--brand-green-bright);
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-header > div {
  max-width: 47rem;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--brand-green-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-title {
  font-size: clamp(2rem, 3.3vw, 3rem);
  margin-bottom: 0.8rem;
}

.section-intro,
.section-lead {
  margin: 0;
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 68ch;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.5rem;
  align-items: stretch;
}

.split-reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.card {
  padding: 1.5rem;
}

.card h3,
.card h4 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
}

.card p {
  margin: 0;
}

.card + .card {
  margin-top: 0;
}

.card-accent {
  position: relative;
  overflow: hidden;
}

.card-accent::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-green) 0%, var(--brand-green-bright) 100%);
}

.feature-grid,
.metrics-grid,
.products-grid,
.steps-grid,
.contact-grid,
.info-grid,
.legal-grid,
.value-grid,
.two-up,
.three-up {
  display: grid;
  gap: 1rem;
}

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

.products-grid,
.value-grid,
.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

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

.metric-card,
.feature-card,
.product-card,
.step-card,
.info-card,
.value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.feature-card .card-link,
.product-card .card-link {
  margin-top: auto;
  padding-top: 1rem;
}

.metric-value {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand-slate);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-slate);
  font-weight: 800;
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--brand-green-soft) 0%, #def2e4 100%);
  border: 1px solid #cfe6d5;
}

.icon-wrap img {
  width: 1.6rem;
  height: 1.6rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-weight: 800;
}

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

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 21rem;
  object-fit: cover;
}

.highlight-box {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.95) 0%, rgba(21, 36, 51, 0.94) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.highlight-box h3,
.highlight-box p,
.highlight-box li,
.highlight-box .panel-title,
.highlight-box .panel-kicker {
  color: var(--white);
}

.highlight-box .panel-list li::before {
  color: var(--brand-green-bright);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge-list li {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(87, 187, 115, 0.16);
  color: var(--brand-green-deep);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-step {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-green) 0%, var(--brand-green-bright) 100%);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 210, 99, 0.18);
}

.timeline li strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-slate);
}

.section-dark .timeline li strong {
  color: var(--white);
}

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

.contact-list li::before {
  content: "•";
  position: absolute;
  left: 0.15rem;
  color: var(--brand-green-deep);
  font-weight: 900;
}

.contact-list strong {
  color: var(--brand-slate);
}

.section-dark .contact-list strong {
  color: var(--white);
}

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

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-green-soft);
  color: var(--brand-green-deep);
  font-weight: 800;
  font-size: 0.92rem;
}

@media (min-width: 641px) {
  .compliance-email a {
    display: block;
    font-size: clamp(0.85rem, 0.75rem + 0.35vw, 1.05rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
  }
}

.office-heading {
  color: var(--brand-green-deep);
}

.info-summary {
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--brand-slate);
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(87, 187, 115, 0.16);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-shell {
  display: grid;
  gap: 0.75rem;
}

.captcha-widget {
  min-height: 78px;
}

.captcha-note,
.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
}

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

.form-status {
  min-height: 1.4rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--brand-green-deep);
}

.form-status[data-state="error"] {
  color: #b42318;
}

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.cta-banner {
  padding: 4rem 0;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-dark) 0%, #172a3b 65%, #1d3c2e 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-shell h2,
.cta-shell p {
  color: var(--white);
}

.cta-shell p {
  margin: 0.6rem 0 0;
  max-width: 44rem;
  opacity: 0.88;
}

.page-hero {
  padding: 6rem 0 4rem;
  background:
    linear-gradient(115deg, rgba(9, 16, 22, 0.94) 0%, rgba(9, 16, 22, 0.84) 52%, rgba(9, 16, 22, 0.52) 100%),
    url("../images/lifestyle-desktop.jpg") center/cover no-repeat;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  margin-bottom: 0.9rem;
}

.page-hero p {
  margin: 0;
  max-width: 52rem;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.site-footer {
  padding: 4rem 0 1.2rem;
  background: linear-gradient(180deg, #0f1720 0%, #101c28 100%);
  color: #cfdae5;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.footer-brand img {
  width: min(230px, 60vw);
  margin-bottom: 1rem;
}

.footer-brand p,
.footer-links a,
.footer-meta a {
  color: #cfdae5;
}

.footer-brand p {
  margin: 0;
  max-width: 34rem;
}

.footer-title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--brand-green-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero-shell,
  .split,
  .contact-grid,
  .footer-shell,
  .cta-shell,
  .steps-grid,
  .metrics-grid,
  .trust-shell {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .products-grid,
  .value-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .nav-menu {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
  }

  body.nav-open .nav-menu {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 1.15rem;
  }

  .nav-list a {
    width: 100%;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
  }

  body.nav-open .nav-toggle-bar {
    background: transparent;
  }

  body.nav-open .nav-toggle-bar::before {
    transform: translateY(0.38rem) rotate(45deg);
  }

  body.nav-open .nav-toggle-bar::after {
    transform: translateY(-0.38rem) rotate(-45deg);
  }

  .hero-shell,
  .split,
  .contact-grid,
  .footer-shell,
  .cta-shell,
  .trust-shell,
  .metrics-grid,
  .steps-grid,
  .feature-grid,
  .products-grid,
  .value-grid,
  .info-grid,
  .contact-card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    text-align: left;
  }

  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 640px) {
  .hero-shell {
    min-height: auto;
    padding: 4.2rem 0 4rem;
  }

  .hero-actions,
  .section-header {
    align-items: stretch;
  }

  .hero-actions .btn,
  .section-header .btn,
  .cta-shell .btn {
    width: 100%;
  }

  .trust-band {
    margin-top: -1.4rem;
  }

  .hero-panel,
  .card,
  .cta-shell {
    padding: 1.25rem;
  }

  .site-footer {
    padding-top: 3rem;
  }
}
