/* CSS VERSION OVERFLOW FIX 2026-06-08 */
:root {
  --orange: #f47a21;
  --red: #d94830;
  --yellow: #f7c84a;
  --green: #A8BFA3;
  --green-dark: #60745D;
  --green-light: #EDF3EB;
  --ink: #272522;
  --muted: #6d6860;
  --line: #eee5da;
  --surface: #fff9f2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(76, 56, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--green-dark);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 280px;
  max-width: 280px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  color: var(--green-dark);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(244, 122, 33, 0.22);
}

.btn-primary:hover {
  background: var(--red);
  color: var(--white);
}

.btn-secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(168, 191, 163, 0.62);
}

.btn-secondary:hover {
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  padding-top: 64px;
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.96) 0%, rgba(255, 255, 255, 1) 62%),
    var(--white);
}

.page-hero {
  padding-top: 64px;
  background:
    linear-gradient(90deg, rgba(237, 243, 235, 0.92) 0%, rgba(255, 255, 255, 1) 64%),
    var(--white);
}

.fika-hero {
  padding-top: 64px;
  background:
    linear-gradient(115deg, rgba(237, 243, 235, 0.96) 0%, rgba(255, 255, 255, 1) 68%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-grid > *,
.trust-grid > *,
.card-grid > *,
.testimonial-grid > *,
.split-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.orange-bang {
  display: inline-block;
  position: relative;
  width: 0.26em;
  height: 0.82em;
  margin-left: 0.06em;
  vertical-align: -0.08em;
  transform: rotate(8deg);
  transform-origin: 50% 70%;
}

.orange-bang::before,
.orange-bang::after {
  content: "";
  position: absolute;
  left: 50%;
  background: var(--orange);
  transform: translateX(-50%);
}

.orange-bang::before {
  top: 0;
  width: 0.24em;
  height: 0.58em;
  border-radius: 58% 58% 62% 62%;
  clip-path: polygon(10% 0, 90% 0, 72% 58%, 50% 100%, 28% 58%);
}

.orange-bang::after {
  bottom: 0;
  width: 0.24em;
  height: 0.16em;
  border-radius: 50%;
}

.brand-red {
  color: var(--red);
}

.small-bang {
  width: 0.24em;
  height: 0.7em;
  margin-left: 0.06em;
  vertical-align: -0.1em;
}

h2 {
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 2.25rem;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-content {
  max-width: 610px;
}

.hero-subtitle {
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-content > p:not(.eyebrow):not(.hero-subtitle):not(.name-line),
.text-block p {
  color: var(--muted);
}

.name-line {
  margin: 28px 0;
  padding: 16px 0 16px 20px;
  border-left: 4px solid var(--yellow);
  background: linear-gradient(90deg, rgba(247, 200, 74, 0.16), rgba(255, 255, 255, 0));
}

.name-line strong,
.name-line span {
  display: block;
}

.name-line strong {
  color: var(--green-dark);
  font-size: 1.28rem;
  line-height: 1.25;
}

.name-line span {
  color: var(--muted);
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 7px 12px;
  align-items: center;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1px solid rgba(168, 191, 163, 0.62);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--yellow));
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.illustration-media {
  background: transparent;
}

.illustration-media img {
  aspect-ratio: 900 / 760;
  object-fit: contain;
}

.forest-hero-media img,
.food-hero-media img {
  object-fit: cover;
}

.forest-hero-media img {
  object-position: center 58%;
}

.food-hero-media img {
  object-position: center center;
}

.fika-photo-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.hero-audience-block {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(168, 191, 163, 0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-audience-block h2 {
  margin-bottom: 16px;
  font-size: 1.28rem;
}

.hero-check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 800;
  list-style: none;
}

.hero-check-list li {
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.hero-check-list li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--orange);
}

.begeleiding-photo-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 54%;
}

.leefstijl-photo-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.contact-photo-media img {
  object-fit: cover;
  object-position: 50% 52%;
}

/* Trust bar */
.trust-bar {
  padding: 28px 0;
  background: var(--green-light);
  border-block: 1px solid rgba(168, 191, 163, 0.48);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  display: flex;
  min-width: 0;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.trust-item span:not(.icon) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.icon {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Services */
.services {
  background: var(--white);
}

.card-grid,
.testimonial-grid {
  display: grid;
  gap: 26px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 520px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.service-card li {
  margin-bottom: 6px;
}

.card-icon {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 2.1rem;
  line-height: 1;
}

.card-logo {
  display: flex;
  width: 104px;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(168, 191, 163, 0.42);
}

.card-logo img {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.inline-list {
  padding-left: 0;
  list-style: none;
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

/* About */
.about {
  background: var(--green-light);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

.text-block {
  max-width: 720px;
}

/* Detail pages */
.quick-facts,
.quality-section,
.vision-section {
  background: var(--green-light);
}

.story-section,
.audiences-section,
.intro-section,
.help-section,
.timeline-section,
.for-who-section,
.why-section {
  background: var(--white);
}

.approach-section {
  background: var(--green-light);
}

.narrow-content {
  max-width: 820px;
}

.narrow-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.fact-grid,
.mini-card-grid {
  display: grid;
  gap: 22px;
}

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

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

.fact-card,
.mini-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
}

.fact-card {
  min-height: 260px;
  padding: 34px;
}

.mini-card {
  min-height: 150px;
}

.fact-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 800;
}

.fact-card li,
.mini-card li,
.mini-card p,
.check-list-text li {
  color: var(--muted);
}

.fact-card h3 {
  margin-bottom: 18px;
  color: var(--green-dark);
}

.fact-card ul {
  margin: 0;
  padding-left: 20px;
}

.fact-card li {
  margin-bottom: 10px;
}

.mini-card ul {
  margin: 0;
  padding-left: 20px;
}

.mini-card li {
  margin-bottom: 8px;
}

.check-list-text {
  margin: 0;
  padding-left: 20px;
}

.check-list-text li {
  margin-bottom: 8px;
}

.motto {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 800;
}

.subtle-note {
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--green-light);
  color: var(--muted);
  font-weight: 700;
}

/* Guidance page */
.support-grid,
.timeline-grid,
.reason-grid,
.check-grid {
  display: grid;
  gap: 22px;
}

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

.support-card,
.timeline-step,
.reason-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
}

.support-card {
  min-height: 260px;
}

.support-card-wide {
  grid-column: span 2;
}

.support-card p,
.timeline-step p,
.reason-card p,
.check-grid li {
  color: var(--muted);
}

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

.timeline-step span,
.reason-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 800;
}

.check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  line-height: 1.35;
}

.check-grid li::before {
  content: "\2713";
  flex: 0 0 auto;
  margin-right: 10px;
  color: var(--orange);
}

.target-groups-section .check-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.target-groups-section .check-grid li {
  display: flex;
  flex: 0 1 calc((100% - 44px) / 3);
  min-height: 132px;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}

.target-groups-section .check-grid li::before {
  flex: 0 0 auto;
}

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

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

.reason-card {
  align-items: center;
  justify-content: center;
  min-height: 150px;
  text-align: center;
}

.reason-card p {
  margin-bottom: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.practical-section {
  background: var(--green-light);
}

.practical-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 56px;
  align-items: center;
}

.practical-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.practical-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.practical-content {
  padding: 38px;
  border: 1px solid rgba(168, 191, 163, 0.48);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
}

.practical-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Contact page */
.contact-section {
  background: var(--green-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.contact-info-panel {
  padding: 42px;
  border: 1px solid rgba(168, 191, 163, 0.44);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
}

.contact-info-panel h2 {
  margin-bottom: 24px;
}

.contact-info-panel p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-info-panel strong,
.contact-name {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-name {
  font-size: 1.34rem;
}

.contact-label {
  color: var(--ink);
  font-weight: 800;
}

.contact-info-panel a:not(.btn) {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.contact-info-panel a:not(.btn):hover {
  text-decoration: underline;
}

.contact-image {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 52%;
}

.contact-topics .check-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-topics .check-grid li {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 18px;
  line-height: 1.28;
}

.contact-topics .check-grid li::before {
  flex: 0 0 auto;
}

.fika-hero-logo {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(168, 191, 163, 0.42);
  border-radius: 8px;
  background: var(--white);
}

.fika-hero-logo img {
  width: min(170px, 42vw);
  height: auto;
  object-fit: contain;
}

.fika-hero-panel {
  padding: 44px;
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.illustration-panel img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 26px;
  aspect-ratio: 900 / 760;
  object-fit: contain;
}

.fika-pillars,
.fika-offer,
.cooperation-section {
  background: var(--white);
}

.fika-pillars .mini-card h3 {
  min-height: 2.6em;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
  font-weight: 800;
  text-align: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 34px;
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
}

.program-card h4 {
  margin: 22px 0 10px;
  color: var(--green-dark);
  font-size: 1rem;
}

.program-card p,
.program-card li {
  color: var(--muted);
}

.program-card ul {
  margin: 0;
  padding-left: 20px;
}

.program-card li {
  margin-bottom: 6px;
}

.rates-section,
.reimbursement-section {
  background: var(--white);
}

.sports-rates-section {
  background: var(--green-light);
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

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

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

.rate-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(168, 191, 163, 0.54);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
}

.rate-card p,
.rate-card li {
  color: var(--muted);
}

.rate-card ul {
  margin: 0;
  padding-left: 20px;
}

.rate-card li {
  margin-bottom: 8px;
}

.price {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.duration {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

/* Testimonials */
.testimonials {
  background: var(--surface);
}

.section-intro {
  max-width: 620px;
  margin: -12px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

blockquote {
  margin: 0;
  min-width: 0;
  min-height: 190px;
  padding: 30px;
  color: var(--green-dark);
  border-radius: 8px;
  background: var(--white);
  border-top: 5px solid var(--orange);
  box-shadow: 0 10px 30px rgba(78, 56, 30, 0.06);
  font-size: 1.05rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Work area */
.work-area {
  background: var(--white);
}

.work-area-inner {
  min-width: 0;
  max-width: 860px;
}

.work-area-inner p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Rates teaser */
.rates-teaser {
  background: var(--green-light);
}

.rates-teaser-inner {
  min-width: 0;
  max-width: 780px;
}

.rates-teaser-inner p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Legal and informational pages */
.legal-section {
  background: var(--white);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 1.72rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-content ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--green-dark), #789173);
}

.final-cta-inner {
  min-width: 0;
  max-width: 780px;
  text-align: center;
}

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

.final-cta p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--white);
  list-style: none;
}

.cta-list li {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.cta-list li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--yellow);
}

/* Footer */
.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner strong,
.footer-inner span,
.footer-inner a {
  display: block;
}

.footer-inner strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  color: var(--green-dark);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--red);
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

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

  .card-grid,
  .support-grid,
  .timeline-grid,
  .reason-grid,
  .program-grid,
  .offer-grid,
  .rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card-wide {
    grid-column: span 2;
  }

  .target-groups-section .check-grid li {
    flex-basis: calc((100% - 22px) / 2);
  }

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

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

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand img {
    width: 240px;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    padding-bottom: 4px;
    font-size: 0.88rem;
  }

  .header-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 56px 0;
  }

  .header-inner {
    min-height: 74px;
    gap: 14px;
  }

  .brand img {
    width: 190px;
  }

  .header-cta {
    flex: 1 1 180px;
    min-height: 44px;
    padding-inline: 14px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .practical-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-media {
    order: -1;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    margin-top: 22px;
    text-align: left;
  }

  .trust-grid,
  .card-grid,
  .testimonial-grid,
  .fact-grid,
  .mini-card-grid,
  .support-grid,
  .timeline-grid,
  .reason-grid,
  .check-grid,
  .program-grid,
  .offer-grid,
  .rate-grid,
  .rate-grid-two {
    grid-template-columns: 1fr;
  }

  .contact-topics .check-grid {
    grid-template-columns: 1fr;
  }

  .target-groups-section .check-grid li {
    flex-basis: 100%;
    min-height: 92px;
  }

  .contact-info-panel {
    padding: 28px;
  }

  .hero-check-list {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 360px;
  }

  .contact-image img {
    min-height: 360px;
  }

  .support-card-wide {
    grid-column: span 1;
  }

  .trust-item,
  .service-card,
  blockquote {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.34rem;
  }

  .btn {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }
}
