:root {
  --forest: #123e73;
  --forest-2: #071a33;
  --sage: #c89b3c;
  --mint: #dbeafe;
  --mint-2: #f5f9ff;
  --lilac: #2f65b7;
  --gold: #c89b3c;
  --cream: #f7faff;
  --white: #ffffff;
  --ink: #14231f;
  --muted: #5f706b;
  --line: #d8e8e2;
  --shadow: 0 22px 55px rgba(15, 74, 60, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--forest-2);
  line-height: 1.08;
  overflow-wrap: break-word;
}
p { margin: 0; color: var(--muted); }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: 8px;
  left: -999px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--forest-2);
  color: var(--white);
  border-radius: var(--radius);
}
.skip-link:focus { left: 12px; }

.topbar { background: var(--forest-2); color: rgba(255,255,255,.84); font-size: 14px; }
.topbar-inner { display: flex; gap: 22px; justify-content: space-between; padding: 9px 0; flex-wrap: wrap; }
.topbar a:hover { color: var(--white); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, .95);
  border-bottom: 1px solid rgba(15, 74, 60, .12);
  backdrop-filter: blur(12px);
}
.nav { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: auto; padding: 14px 0; }
.brand, .footer-brand { display: inline-flex; align-items: center; font-family: "Fraunces", Georgia, serif; color: var(--forest-2); }
.site-header .brand {
  flex: 0 0 auto;
  line-height: 1;
  min-width: 0;
  max-width: 240px;
  white-space: nowrap;
}
.site-header .brand::after { content: none; }
.brand-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 240px !important;
  max-height: 70px !important;
  object-fit: contain !important;
  flex: 0 0 auto;
}
.site-logo,
.logo,
.brand img,
.site-header img.logo,
.site-header .brand img,
.site-header img.brand-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 240px !important;
  max-height: 70px !important;
  object-fit: contain !important;
}
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 800; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 2px solid var(--forest);
  background: var(--white);
  color: var(--forest-2);
  padding: 0;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(6, 29, 64, .2);
  z-index: 60;
}
.menu-btn { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.menu-icon {
  display: block;
  position: relative;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--forest);
}
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--forest);
}
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--white); box-shadow: 0 12px 26px rgba(15,74,60,.22); }
.btn-primary:hover { background: var(--forest-2); }
.btn-secondary { background: var(--white); color: var(--forest-2); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--sage); color: var(--forest); }
.btn-light { background: var(--white); color: var(--forest); }
.btn-light:hover { background: var(--mint); }

.hero {
  position: relative;
  padding: 340px 0 72px;
  background: linear-gradient(180deg, #eaf3ff 0%, #f8fbff 52%, var(--white) 100%);
  overflow: hidden;
}
.hero::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7,26,51,.03) 0%, rgba(7,26,51,.1) 52%, rgba(248,251,255,.96) 100%),
    linear-gradient(90deg, rgba(7,26,51,.16), rgba(18,62,115,.04));
}
.hero-slideshow {
  position: absolute;
  inset: 0 0 auto;
  height: 430px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  border-bottom: 4px solid rgba(200,155,60,.34);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: translateX(7%) scale(1.06);
  animation: heroSlideShow 54s ease-in-out infinite;
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) {
  background-image: url("../images/Care 5.jpg");
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  background-image: url("../images/care 4.jpg");
  animation-delay: 6s;
}
.hero-slide:nth-child(3) {
  background-image: url("../images/care 9.jpg");
  animation-delay: 12s;
}
.hero-slide:nth-child(4) {
  background-image: url("../images/care1.jpg");
  animation-delay: 18s;
}
.hero-slide:nth-child(5) {
  background-image: url("../images/care 3.jpg");
  animation-delay: 24s;
}
.hero-slide:nth-child(6) {
  background-image: url("../images/care 2.jpg");
  animation-delay: 30s;
}
.hero-slide:nth-child(7) {
  background-image: url("../images/care 8.jpg");
  animation-delay: 36s;
}
.hero-slide:nth-child(8) {
  background-image: url("../images/Care 6.jpg");
  animation-delay: 42s;
}
.hero-slide:nth-child(9) {
  background-image: url("../images/Care 7.jpg");
  animation-delay: 48s;
}
.hero-grid { position: relative; z-index: 3; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 46px; align-items: center; }
.hero-copy {
  min-width: 0;
  max-width: 760px;
  padding: 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(18,62,115,.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(7,26,51,.16);
  backdrop-filter: blur(6px);
}
.hero h1 { max-width: 760px; color: var(--forest-2); font-size: clamp(42px, 6vw, 76px); text-shadow: none; }
.lead { max-width: 650px; margin-top: 22px; color: var(--muted); font-size: 19px; text-shadow: none; }
.eyebrow { margin-bottom: 13px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.hero-stats div {
  padding: 18px;
  background: var(--mint-2);
  border: 1px dashed rgba(200,155,60,.72);
  border-radius: var(--radius);
  box-shadow: none;
}
.hero-stats strong { display: block; color: var(--gold); font-size: 22px; font-family: "Fraunces", Georgia, serif; }
.hero-stats span { display: block; color: var(--muted); font-size: 14px; line-height: 1.4; }
.hero-media {
  display: none;
  align-self: stretch;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--mint);
  border: 10px solid rgba(255,255,255,.72);
  animation: floatImage 7s ease-in-out infinite;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section { padding: 84px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2, .band h2, .section-head h1, .legal h1 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 16px; }
.card-grid { display: grid; gap: 20px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(15,74,60,.03);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .2s ease; }
.card h3 { margin: 14px 0 10px; font-size: 24px; }
.service-card { overflow: hidden; padding: 0; }
.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.service-card:nth-child(1) img { object-position: center 38%; }
.service-card:nth-child(2) img { object-position: center 45%; }
.service-card:nth-child(3) img { object-position: center 40%; }
.service-card div { padding: 24px; }
.service-card img, .rounded-image { transition: transform .45s ease, filter .45s ease; }
.service-card:hover img, .rounded-image:hover { transform: scale(1.035); filter: saturate(1.08); }
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
}
.band { padding: 84px 0; background: var(--mint-2); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.rounded-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--mint);
}
.check-list { margin: 24px 0 28px; padding: 0; list-style: none; }
.check-list li { margin: 10px 0; padding-left: 30px; position: relative; color: var(--ink); font-weight: 800; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--sage); font-weight: 900; }
.process-grid { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card {
  counter-increment: step;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-card::before {
  content: "step " counter(step, decimal-leading-zero);
  display: inline-block;
  margin-bottom: 22px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-card h3 { margin-bottom: 10px; font-size: 22px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  padding: 28px;
  background: var(--cream);
  border: 1px solid #f0dfc6;
  border-radius: var(--radius);
}
.quote p { color: var(--ink); font-weight: 700; }
.quote cite { display: block; margin-top: 18px; color: var(--forest); font-style: normal; font-weight: 900; }
.section-green { background: var(--forest); color: var(--white); }
.section-green h2, .section-green p { color: var(--white); }
.section-green p { opacity: .86; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta div { max-width: 760px; }

.page-hero { padding: 70px 0; background: linear-gradient(180deg, var(--cream), var(--white)); }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); max-width: 850px; }
.page-hero p { max-width: 780px; margin-top: 18px; font-size: 18px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.contact-panel { padding: 32px; background: var(--forest); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-panel h2, .contact-panel p { color: var(--white); }
.contact-panel p { opacity: .84; margin: 12px 0 22px; }
.contact-list { display: grid; gap: 16px; }
.contact-list a, .contact-list span { display: block; color: var(--white); }
.contact-list small { display: block; color: var(--mint); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
form { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
label { display: block; margin-bottom: 7px; color: var(--forest-2); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
input, select, textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--mint-2); color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(59,139,115,.2); border-color: var(--sage); background: var(--white); }
textarea { min-height: 140px; resize: vertical; }
.form-status { margin-top: 12px; font-size: 14px; color: var(--muted); }
.form-status.error { color: #c0392b; font-weight: 700; }

.legal { padding: 70px 0; background: linear-gradient(180deg, var(--cream), var(--white) 260px); }
.legal article { max-width: 860px; }
.legal h2 { margin-top: 34px; margin-bottom: 10px; font-size: 28px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.notice { padding: 18px; background: var(--mint-2); border-left: 4px solid var(--sage); border-radius: var(--radius); }

.notice strong { color: var(--forest-2); }
.package-hero { padding: 78px 0; background: linear-gradient(180deg, var(--cream), var(--white)); }
.package-hero-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 42px; align-items: center; }
.package-hero h1 { max-width: 780px; font-size: clamp(40px, 5vw, 64px); }
.package-hero .lead { margin-top: 18px; }
.package-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--mint);
}
.package-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.package-note { margin-top: 22px; padding: 18px; background: var(--white); border: 1px solid rgba(18,62,115,.18); border-left: 4px solid var(--gold); border-radius: var(--radius); color: var(--forest-2); font-weight: 800; }
.package-card { display: flex; flex-direction: column; gap: 18px; padding: 0; overflow: hidden; }
.package-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.package-card-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.package-card h3 { margin: 0 0 12px; }
.package-price { color: var(--forest); font-family: "Fraunces", Georgia, serif; font-size: 34px; font-weight: 700; line-height: 1.1; }
.package-small { margin-top: 4px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.package-fit { margin: 16px 0 0; color: var(--ink); font-weight: 800; }
.package-card .check-list { margin-bottom: 24px; }
.package-card .btn { margin-top: auto; }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.support-card { background: var(--white); }
.support-card h3 { margin-top: 0; font-size: 22px; }
.support-card ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }
.support-card li { margin: 8px 0; }
.before-pay { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px; background: var(--forest); border-radius: var(--radius); box-shadow: var(--shadow); }
.before-pay h2, .before-pay p { color: var(--white); }
.before-pay p { max-width: 780px; margin-top: 12px; opacity: .88; }
.before-pay .btn { white-space: normal; text-align: center; }
.mini-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0 22px; }
.mini-package-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mini-package-card strong { display: block; color: var(--forest-2); font-size: 20px; }
.mini-package-card span { color: var(--forest); font-weight: 900; }
.section-note { max-width: 760px; margin-top: 16px; color: var(--forest-2); font-weight: 800; }
.section-note.centered { margin-left: auto; margin-right: auto; text-align: center; }
.packages-cta { background: linear-gradient(180deg, var(--mint-2), var(--white)); }
.packages-cta-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid rgba(18,62,115,.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.package-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.package-cta-card {
  display: block;
  min-height: 168px;
  padding: 24px;
  background: var(--forest);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(7,26,51,.16);
}
.package-cta-card:hover { transform: translateY(-2px); background: var(--forest-2); transition: .2s ease; }
.package-cta-card span,
.package-cta-card em { display: block; color: rgba(255,255,255,.78); font-style: normal; font-weight: 800; }
.package-cta-card strong { display: block; margin: 14px 0 8px; color: var(--white); font-family: "Fraunces", Georgia, serif; font-size: 34px; line-height: 1.05; }
.center-actions { justify-content: center; }

.site-footer { padding: 54px 0 28px; background: var(--forest-2); color: rgba(255,255,255,.76); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: var(--white); margin-bottom: 12px; }
.footer-brand .brand-logo {
  width: 132px;
  height: 114px;
}
.footer-grid h2 { margin: 0 0 12px; color: var(--white); font-family: "Manrope", Arial, sans-serif; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 7px 0; color: rgba(255,255,255,.78); }
.footer-grid a:hover { color: var(--white); }
.site-footer p { color: rgba(255,255,255,.74); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: 13px; color: rgba(255,255,255,.58); }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  max-width: 650px;
  margin: 0 auto;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 30;
}
.cookie-banner.show { display: flex; }
.cookie-banner strong { color: var(--forest-2); }
.cookie-banner a { color: var(--forest); font-weight: 900; margin-right: 12px; }

.image-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  min-height: 560px;
  padding: 20px;
  background-image:
    linear-gradient(rgba(18,62,115,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,62,115,.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.collage-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
  animation: floatImage 6.5s ease-in-out infinite;
}
.collage-img:nth-child(2) { margin-top: 70px; animation-delay: -1.5s; }
.collage-img:nth-child(3) { margin-top: -18px; animation-delay: -3s; }
.collage-img:nth-child(4) { margin-top: 52px; animation-delay: -4.5s; }

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes heroSlideShow {
  0% {
    opacity: 0;
    transform: translateX(7%) scale(1.06);
  }
  4%, 11% {
    opacity: 1;
    transform: translateX(0) scale(1.02);
  }
  16% {
    opacity: 0;
    transform: translateX(-7%) scale(1.06);
  }
  100% {
    opacity: 0;
    transform: translateX(-7%) scale(1.06);
  }
}

@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .package-hero-grid { grid-template-columns: 1fr; }
  .hero {
    padding-top: 220px;
  }
  .hero-slideshow {
    height: 300px;
  }
  .hero-slide { background-position: center top; }
  .hero-media { aspect-ratio: 16 / 10; min-height: 360px; }
  .card-grid.three, .card-grid.two, .testimonial-grid, .process-grid, .support-grid, .mini-package-grid, .package-cta-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 1024px) {
  .nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: auto;
    padding: 10px 0;
    padding-right: 60px;
  }
  .brand { max-width: calc(100% - 60px); }
  .menu-btn {
    display: inline-flex;
    position: static;
    margin-left: auto;
    transform: none;
  }
  .nav-links {
    position: absolute;
    z-index: 50;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: var(--white);
    border: 1px solid #dbe7f5;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(11, 94, 215, .12);
  }
  .nav-links.open,
  .nav-links.is-open { display: flex; }
}
@media (max-width: 680px) {
  .container { width: calc(100% - 32px); }
  h1, h2, h3, p, a, span, li { overflow-wrap: anywhere; }
  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
  }
  .topbar { font-size: 13px; }
  .nav { padding: 10px 0; }
  .site-header .brand { max-width: calc(100% - 60px); }
  .site-logo,
  .logo,
  .brand-logo,
  .brand img,
  .site-header img.logo,
  .site-header .brand img,
  .site-header img.brand-logo {
    width: auto !important;
    height: auto !important;
    max-width: 190px !important;
    max-height: 56px !important;
    object-fit: contain !important;
  }
  .menu-btn { width: 44px; height: 44px; }
  .footer-brand .brand-logo { width: 120px; height: 103px; }
  .hero h1, .page-hero h1 { font-size: clamp(30px, 8vw, 34px); line-height: 1.14; }
  .section h2, .band h2, .section-head h1, .legal h1 { font-size: 32px; line-height: 1.14; }
  .lead, .page-hero p { font-size: 17px; }
  .hero {
    padding: 185px 0 54px;
  }
  .hero-slideshow {
    height: 240px;
  }
  .hero-slide { background-position: 56% center; }
  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 24px 22px;
  }
  .actions { width: 100%; }
  .actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }
  .hero-stats, .card-grid.three, .card-grid.two, .testimonial-grid, .process-grid, .field-grid, .footer-grid, .support-grid, .mini-package-grid, .package-cta-grid { grid-template-columns: 1fr; }
  .section, .band, .legal { padding: 58px 0; }
  .package-hero { padding: 58px 0; }
  .packages-cta-panel { padding: 26px 20px; }
  .before-pay { align-items: flex-start; flex-direction: column; padding: 26px; }
  .rounded-image { aspect-ratio: 4 / 3; min-height: 260px; }
  .image-collage { min-height: auto; grid-template-columns: 1fr; padding: 0; background: transparent; }
  .collage-img, .collage-img:nth-child(n) { height: 230px; margin-top: 0; border-radius: var(--radius); }
  .cookie-banner { align-items: flex-start; flex-direction: column; }
  .btn { width: 100%; }
}
