:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --amber-50: #fffbeb;
  --amber-200: #fde68a;
  --amber-900: #78350f;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.18);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
  color: var(--slate-800);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--emerald-700);
  color: var(--white);
  padding: .75rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--emerald-100);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.logo img { height: 4rem; width: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--emerald-700); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--emerald-100);
  border-radius: 999px;
  background: var(--white);
  color: var(--slate-700);
  padding: .75rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.mobile-menu-button svg { height: 1.25rem; width: 1.25rem; }
.mobile-menu-button .hidden { display: none; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--emerald-100);
  background: var(--white);
  padding: 1.25rem 0;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav-list { display: grid; gap: .75rem; }
.mobile-nav a {
  border-radius: 1rem;
  padding: .85rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--emerald-50); color: var(--emerald-700); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .9rem 1.5rem;
  font-size: .875rem;
  font-weight: 800;
  transition: all .25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--emerald-700); color: var(--white); }
.btn-primary:hover { background: var(--emerald-800); }
.btn-hero { background: var(--emerald-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-hero:hover { background: #10b981; }
.btn-ghost-dark { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.10); color: var(--white); backdrop-filter: blur(8px); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.16); }
.btn-white { background: var(--white); color: var(--emerald-800); }
.btn-white:hover { background: var(--emerald-50); }

.hero-cover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--slate-900);
  color: var(--white);
}
.hero-cover-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2,6,23,1), rgba(2,6,23,.86), rgba(2,6,23,.35));
}
.hero-content { max-width: 48rem; padding: 4rem 0 6rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  font-size: .875rem;
  color: var(--slate-300);
}
.breadcrumb a:hover { color: var(--white); }
.kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: var(--emerald-100);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.kicker-light {
  color: var(--emerald-700);
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
}
h1, h2, h3, p { margin-top: 0; }
.hero-title {
  margin: 2rem 0 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.hero-text {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  color: #e2e8f0;
  font-size: 1.125rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

.section { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-light { background: var(--slate-50); }
.section-green { background: var(--emerald-50); }
.section-dark { background: var(--slate-900); color: var(--white); }
.section-header { max-width: 42rem; }
.section-title {
  margin: 1rem 0 0;
  color: var(--slate-900);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.section-dark .section-title { color: var(--white); }
.section-text {
  margin: 1.25rem 0 0;
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.8;
}
.section-dark .section-text { color: var(--slate-300); }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.two-col-balanced { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.two-col-narrow { display: grid; grid-template-columns: .35fr .65fr; gap: 3rem; align-items: start; }
.sticky-col { position: sticky; top: 7rem; }

.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; margin-top: 3rem; }
.choice-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--emerald-100);
  border-radius: 2rem;
  background: var(--emerald-50);
  padding: 2rem;
  color: var(--slate-900);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.choice-card:hover {
  transform: translateY(-.35rem);
  border-color: var(--slate-900);
  background: var(--slate-900);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.choice-number {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--emerald-700);
  color: var(--white);
  font-size: .875rem;
  font-weight: 800;
  transition: background .3s ease, color .3s ease;
}
.choice-card:hover .choice-number { background: var(--white); color: var(--emerald-700); }
.choice-title { margin: 1.5rem 0 0; font-size: 1.5rem; line-height: 1.2; letter-spacing: -.02em; }
.choice-text { margin: 1rem 0 0; color: var(--slate-700); font-size: .95rem; line-height: 1.75; transition: color .3s ease; }
.choice-card:hover .choice-text { color: var(--slate-200); }
.choice-link { margin-top: 2rem; color: var(--emerald-800); font-size: .875rem; font-weight: 800; transition: color .3s ease; }
.choice-card:hover .choice-link { color: var(--emerald-200); }

.stack { display: grid; gap: 1rem; }
.info-card {
  border-radius: 1.75rem;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover, .step-card:hover { transform: translateY(-.5rem); box-shadow: var(--shadow-xl); }
.info-card h3, .step-card h3 { margin: 0; color: var(--slate-900); font-size: 1.125rem; }
.info-card p, .step-card p { margin: .75rem 0 0; color: var(--slate-600); font-size: .875rem; line-height: 1.75; }

.signal-table { overflow: hidden; border: 1px solid var(--slate-200); border-radius: 2rem; background: var(--white); box-shadow: var(--shadow-sm); }
.signal-row { display: grid; grid-template-columns: .35fr .65fr; border-bottom: 1px solid var(--slate-200); }
.signal-row:last-child { border-bottom: 0; }
.signal-label { background: var(--slate-50); color: var(--slate-900); padding: 1.5rem; font-weight: 800; }
.signal-copy { padding: 1.5rem; color: var(--slate-600); font-size: .875rem; line-height: 1.75; }

.care-stack { display: grid; gap: 1.25rem; }
.care-card { border-radius: 2rem; padding: 2rem; box-shadow: var(--shadow-xl); }
.care-card-white { background: var(--white); color: var(--slate-900); }
.care-card-dark { background: rgba(255,255,255,.10); color: var(--white); border: 1px solid rgba(255,255,255,.10); }
.care-card-inner { display: flex; gap: 1.5rem; justify-content: space-between; align-items: flex-start; }
.care-card h3 { margin: .75rem 0 0; font-size: 1.5rem; }
.care-card p { margin: 1rem 0 0; font-size: .875rem; line-height: 1.75; }
.care-card-white p { color: var(--slate-600); }
.care-card-dark p { color: var(--slate-200); }
.care-list { min-width: 260px; margin: 0; border-radius: 1.5rem; padding: 1.25rem; list-style: none; font-size: .875rem; line-height: 1.75; }
.care-list-green { background: var(--emerald-50); color: var(--slate-700); }
.care-list-dark { background: rgba(255,255,255,.10); color: var(--slate-100); }

.parent-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.step-list { display: grid; gap: 1rem; }
.step-card { border: 1px solid var(--slate-200); border-radius: 1.75rem; background: var(--white); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.step-label { color: var(--emerald-700); font-size: .875rem; font-weight: 800; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.5rem; }
.faq-list { display: grid; gap: 1rem; }
details { border: 1px solid var(--slate-200); border-radius: 1.5rem; background: var(--white); padding: 1.5rem; box-shadow: var(--shadow-sm); }
summary { cursor: pointer; color: var(--slate-900); font-size: 1.125rem; font-weight: 800; }
details p { margin: 1rem 0 0; color: var(--slate-600); font-size: .875rem; line-height: 1.75; }

.form-panel { overflow: hidden; border-radius: 2.25rem; background: var(--emerald-800); box-shadow: var(--shadow-xl); display: grid; grid-template-columns: .9fr 1.1fr; }
.form-intro { padding: 3rem; color: var(--white); }
.form-intro h2 { margin: 1rem 0 0; font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.12; letter-spacing: -.03em; }
.form-intro p { margin: 1.25rem 0 0; color: var(--emerald-50); font-size: 1.125rem; line-height: 1.8; }
.notice { margin-top: 2rem; border: 1px solid rgba(255,255,255,.15); border-radius: 1.5rem; background: rgba(255,255,255,.10); color: var(--emerald-50); padding: 1.5rem; font-size: .875rem; line-height: 1.75; }
.form-box { background: var(--white); padding: 3rem; }
.form-grid { display: grid; gap: 1rem; }
.form-label { display: grid; gap: .5rem; color: var(--slate-700); font-size: .875rem; font-weight: 700; }
.form-field {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  background: var(--white);
  color: var(--slate-900);
  padding: .85rem 1rem;
  outline: none;
}
.form-field:focus { border-color: var(--emerald-600); }
.form-field:user-invalid { border-color: #f59e0b; }
textarea.form-field { min-height: 130px; resize: vertical; }
.form-help { color: var(--slate-500); font-size: .875rem; line-height: 1.6; }
.form-feedback { display: none; border-radius: 1rem; padding: .85rem 1rem; font-size: .875rem; }
.form-feedback.show { display: block; }
.form-feedback.success { border: 1px solid var(--emerald-200); background: var(--emerald-50); color: var(--emerald-800); }
.form-feedback.error { border: 1px solid var(--amber-200); background: var(--amber-50); color: var(--amber-900); }

.site-footer { border-top: 1px solid var(--slate-200); background: var(--slate-900); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr .8fr .8fr .8fr; gap: 2.5rem; padding: 4rem 0; }
.footer-brand { font-size: 1.5rem; font-weight: 800; }
.footer-text, .footer-links, .footer-contact { color: var(--slate-300); font-size: .875rem; line-height: 1.75; }
.footer-heading { color: var(--emerald-300); font-size: .75rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.footer-links { display: grid; gap: .5rem; margin-top: 1rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .two-col, .two-col-balanced, .two-col-narrow, .faq-grid, .form-panel { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 2rem, var(--container)); }
  .logo img { height: 3.5rem; }
  .header-inner { gap: .75rem; }
  .mobile-nav-list { max-height: calc(100vh - 7rem); overflow-y: auto; }
  .mobile-nav a { border-radius: .85rem; }
  .btn { width: 100%; min-height: 3rem; padding-inline: 1.1rem; text-align: center; }
  .hero-content { padding: 3rem 0 4rem; }
  .hero-title { font-size: 2.35rem; letter-spacing: 0; }
  .hero-text { font-size: 1rem; line-height: 1.7; }
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.9rem; letter-spacing: 0; }
  .section-text { font-size: 1rem; line-height: 1.7; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .parent-grid { grid-template-columns: 1fr; }
  .signal-row { grid-template-columns: 1fr; }
  .care-card-inner { flex-direction: column; }
  .care-list { min-width: 0; width: 100%; }
  .form-panel { border-radius: 1.5rem; }
  .form-intro, .form-box { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
}

/* Ambulante hulpverlening pagina */
.hero-split { background: var(--white); }
.hero-split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2.5rem;
  align-items: stretch;
  padding: 4rem 0 6rem;
}
.hero-split-content { display: flex; flex-direction: column; justify-content: center; }
.hero-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid var(--emerald-200);
  background: var(--emerald-50);
  color: var(--emerald-800);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 700;
}
.hero-split-title {
  margin: 1.5rem 0 0;
  color: var(--slate-900);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.hero-split-text {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.8;
}
.hero-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--emerald-100);
  border-radius: 2.25rem;
  background: var(--emerald-50);
  box-shadow: 0 20px 70px rgba(16,185,129,.12);
}
.hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-media-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.88);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.hero-media-caption strong {
  display: block;
  color: var(--emerald-700);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-media-caption span {
  display: block;
  margin-top: .5rem;
  color: var(--slate-700);
  font-size: .875rem;
  line-height: 1.65;
}
.stat-strip {
  border-top: 1px solid var(--emerald-100);
  border-bottom: 1px solid var(--emerald-100);
  background: rgba(236,253,245,.7);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  padding: 2rem 0;
}
.stat-card {
  border-radius: 1.25rem;
  background: var(--white);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.stat-card strong {
  display: block;
  color: var(--emerald-700);
  font-size: .875rem;
}
.stat-card span {
  display: block;
  margin-top: .5rem;
  color: var(--slate-600);
  font-size: .875rem;
  line-height: 1.6;
}
.content-layout {
  display: grid;
  grid-template-columns: .32fr .68fr;
  gap: 3rem;
  align-items: start;
}
.page-nav-card {
  position: sticky;
  top: 7rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.75rem;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.page-nav-card p {
  margin: 0;
  color: var(--emerald-700);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.page-nav-card nav { display: grid; gap: .75rem; margin-top: 1.25rem; }
.page-nav-card a { color: var(--slate-600); font-size: .875rem; }
.page-nav-card a:hover { color: var(--emerald-700); }
.content-stack { display: grid; gap: 5rem; }
.text-frame {
  border: 1px solid var(--slate-200);
  border-radius: 2rem;
  background: var(--slate-50);
  padding: 2rem;
}
.text-frame p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.85;
}
.text-frame p + p { margin-top: 1.25rem; }
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.soft-card {
  border: 1px solid var(--slate-200);
  border-radius: 1.75rem;
  background: var(--white);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.soft-card:hover { transform: translateY(-.5rem); box-shadow: var(--shadow-xl); }
.soft-card h3 { margin: 0; color: var(--slate-900); font-size: 1.125rem; }
.soft-card p { margin: .75rem 0 0; color: var(--slate-600); font-size: .875rem; line-height: 1.75; }
.soft-card a { display: inline-block; margin-top: 1.25rem; color: var(--emerald-700); font-size: .875rem; font-weight: 800; }
.approach-panel {
  overflow: hidden;
  border-radius: 2.25rem;
  background: var(--emerald-800);
  color: var(--white);
}
.approach-panel-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; }
.approach-intro, .approach-items { padding: 2.5rem; }
.approach-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  border-left: 1px solid rgba(255,255,255,.12);
}
.approach-item { border-radius: 1.5rem; background: rgba(255,255,255,.10); padding: 1.5rem; }
.approach-item h3 { margin: 0; color: var(--white); font-size: 1rem; }
.approach-item p { margin: .75rem 0 0; color: var(--emerald-50); font-size: .875rem; line-height: 1.75; }
.timeline-box {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 2rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-top: 2.5rem;
}
.timeline-row {
  display: grid;
  grid-template-columns: .2fr .8fr;
  gap: 1rem;
  padding: 1.75rem;
  border-bottom: 1px solid var(--slate-200);
}
.timeline-row:last-child { border-bottom: 0; }
.timeline-step { color: var(--emerald-700); font-size: .875rem; font-weight: 800; }
.timeline-row h3 { margin: 0; color: var(--slate-900); font-size: 1.125rem; }
.timeline-row p { margin: .5rem 0 0; color: var(--slate-600); font-size: .875rem; line-height: 1.75; }
@media (max-width: 1080px) {
  .hero-split-grid, .content-layout, .approach-panel-grid { grid-template-columns: 1fr; }
  .page-nav-card { position: static; }
  .approach-items { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 720px) {
  .hero-split-grid { padding: 3rem 0 4rem; }
  .hero-media { min-height: 320px; border-radius: 1.5rem; }
  .hero-media-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 1.25rem;
    padding: 1rem;
  }
  .stat-card, .soft-card, .text-frame, .page-nav-card, .offer-card, .quick-card, .review-card, .choice-card {
    border-radius: 1.25rem;
    padding: 1.35rem;
  }
  .stat-grid, .card-grid-2, .approach-items { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; }
}

/* Homepage */
.home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-50), var(--white), #f0fdfa);
}
.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: .55;
  pointer-events: none;
}
.home-hero::before {
  left: -5rem;
  top: 3rem;
  width: 20rem;
  height: 20rem;
  background: var(--emerald-100);
}
.home-hero::after {
  right: -3rem;
  top: 0;
  width: 22rem;
  height: 22rem;
  background: #ccfbf1;
}
.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 7rem;
}
.home-hero-title {
  margin: 1.5rem 0 0;
  color: var(--slate-900);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.home-hero-text {
  margin: 1.5rem 0 0;
  max-width: 44rem;
  color: var(--slate-600);
  font-size: 1.15rem;
  line-height: 1.85;
}
.home-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--emerald-100);
  border-radius: 2.5rem;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(16,185,129,.14);
}
.home-hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home-hero-card {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border-radius: 1.75rem;
  background: rgba(255,255,255,.88);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.home-hero-card strong {
  display: block;
  color: var(--emerald-700);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.home-hero-card span {
  display: block;
  margin-top: .5rem;
  color: var(--slate-700);
  font-size: .9rem;
  line-height: 1.7;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.quick-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--emerald-100);
  border-radius: 2rem;
  background: var(--emerald-50);
  padding: 2rem;
  color: var(--slate-900);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.quick-card:hover {
  transform: translateY(-.5rem);
  border-color: var(--slate-900);
  background: var(--slate-900);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.quick-card h3 {
  margin: 1rem 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}
.quick-card p {
  margin: 1rem 0 0;
  color: var(--slate-700);
  font-size: .95rem;
  line-height: 1.75;
  transition: color .3s ease;
}
.quick-card:hover p { color: var(--slate-200); }
.quick-card a {
  margin-top: 1.5rem;
  color: var(--emerald-800);
  font-size: .875rem;
  font-weight: 800;
  transition: color .3s ease;
}
.quick-card:hover a { color: var(--emerald-200); }
.icon-dot {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--emerald-700);
  color: var(--white);
  font-weight: 800;
}
.home-band {
  background: var(--slate-900);
  color: var(--white);
}
.home-band-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.home-band .section-title { color: var(--white); }
.home-band .section-text { color: var(--slate-300); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.feature-card {
  border-radius: 1.75rem;
  background: rgba(255,255,255,.10);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .3s ease, background .3s ease;
}
.feature-card:hover {
  transform: translateY(-.5rem);
  background: rgba(255,255,255,.14);
}
.feature-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}
.feature-card p {
  margin: .75rem 0 0;
  color: var(--slate-200);
  font-size: .875rem;
  line-height: 1.75;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.offer-card {
  border: 1px solid var(--slate-200);
  border-radius: 2rem;
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.offer-card:hover {
  transform: translateY(-.5rem);
  box-shadow: var(--shadow-xl);
}
.offer-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 1.35rem;
}
.offer-card p {
  margin: 1rem 0 0;
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.75;
}
.offer-card a {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--emerald-700);
  font-size: .875rem;
  font-weight: 800;
}
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  min-height: 440px;
  overflow: hidden;
  border-radius: 2.25rem;
  border: 1px solid var(--emerald-100);
  box-shadow: var(--shadow-xl);
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.review-card {
  border: 1px solid var(--slate-200);
  border-radius: 2rem;
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.review-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.8;
}
.review-card strong {
  display: block;
  margin-top: 1.5rem;
  color: var(--slate-900);
}
@media (max-width: 1080px) {
  .home-hero-grid,
  .home-band-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid,
  .offer-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .home-hero-grid {
    padding: 3rem 0 4rem;
  }
  .home-hero-media {
    min-height: 320px;
    border-radius: 1.5rem;
  }
  .home-hero-card {
    position: static;
    margin: 1rem;
    border-radius: 1.25rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .about-image,
  .about-image img {
    min-height: 300px;
    border-radius: 1.5rem;
  }
}
