:root {
  --green-950: #0b2d20;
  --green-900: #143e2c;
  --green-850: #184834;
  --green-800: #1f5a40;
  --green-700: #2d7351;
  --green-600: #3a8862;
  --lime: #acd52e;
  --lime-strong: #98c21b;
  --lime-soft: #eff7d9;
  --ink: #242a27;
  --muted: #66716b;
  --cream: #f4f0e7;
  --cream-soft: #faf8f3;
  --sand: #e8dfcf;
  --white: #fff;
  --line: rgba(20, 62, 44, .15);
  --line-light: rgba(255, 255, 255, .18);
  --danger: #9d382f;
  --success: #1d7449;
  --shadow-sm: 0 10px 30px rgba(11, 45, 32, .08);
  --shadow-md: 0 24px 64px rgba(11, 45, 32, .14);
  --shadow-lg: 0 36px 96px rgba(5, 28, 20, .25);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 124px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
fieldset { min-width: 0; }
::selection { color: var(--green-950); background: var(--lime); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
[hidden] { display: none !important; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section-cream { background: var(--cream); }
.section-soft { background: var(--cream-soft); }
.section-green { color: var(--white); background: var(--green-900); }
.center-action { display: flex; justify-content: center; margin-top: 42px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.icon { width: 22px; height: 22px; flex: 0 0 auto; }

.btn {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { width: 20px; height: 20px; }
.btn-primary { color: var(--green-950); background: var(--lime); box-shadow: 0 12px 30px rgba(172, 213, 46, .18); }
.btn-primary:hover { background: #bce63d; box-shadow: 0 16px 34px rgba(172, 213, 46, .25); }
.btn-secondary { color: var(--white); background: var(--green-800); }
.btn-secondary:hover { background: var(--green-700); }
.btn-outline, .btn-glass { color: var(--white); border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .08); backdrop-filter: blur(8px); }
.btn-outline:hover, .btn-glass:hover { color: var(--green-950); background: var(--white); border-color: var(--white); }
.btn-outline-dark { color: var(--green-900); border-color: rgba(20, 62, 44, .34); background: transparent; }
.btn-outline-dark:hover { color: var(--white); background: var(--green-900); border-color: var(--green-900); }
.btn-white { color: var(--green-900); background: var(--white); }
.btn-white:hover { background: var(--cream-soft); }
.btn-sm { min-height: 43px; padding: 9px 17px; font-size: 14px; }
.btn-lg { min-height: 60px; padding: 16px 27px; }
.btn-block { width: 100%; }
.text-link, .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  font-weight: 760;
}
.text-link .icon, .card-link .icon { width: 18px; transition: transform .2s ease; }
.text-link:hover .icon, .card-link:hover .icon { transform: translateX(4px); }

.emergency-bar { position: relative; z-index: 70; color: rgba(255, 255, 255, .88); background: var(--green-950); font-size: 13px; }
.emergency-inner { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.emergency-message, .emergency-actions { display: flex; align-items: center; gap: 10px; }
.emergency-message .icon { width: 16px; height: 16px; color: var(--lime); }
.emergency-message strong { color: var(--white); }
.emergency-message span { opacity: .78; }
.emergency-actions a { font-weight: 730; color: var(--white); }
.emergency-actions a + a { padding-left: 13px; border-left: 1px solid rgba(255, 255, 255, .25); color: var(--lime); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 83px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(20, 62, 44, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, height .2s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(11, 45, 32, .09); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { width: 227px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: stretch; gap: 3px; margin-left: auto; height: 100%; }
.nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border: 0;
  color: #36413b;
  background: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--green-800); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-item { position: relative; height: 100%; }
.nav-dropdown {
  position: absolute;
  top: calc(100% - 3px);
  left: 0;
  z-index: 20;
  width: 300px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow-md);
  transition: .18s ease;
}
.nav-dropdown a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 650; }
.nav-dropdown a:hover { color: var(--green-800); background: var(--lime-soft); }
.nav-dropdown .dropdown-all { margin-top: 5px; color: var(--green-800); border-top: 1px solid var(--line); border-radius: 0; }
.nav-dropdown .icon { width: 17px; }
.nav-item:hover > .nav-dropdown, .nav-item.open > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-menu { position: relative; }
.language-menu > button {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  color: var(--green-900);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 780;
}
.language-menu > button:hover { border-color: var(--line); background: var(--cream-soft); }
.language-menu .icon { width: 18px; height: 18px; }
.language-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 50;
  width: 208px;
  padding: 9px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: .18s ease;
}
.language-menu.open .language-popover { opacity: 1; visibility: visible; transform: translateY(0); }
.language-popover a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 11px; border-radius: 9px; }
.language-popover a:hover, .language-popover a[aria-current="page"] { background: var(--lime-soft); }
.language-popover small { color: var(--muted); font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 0; border-radius: 11px; color: var(--green-900); background: var(--cream-soft); }
.menu-toggle span { width: 22px; height: 2px; background: currentColor; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow, .section-kicker, .card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow > span:first-child { width: 28px; height: 2px; background: var(--lime); }
.eyebrow.light, .section-kicker.light { color: var(--lime); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 {
  max-width: 760px;
  margin: 11px 0 12px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.section-heading p { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; }
.section-heading.centered p { margin-inline: auto; }
.section-green .section-heading h2, .light-copy .section-heading h2 { color: var(--white); }
.section-green .section-heading p, .light-copy .section-heading p { color: rgba(255, 255, 255, .76); }

.cover-picture, .cover-picture img { width: 100%; height: 100%; }
.cover-picture img { object-fit: cover; }
.hero-home-v2 { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--green-950); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(7, 31, 22, .9) 0%, rgba(7, 31, 22, .73) 43%, rgba(7, 31, 22, .22) 75%, rgba(7, 31, 22, .13) 100%), linear-gradient(0deg, rgba(7, 31, 22, .42), transparent 45%); }
.hero-home-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 720px) minmax(280px, 1fr); align-items: end; gap: 70px; padding-top: 92px; padding-bottom: 92px; }
.hero-copy h1, .page-hero-content h1 {
  margin: 18px 0 21px;
  font-family: var(--serif);
  font-size: clamp(50px, 6.2vw, 82px);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.04em;
}
.hero-copy h1 em, .page-hero-content h1 em { color: var(--lime); font-style: italic; }
.hero-copy > p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .86); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; color: rgba(255, 255, 255, .8); font-size: 13px; font-weight: 680; }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust .icon { width: 17px; height: 17px; color: var(--lime); }
.hero-aside { align-self: end; display: flex; justify-content: flex-end; }
.hero-help-card { max-width: 330px; padding: 28px; background: rgba(255, 255, 255, .94); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); }
.help-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 18px; color: var(--green-900); background: var(--lime); border-radius: 50%; }
.help-icon .icon { width: 24px; height: 24px; }
.hero-help-card small { display: block; margin-bottom: 6px; color: var(--green-700); font-size: 12px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.hero-help-card strong { display: block; color: var(--green-950); font-family: var(--serif); font-size: 24px; line-height: 1.28; }
.hero-help-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--green-800); font-size: 14px; font-weight: 800; }
.hero-help-card a .icon { width: 18px; }

.trust-strip { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 105px; display: flex; align-items: center; gap: 14px; padding: 22px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid > div > .icon { width: 28px; height: 28px; color: var(--green-700); }
.trust-grid span { display: flex; flex-direction: column; line-height: 1.35; }
.trust-grid strong { color: var(--green-950); font-size: 14px; }
.trust-grid small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.page-hero-photo { position: relative; min-height: 590px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--green-950); }
.page-hero-media, .page-hero-shade { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { background: linear-gradient(90deg, rgba(7, 31, 22, .92), rgba(7, 31, 22, .69) 52%, rgba(7, 31, 22, .25) 100%), linear-gradient(0deg, rgba(7, 31, 22, .45), transparent 55%); }
.page-hero-content { position: relative; z-index: 2; padding-top: 74px; padding-bottom: 74px; }
.page-hero-content h1 { max-width: 850px; font-size: clamp(46px, 5vw, 70px); }
.page-hero-content > p { max-width: 720px; margin: 0; color: rgba(255, 255, 255, .84); font-size: 20px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 29px; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 13px 24px; margin-top: 28px; color: rgba(255, 255, 255, .76); font-size: 13px; font-weight: 650; }
.page-hero-meta span { display: flex; align-items: center; gap: 7px; }
.page-hero-meta .icon { width: 17px; height: 17px; color: var(--lime); }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 25px; color: rgba(255, 255, 255, .65); font-size: 12px; font-weight: 720; }
.breadcrumbs a:hover { color: var(--lime); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid article { position: relative; min-height: 245px; padding: 31px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.process-grid article > span { display: inline-grid; width: 44px; height: 44px; place-items: center; margin-bottom: 32px; color: var(--green-900); background: var(--lime-soft); border-radius: 50%; font-size: 12px; font-weight: 850; }
.process-grid h3 { margin: 0 0 8px; color: var(--green-950); font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1.18; }
.process-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.section-green .process-grid article { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); box-shadow: none; }
.section-green .process-grid article > span { color: var(--green-950); background: var(--lime); }
.section-green .process-grid h3 { color: var(--white); }
.section-green .process-grid p { color: rgba(255, 255, 255, .72); }

.image-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.image-service-card { display: grid; grid-template-columns: 46% 1fr; min-height: 340px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.image-service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.image-service-media, .image-service-media picture, .image-service-media img { width: 100%; height: 100%; }
.image-service-media img { object-fit: cover; }
.image-service-card > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 31px; }
.image-service-card h3 { margin: 9px 0 10px; color: var(--green-950); font-family: var(--serif); font-size: 29px; font-weight: 600; line-height: 1.12; }
.image-service-card p { margin: 0 0 17px; color: var(--muted); font-size: 15px; }

.urgent-panel { padding: 66px 0; color: var(--white); background: var(--green-950); }
.urgent-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
.urgent-grid h2 { margin: 8px 0 7px; font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.1; }
.urgent-grid p { max-width: 700px; margin: 0; color: rgba(255, 255, 255, .74); }
.urgent-actions { display: flex; align-items: center; gap: 12px; }

.split-feature { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(48px, 7vw, 92px); }
.split-feature.reverse .feature-copy { order: 2; }
.split-feature.reverse .feature-image { order: 1; }
.feature-copy .section-heading { margin-bottom: 25px; }
.feature-copy > p { color: var(--muted); }
.feature-image { position: relative; overflow: hidden; min-height: 480px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.feature-image.tall { min-height: 570px; }
.feature-image picture, .feature-image img { width: 100%; height: 100%; }
.feature-image img { position: absolute; inset: 0; object-fit: cover; }
.image-note { position: absolute; right: 22px; bottom: 22px; display: flex; flex-direction: column; padding: 18px 21px; color: var(--green-950); background: var(--lime); border-radius: 16px; box-shadow: var(--shadow-md); }
.image-note strong { font-family: var(--serif); font-size: 31px; line-height: 1; }
.image-note span { margin-top: 3px; font-size: 12px; font-weight: 780; }
.feature-actions, .download-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.mini-plan-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 26px; }
.mini-plan-row > div { display: flex; flex-direction: column; padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.mini-plan-row strong { color: var(--green-900); font-size: 13px; }
.mini-plan-row span { color: var(--ink); font-family: var(--serif); font-size: 22px; }

.check-list { display: grid; gap: 11px; padding: 0; margin: 22px 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check-list .icon { width: 21px; height: 21px; margin-top: 2px; padding: 3px; color: var(--green-950); background: var(--lime); border-radius: 50%; }
.light-list li { color: rgba(255, 255, 255, .84); }
.light-list .icon { color: var(--green-950); }

.area-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.area-card-photo { position: relative; min-height: 390px; overflow: hidden; color: var(--white); border-radius: var(--radius); background: var(--green-900); box-shadow: var(--shadow-sm); }
.area-thumb, .area-thumb picture, .area-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; }
.area-thumb img { object-fit: cover; transition: transform .5s ease; }
.area-card-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 31, 22, .92), rgba(6, 31, 22, .08) 68%); }
.area-card-photo:hover .area-thumb img { transform: scale(1.045); }
.area-card-overlay { position: absolute; inset: auto 0 0; z-index: 2; padding: 27px; }
.area-card-overlay > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--green-950); background: var(--lime); border-radius: 50%; }
.area-card-overlay > span .icon { width: 18px; }
.area-card-overlay h3 { margin: 13px 0 3px; font-family: var(--serif); font-size: 31px; font-weight: 560; }
.area-card-overlay p { margin: 0 0 8px; color: rgba(255, 255, 255, .75); font-size: 13px; line-height: 1.5; }
.area-card-overlay strong { display: flex; align-items: center; gap: 7px; color: var(--lime); font-size: 13px; }
.area-card-overlay strong .icon { width: 16px; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }
.plan-card { position: relative; display: flex; flex-direction: column; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.plan-card.popular { border: 2px solid var(--green-700); transform: translateY(-9px); box-shadow: var(--shadow-md); }
.popular-label { position: absolute; top: 0; right: 26px; padding: 7px 14px; color: var(--green-950); background: var(--lime); border-radius: 0 0 10px 10px; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.plan-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--green-900); background: var(--lime-soft); border-radius: 50%; }
.plan-icon .icon { width: 23px; height: 23px; }
.plan-card-top h3 { margin: 18px 0 7px; color: var(--green-950); font-family: var(--serif); font-size: 32px; font-weight: 600; line-height: 1.1; }
.plan-card-top p { min-height: 80px; margin: 0; color: var(--muted); font-size: 14px; }
.plan-price { display: flex; flex-direction: column; gap: 2px; margin: 23px 0 8px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-price small { color: var(--muted); font-size: 11px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.plan-price strong { color: var(--green-900); font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1.05; }
.plan-price span { color: var(--muted); font-size: 12px; }
.plan-card .check-list { flex: 1; font-size: 14px; }
.plan-card-actions { display: grid; gap: 14px; margin-top: auto; padding-top: 15px; }
.plan-card-actions .text-link { justify-content: center; font-size: 12px; }
.notice-card { display: flex; align-items: flex-start; gap: 16px; margin-top: 35px; padding: 21px 24px; color: var(--green-950); background: var(--lime-soft); border: 1px solid rgba(152, 194, 27, .28); border-radius: 15px; }
.notice-card > .icon { width: 27px; height: 27px; color: var(--green-700); }
.notice-card strong { display: block; }
.notice-card p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }

.table-scroll { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-sm); }
.payment-table { width: 100%; min-width: 850px; border-collapse: collapse; font-size: 14px; }
.payment-table th, .payment-table td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.payment-table thead th { position: sticky; top: 0; color: var(--white); background: var(--green-900); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.payment-table tbody th { color: var(--green-900); font-weight: 780; }
.payment-table tbody tr:nth-child(5n) td, .payment-table tbody tr:nth-child(5n) th { border-bottom: 2px solid rgba(20, 62, 44, .28); }
.payment-table tbody tr:last-child td, .payment-table tbody tr:last-child th { border-bottom: 0; }
.quote-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.quote-panel h2 { margin: 8px 0; color: var(--green-950); font-family: var(--serif); font-size: 38px; font-weight: 550; }
.quote-panel p { max-width: 760px; margin: 0; color: var(--muted); }

.cta-band { padding: 76px 0; color: var(--white); background: linear-gradient(110deg, var(--green-900), var(--green-800)); }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
.cta-band h2 { margin: 0 0 7px; font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.1; }
.cta-band p { max-width: 720px; margin: 0; color: rgba(255, 255, 255, .73); }
.cta-actions { display: flex; gap: 12px; }

.content-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 55px; align-items: start; }
.content-main > h2 { margin: 65px 0 28px; color: var(--green-950); font-family: var(--serif); font-size: 42px; font-weight: 550; }
.included-card { display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 34px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.large-icon { width: 74px; height: 74px; display: grid; place-items: center; color: var(--green-900); background: var(--lime); border-radius: 50%; }
.large-icon .icon { width: 33px; height: 33px; }
.feature-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 20px; padding: 0; margin: 0; list-style: none; }
.feature-list-grid li { display: flex; gap: 9px; color: #39443e; font-size: 14px; }
.feature-list-grid .icon { width: 19px; height: 19px; flex: 0 0 auto; padding: 3px; color: var(--green-950); background: var(--lime); border-radius: 50%; }
.content-aside { position: sticky; top: 120px; }
.call-panel { padding: 27px; background: var(--green-900); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.call-panel > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--green-950); background: var(--lime); border-radius: 50%; }
.call-panel h2 { margin: 18px 0 7px; font-family: var(--serif); font-size: 31px; font-weight: 550; }
.call-panel p { margin: 0 0 20px; color: rgba(255, 255, 255, .72); font-size: 14px; }
.call-panel .btn + .btn { margin-top: 10px; color: var(--white); border-color: rgba(255, 255, 255, .38); }
.call-panel .btn + .btn:hover { color: var(--green-900); }

.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; border: 0; color: var(--green-950); background: transparent; text-align: left; font-weight: 760; }
.faq-plus { width: 31px; height: 31px; display: grid; flex: 0 0 auto; place-items: center; color: var(--green-900); background: var(--lime-soft); border-radius: 50%; font-size: 21px; font-weight: 400; transition: transform .2s ease; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 22px; color: var(--muted); font-size: 15px; transition: padding .22s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 22px 21px; }

.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.guide-card { position: relative; padding: 35px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.guide-card > span { display: inline-grid; width: 44px; height: 44px; place-items: center; color: var(--green-900); background: var(--lime); border-radius: 50%; font-size: 12px; font-weight: 850; }
.guide-card h2 { margin: 22px 0 16px; color: var(--green-950); font-family: var(--serif); font-size: 31px; font-weight: 560; }
.factor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.factor-card { padding: 27px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.factor-card > span { width: 49px; height: 49px; display: grid; place-items: center; color: var(--green-900); background: var(--lime-soft); border-radius: 50%; }
.factor-card h2 { margin: 18px 0 8px; color: var(--green-950); font-family: var(--serif); font-size: 25px; font-weight: 560; line-height: 1.15; }
.factor-card p { margin: 0; color: var(--muted); font-size: 14px; }
.quote-questions { margin-top: 40px; padding: 36px; color: var(--white); background: var(--green-900); border-radius: var(--radius); }
.quote-questions h2 { margin: 0 0 15px; font-family: var(--serif); font-size: 34px; font-weight: 550; }
.guide-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.guide-links > a { position: relative; min-height: 310px; overflow: hidden; color: var(--white); border-radius: var(--radius); }
.guide-links picture, .guide-links img { width: 100%; height: 100%; }
.guide-links img { object-fit: cover; transition: transform .4s ease; }
.guide-links > a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 31, 22, .88), transparent 75%); }
.guide-links > a:hover img { transform: scale(1.04); }
.guide-links > a > span { position: absolute; left: 25px; right: 25px; bottom: 22px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.guide-links strong { font-family: var(--serif); font-size: 25px; line-height: 1.15; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center; display: block; }
.team-card div { padding: 20px; }
.team-card h3 { margin: 0; color: var(--green-950); font-family: var(--serif); font-size: 27px; font-weight: 600; }
.team-card p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }

/* Family reviews, team preview and family information centre */
.reviews-section { background: var(--white); }
.reviews-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); align-items: end; gap: 42px; margin-bottom: 34px; }
.reviews-heading .section-heading { margin-bottom: 0; }
.rating-badge { padding: 24px 26px; color: var(--green-950); background: var(--lime-soft); border: 1px solid rgba(152, 194, 27, .34); border-radius: 18px; }
.rating-badge strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.rating-badge small { display: block; margin-top: 8px; color: var(--muted); line-height: 1.45; }
.review-stars { color: #769710; font-size: 19px; letter-spacing: .12em; }

.live-review-badge { position: relative; padding-left: 48px; }
.live-dot { position: absolute; left: 25px; top: 30px; width: 10px; height: 10px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(152, 194, 27, .16); }
.trustindex-widget-shell { min-height: 180px; padding: 24px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trustindex-widget-shell > * { max-width: 100%; }
.trustindex-noscript { margin: 0; color: var(--muted); }

.family-review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.family-review-card { display: flex; min-width: 0; min-height: 265px; flex-direction: column; margin: 0; padding: 27px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.family-review-card blockquote { flex: 1; margin: 18px 0 24px; color: var(--green-950); font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.42; }
.family-review-card figcaption { display: flex; flex-direction: column; padding-top: 16px; border-top: 1px solid var(--line); }
.family-review-card figcaption strong { color: var(--green-900); font-size: 13px; }
.family-review-card figcaption span { margin-top: 2px; color: var(--muted); font-size: 12px; }

.team-home-grid { grid-template-columns: repeat(4, 1fr); }
.team-card-home img { aspect-ratio: 1 / 1; }
.team-home-section .center-action { margin-top: 32px; }

.family-resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.family-resource-card { overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.family-resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.family-resource-image { position: relative; height: 220px; overflow: hidden; background: var(--green-900); }
.family-resource-image picture, .family-resource-image img { width: 100%; height: 100%; }
.family-resource-image img { object-fit: cover; transition: transform .45s ease; }
.family-resource-card:hover .family-resource-image img { transform: scale(1.035); }
.family-resource-copy { padding: 25px 25px 27px; }
.family-resource-copy > span { color: var(--green-700); font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.family-resource-copy h3 { margin: 9px 0 10px; color: var(--green-950); font-family: var(--serif); font-size: 28px; font-weight: 560; line-height: 1.08; }
.family-resource-copy p { display: -webkit-box; overflow: hidden; min-height: 66px; margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.family-resource-copy strong { display: flex; align-items: center; gap: 7px; color: var(--green-800); font-size: 12px; }
.family-resource-copy strong .icon { width: 16px; }

.family-guide-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 62px; align-items: start; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.guide-meta span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: var(--green-900); background: var(--lime-soft); border: 1px solid rgba(152, 194, 27, .25); border-radius: 999px; font-size: 10px; font-weight: 760; letter-spacing: .01em; }
.guide-meta .icon { width: 14px; height: 14px; }
.family-guide-article { min-width: 0; }
.family-guide-intro { margin-bottom: 24px; padding: 30px 32px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.family-guide-intro p { margin: 10px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.family-guide-section { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 37px 0; border-bottom: 1px solid var(--line); }
.family-guide-section > span { width: 46px; height: 46px; display: grid; place-items: center; color: var(--green-950); background: var(--lime); border-radius: 50%; font-size: 12px; font-weight: 850; }
.family-guide-section h2 { margin: 0 0 9px; color: var(--green-950); font-family: var(--serif); font-size: 34px; font-weight: 560; line-height: 1.12; }
.family-guide-section p { margin: 0 0 16px; color: var(--muted); line-height: 1.65; }
.family-guide-section .check-list { margin-bottom: 0; }
.family-guide-disclaimer { display: flex; align-items: flex-start; gap: 15px; margin-top: 34px; padding: 22px; background: var(--lime-soft); border: 1px solid rgba(152, 194, 27, .3); border-radius: 15px; }
.family-guide-disclaimer .icon { width: 25px; height: 25px; flex: 0 0 auto; color: var(--green-800); }
.family-guide-disclaimer p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.family-hub-back { display: flex; align-items: center; gap: 8px; margin-top: 15px; padding: 15px 17px; color: var(--green-900); background: var(--cream-soft); border: 1px solid var(--line); border-radius: 12px; font-size: 12px; font-weight: 780; }
.family-hub-back .icon { width: 16px; transform: rotate(180deg); }

.official-sources { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; gap: 52px; }
.official-sources h2 { margin: 9px 0; color: var(--green-950); font-family: var(--serif); font-size: 38px; font-weight: 560; }
.official-sources p { margin: 0; color: var(--muted); line-height: 1.65; }
.official-source-links { display: grid; gap: 10px; }
.official-source-links a { display: grid; grid-template-columns: 39px 1fr 22px; align-items: center; gap: 12px; padding: 16px 18px; color: var(--green-900); background: var(--white); border: 1px solid var(--line); border-radius: 13px; font-size: 13px; font-weight: 760; }
.official-source-links a > .icon:first-child { width: 39px; height: 39px; padding: 9px; color: var(--green-800); background: var(--lime-soft); border-radius: 50%; }
.official-source-links a > .icon:last-child { width: 17px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: start; }
.contact-details > h2 { margin: 10px 0; color: var(--green-950); font-family: var(--serif); font-size: 46px; font-weight: 550; line-height: 1.1; }
.contact-details > p { color: var(--muted); }
.contact-methods { display: grid; gap: 10px; margin: 28px 0; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: center; gap: 14px; padding: 15px 17px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 13px; }
.contact-methods > a > span, .contact-methods > div > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--green-900); background: var(--lime-soft); border-radius: 50%; }
.contact-methods .icon { width: 20px; }
.contact-methods div div { min-width: 0; }
.contact-methods small { display: block; color: var(--muted); font-size: 11px; font-weight: 770; letter-spacing: .06em; text-transform: uppercase; }
.contact-methods strong { display: block; overflow-wrap: anywhere; color: var(--green-900); font-size: 14px; }
.office-image { position: relative; height: 280px; overflow: hidden; border-radius: var(--radius); }
.office-image picture, .office-image img { width: 100%; height: 100%; }
.office-image img { object-fit: cover; }

.form-card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.form-card-head { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 28px; }
.form-icon { width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto; color: var(--green-900); background: var(--lime); border-radius: 50%; }
.form-card h2 { margin: 0; color: var(--green-950); font-family: var(--serif); font-size: 34px; font-weight: 560; line-height: 1.15; }
.form-card p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { min-width: 0; }
.field.full, .full { grid-column: 1 / -1; }
.field label, .term-fieldset legend { display: block; margin-bottom: 6px; color: #334139; font-size: 13px; font-weight: 760; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cad3ce;
  border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(45, 115, 81, .1); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(157, 56, 47, .08); }
.field small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; color: #4d5952; font-size: 13px; line-height: 1.5; }
.checkbox-row input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--green-700); }
.checkbox-row a { color: var(--green-700); font-weight: 750; text-decoration: underline; }
.form-status { margin-top: 12px; color: var(--muted); font-size: 13px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.signup-shell { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.signup-main { min-width: 0; }
.signup-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 18px; }
.progress-step { display: flex; align-items: center; gap: 8px; padding: 11px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 11px; }
.progress-step span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; color: var(--green-900); background: var(--cream); border-radius: 50%; font-size: 11px; font-weight: 820; }
.progress-step small { overflow: hidden; font-size: 11px; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.progress-step.active { color: var(--green-950); border-color: var(--green-700); }
.progress-step.active span, .progress-step.complete span { color: var(--green-950); background: var(--lime); }
.application-note { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; padding: 16px 18px; background: var(--lime-soft); border-radius: 12px; }
.application-note > .icon { width: 24px; color: var(--green-700); }
.application-note strong { display: block; color: var(--green-950); }
.application-note p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.form-step { display: none; padding: 35px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-step.active { display: block; }
.form-step-head { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-step-head > span { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; color: var(--green-900); background: var(--lime); border-radius: 50%; font-size: 11px; font-weight: 850; }
.form-step-head h2 { margin: 0; color: var(--green-950); font-family: var(--serif); font-size: 33px; font-weight: 560; line-height: 1.15; }
.form-step-head p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.plan-choice-grid { display: grid; gap: 10px; }
.plan-choice { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 16px; border: 1px solid #cad3ce; border-radius: 13px; cursor: pointer; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.plan-choice:hover { border-color: var(--green-700); }
.plan-choice:has(input:checked) { border-color: var(--green-700); background: var(--lime-soft); box-shadow: 0 0 0 3px rgba(45, 115, 81, .08); }
.plan-choice input { width: 19px; height: 19px; accent-color: var(--green-700); }
.plan-choice-main { display: flex; flex-direction: column; }
.plan-choice-main strong { color: var(--green-950); }
.plan-choice-main small { color: var(--muted); font-size: 12px; }
.plan-choice-price { color: var(--green-800); font-family: var(--serif); font-size: 23px; font-weight: 600; }
.term-fieldset { margin: 27px 0 0; padding: 0; border: 0; }
.term-choice-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.term-choice { cursor: pointer; }
.term-choice input { position: absolute; opacity: 0; }
.term-choice span { display: flex; min-height: 70px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #cad3ce; border-radius: 11px; transition: .18s ease; }
.term-choice input:checked + span { color: var(--green-950); border-color: var(--green-700); background: var(--lime); box-shadow: 0 0 0 3px rgba(45, 115, 81, .1); }
.term-choice strong { font-size: 19px; }
.term-choice small { font-size: 10px; text-transform: uppercase; }
.payment-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 19px; }
.payment-preview > div { display: flex; min-width: 0; flex-direction: column; padding: 13px; background: var(--cream-soft); border-radius: 10px; }
.payment-preview small { color: var(--muted); font-size: 9px; font-weight: 760; letter-spacing: .04em; text-transform: uppercase; }
.payment-preview strong { margin-top: 3px; overflow: hidden; color: var(--green-900); font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 29px; }
.step-actions .btn[data-next]:only-child { margin-left: auto; }
.form-subheading { margin-top: 7px; padding-top: 9px; border-top: 1px solid var(--line); }
.form-subheading h3 { margin: 0; color: var(--green-900); font-size: 16px; }
.review-box { margin-bottom: 22px; padding: 21px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 13px; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.review-grid div { min-width: 0; }
.review-grid small { display: block; color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.review-grid strong { display: block; overflow-wrap: anywhere; color: var(--green-950); font-size: 13px; }
.consent-stack { display: grid; gap: 13px; margin-top: 22px; padding: 20px; background: var(--cream-soft); border-radius: 12px; }
.security-note { display: flex; align-items: center; gap: 10px; margin-top: 15px; color: var(--muted); font-size: 12px; }
.security-note .icon { width: 20px; color: var(--green-700); }
.signup-aside { position: sticky; top: 118px; display: grid; gap: 14px; }
.summary-card, .download-card, .help-card { padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.summary-card h2 { margin: 0 0 14px; color: var(--green-950); font-family: var(--serif); font-size: 26px; font-weight: 560; }
.summary-card p { margin: 0; color: var(--muted); font-size: 13px; }
.live-summary { display: grid; gap: 10px; }
.live-summary > div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-size: 12px; }
.live-summary strong { color: var(--green-900); }
.download-card > .icon { width: 29px; color: var(--green-700); }
.download-card h3, .help-card h3 { margin: 10px 0; color: var(--green-950); font-family: var(--serif); font-size: 23px; font-weight: 560; }
.download-card a, .help-card a { display: block; padding: 7px 0; color: var(--green-700); font-size: 12px; font-weight: 740; border-bottom: 1px solid var(--line); }
.download-card a:last-child, .help-card a:last-child { border: 0; }
.success-panel { padding: 45px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.success-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 16px; color: var(--green-950); background: var(--lime); border-radius: 50%; }
.success-icon .icon { width: 32px; height: 32px; }
.success-panel h2 { margin: 0 0 8px; color: var(--green-950); font-family: var(--serif); font-size: 38px; font-weight: 560; }
.success-panel p { color: var(--muted); }
.reference-box { display: inline-flex; flex-direction: column; min-width: 260px; margin: 15px auto 22px; padding: 15px 20px; background: var(--cream-soft); border-radius: 12px; }
.reference-box small { color: var(--muted); }
.reference-box strong { color: var(--green-900); font-size: 20px; letter-spacing: .04em; }
.demo-note { margin-top: 16px; font-size: 12px; }

.legal-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 55px; align-items: start; }
.legal-toc { position: sticky; top: 120px; display: grid; max-height: calc(100vh - 150px); overflow-y: auto; gap: 2px; padding: 20px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 15px; }
.legal-toc > strong { margin-bottom: 8px; color: var(--green-950); }
.legal-toc > a:not(.btn) { padding: 6px 7px; color: var(--muted); border-radius: 7px; font-size: 12px; }
.legal-toc > a:hover { color: var(--green-900); background: var(--lime-soft); }
.legal-toc .btn { margin-top: 13px; font-size: 11px; }
.document-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 33px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.document-meta span { padding: 6px 10px; color: var(--muted); background: var(--cream-soft); border-radius: 7px; font-size: 11px; }
.legal-prose section { scroll-margin-top: 125px; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-prose section:last-child { border: 0; }
.legal-prose h2 { margin: 0 0 16px; color: var(--green-950); font-family: var(--serif); font-size: 32px; font-weight: 560; line-height: 1.15; }
.legal-prose h3 { margin: 24px 0 8px; color: var(--green-800); font-size: 18px; }
.legal-prose p { color: #4b5750; }
.legal-prose ul { display: grid; gap: 7px; padding-left: 22px; color: #4b5750; }
.legal-notice { margin: 0 0 35px; }

.site-footer { padding: 70px 0 0; color: rgba(255, 255, 255, .72); background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.55fr .8fr .9fr 1.25fr; gap: 45px; padding-bottom: 48px; }
.footer-logo-plate { display: inline-flex; width: min(290px, 100%); padding: 10px 14px; background: rgba(255, 255, 255, .98); border-radius: 13px; box-shadow: 0 10px 30px rgba(0, 0, 0, .12); }
.footer-brand img { width: 100%; height: auto; display: block; }
.footer-brand p { max-width: 390px; margin: 22px 0; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span { display: flex; align-items: center; gap: 6px; padding: 6px 10px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: 99px; font-size: 10px; }
.footer-badges .icon { width: 14px; color: var(--lime); }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h2 { margin: 0 0 13px; color: var(--white); font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.footer-col a, .footer-col span { overflow-wrap: anywhere; font-size: 13px; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 11px; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--lime); }

.mobile-call-bar { display: none; }
.cookie-banner { position: fixed; right: 22px; bottom: 22px; z-index: 100; width: min(410px, calc(100% - 32px)); padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
.cookie-banner h2 { margin: 0 30px 7px 0; color: var(--green-950); font-family: var(--serif); font-size: 27px; font-weight: 560; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 13px; }
.cookie-actions { display: flex; gap: 9px; margin-top: 18px; }
.cookie-actions .btn { flex: 1; min-height: 44px; padding: 9px 12px; font-size: 12px; }
.cookie-close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border: 0; color: var(--muted); background: var(--cream-soft); border-radius: 50%; font-size: 19px; }

.error-page { min-height: 620px; display: grid; place-items: center; padding: 80px 0; text-align: center; background: var(--cream-soft); }
.error-page img { margin: 0 auto 10px; }
.error-page > .container > span { color: var(--green-700); font-size: 14px; font-weight: 850; letter-spacing: .15em; }
.error-page h1 { margin: 5px 0; color: var(--green-950); font-family: var(--serif); font-size: 58px; font-weight: 560; }
.error-page p { color: var(--muted); }
.error-page div div { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }

@media (max-width: 1180px) {
  .header-inner { gap: 17px; }
  .brand { width: 194px; }
  .nav-link { padding-inline: 8px; font-size: 13px; }
  .desktop-call { display: none; }
  .hero-home-inner { grid-template-columns: minmax(0, 690px) 280px; gap: 30px; }
  .image-service-card { grid-template-columns: 42% 1fr; }
  .image-service-card > div { padding: 24px; }
  .factor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 82px; }
  .emergency-message span { display: none; }
  .site-header { height: 73px; }
  .brand { width: 200px; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 112px;
    right: 0;
    bottom: 0;
    z-index: 80;
    width: min(390px, 92vw);
    height: auto;
    display: block;
    padding: 18px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -20px 30px 60px rgba(7, 31, 22, .18);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform .24s ease, visibility 0s linear .24s;
  }
  body.menu-open .site-nav {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
  body.menu-open::after { content: ""; position: fixed; inset: 112px 0 0; z-index: 59; background: rgba(7, 31, 22, .52); }
  .nav-item { height: auto; }
  .nav-link { width: 100%; height: auto; justify-content: space-between; padding: 13px 12px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-link::after { display: none; }
  .nav-dropdown { position: static; width: auto; display: none; padding: 6px 9px 11px; opacity: 1; visibility: visible; transform: none; border: 0; border-radius: 0; box-shadow: none; }
  .nav-item.open .nav-dropdown { display: block; }
  .language-popover { position: fixed; top: 112px; right: 18px; }
  .hero-home-v2 { min-height: 680px; }
  .hero-home-inner { grid-template-columns: 1fr; align-items: center; }
  .hero-aside { display: none; }
  .hero-copy { max-width: 730px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; }
  .image-card-grid { grid-template-columns: 1fr; }
  .image-service-card { min-height: 315px; }
  .urgent-grid, .cta-band-inner { grid-template-columns: 1fr; gap: 25px; }
  .urgent-actions, .cta-actions { flex-wrap: wrap; }
  .split-feature { gap: 45px; }
  .area-card-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .plan-card-top p { min-height: 0; }
  .content-sidebar { grid-template-columns: 1fr; }
  .content-aside, .signup-aside, .legal-toc { position: static; }
  .signup-shell { grid-template-columns: 1fr; }
  .signup-aside { grid-template-columns: repeat(3, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .family-review-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-heading { grid-template-columns: 1fr; align-items: start; }
  .family-resource-grid { grid-template-columns: repeat(2, 1fr); }
  .family-guide-layout { grid-template-columns: 1fr; }
  .family-guide-layout .content-aside { position: static; }
  .official-sources { grid-template-columns: 1fr; gap: 26px; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-toc { max-height: none; grid-template-columns: repeat(2, 1fr); }
  .legal-toc > strong, .legal-toc .btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-grid .footer-col:last-child h2 { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 63px; }
  .container { width: min(100% - 30px, var(--container)); }
  .section { padding: 76px 0; }
  .emergency-inner { min-height: 37px; }
  .emergency-message strong { font-size: 11px; }
  .emergency-actions a:first-child { font-size: 12px; }
  .emergency-actions a:last-child { display: none; }
  .site-header { height: 69px; }
  .site-nav { top: 106px; }
  body.menu-open::after { top: 106px; }
  .brand { width: 172px; }
  .language-menu > button .icon { display: none; }
  .header-actions { gap: 4px; }
  .hero-home-v2 { min-height: 660px; }
  .hero-home-inner { padding-top: 72px; padding-bottom: 72px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7, 31, 22, .91), rgba(7, 31, 22, .6)), linear-gradient(0deg, rgba(7, 31, 22, .5), transparent); }
  .hero-copy h1, .page-hero-content h1 { font-size: clamp(43px, 13vw, 61px); }
  .hero-copy > p, .page-hero-content > p { font-size: 17px; }
  .hero-actions, .page-hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn, .page-hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 9px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 80px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid > div:first-child { border-top: 0; }
  .page-hero-photo { min-height: 580px; }
  .page-hero-content { padding-top: 56px; padding-bottom: 56px; }
  .page-hero-meta { display: grid; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: clamp(34px, 10vw, 45px); }
  .section-heading p { font-size: 16px; }
  .image-service-card { grid-template-columns: 1fr; min-height: 0; }
  .image-service-media { height: 245px; }
  .image-service-card > div { padding: 26px; }
  .urgent-actions, .cta-actions { display: grid; width: 100%; }
  .urgent-actions .btn, .cta-actions .btn { width: 100%; }
  .split-feature, .split-feature.reverse { grid-template-columns: 1fr; }
  .split-feature.reverse .feature-copy, .split-feature.reverse .feature-image { order: initial; }
  .feature-image, .feature-image.tall { min-height: 410px; }
  .mini-plan-row { grid-template-columns: 1fr; }
  .area-card-grid { grid-template-columns: 1fr; }
  .area-card-photo { min-height: 350px; }
  .plan-card { padding: 28px; }
  .quote-panel { align-items: stretch; flex-direction: column; }
  .content-main > h2 { font-size: 36px; }
  .included-card { grid-template-columns: 1fr; }
  .feature-list-grid { grid-template-columns: 1fr; }
  .factor-grid { grid-template-columns: 1fr; }
  .guide-links { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .family-resource-grid { grid-template-columns: 1fr; }
  .family-resource-image { height: 240px; }
  .family-guide-section { grid-template-columns: 42px 1fr; gap: 15px; }
  .family-guide-section > span { width: 38px; height: 38px; }
  .family-guide-section h2 { font-size: 29px; }
  .family-guide-intro { padding: 24px; }
  .form-card, .form-step { padding: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .full { grid-column: auto; }
  .signup-progress { grid-template-columns: repeat(4, 1fr); }
  .progress-step { justify-content: center; padding: 8px; }
  .progress-step small { display: none; }
  .term-choice-grid { grid-template-columns: repeat(5, minmax(52px, 1fr)); }
  .payment-preview { grid-template-columns: repeat(2, 1fr); }
  .plan-choice { grid-template-columns: auto 1fr; }
  .plan-choice-price { grid-column: 2; font-size: 20px; }
  .review-grid { grid-template-columns: 1fr; }
  .signup-aside { grid-template-columns: 1fr; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-toc > strong, .legal-toc .btn { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child h2 { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0 24px; }
  .mobile-call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; min-height: 63px; padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left)); color: var(--green-950); background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 25px rgba(7, 31, 22, .1); }
  .mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0 3px; border-radius: 9px; background: var(--lime); font-size: 13px; font-weight: 800; }
  .mobile-call-bar a:last-child { color: var(--white); background: var(--green-800); }
  .mobile-call-bar .icon { width: 18px; }
  .cookie-banner { right: 16px; bottom: 78px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 24px, var(--container)); }
  .emergency-message .icon { display: none; }
  .brand { width: 156px; }
  .language-menu > button { padding-inline: 7px; }
  .hero-copy h1, .page-hero-content h1 { font-size: 43px; }
  .page-hero-photo { min-height: 620px; }
  .team-grid { grid-template-columns: 1fr; }
  .family-review-grid { grid-template-columns: 1fr; }
  .family-review-card { min-height: 0; }
  .term-choice-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-preview { grid-template-columns: 1fr; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .cookie-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .emergency-bar, .site-header, .mobile-call-bar, .cookie-banner, .site-footer, .page-hero-actions, .page-hero-meta, .cta-band, .urgent-panel { display: none !important; }
  body { padding: 0; color: #000; background: #fff; font-size: 11pt; }
  .page-hero-photo { min-height: 0; color: #000; background: #fff; }
  .page-hero-media, .page-hero-shade { display: none; }
  .page-hero-content { padding: 20px 0; }
  .page-hero-content h1 { color: #000; font-size: 28pt; }
  .page-hero-content > p { color: #333; }
  .legal-layout { display: block; }
  .legal-toc { display: none; }
}
