:root {
  --color-logo-blue: #91b9e6;
  --color-logo-blue-dark: #5d95ce;
  --color-turquoise: #73c9d7;
  --color-green: #8dbb55;
  --color-gray: #8f9297;
  --color-deep: #294764;
  --color-text: #33465b;
  --color-muted: #6d7f91;
  --color-soft-blue: #f1f7fd;
  --color-soft-green: #f3f8ee;
  --color-cream: #fffefa;
  --color-border: rgba(93, 149, 206, 0.18);
  --shadow-soft: 0 24px 70px rgba(65, 112, 156, 0.14);
  --shadow-card: 0 16px 45px rgba(69, 113, 147, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--color-deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 250, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(145, 185, 230, 0.18);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand__logo { width: 238px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-deep);
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-green));
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-logo-blue-dark), var(--color-turquoise));
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(93,149,206,.24);
  white-space: nowrap;
}
.icon-circle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-deep);
  margin: 5px auto;
  border-radius: 999px;
}

section { position: relative; }
.section-soft {
  background:
    radial-gradient(circle at 8% 4%, rgba(145, 185, 230, .26), transparent 35%),
    radial-gradient(circle at 92% 12%, rgba(141, 187, 85, .18), transparent 33%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
}
.section-white { background: #fffefa; }

.hero {
  padding: 74px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(141, 187, 85, .12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f2f8fe 72%, #eef7f2 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.70) 48%, rgba(255,255,255,.10)),
    radial-gradient(circle at 78% 18%, rgba(145,185,230,.22), transparent 32%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 13px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .77rem;
  font-weight: 900;
  color: var(--color-logo-blue-dark);
}
h1, h2, h3 { color: var(--color-deep); line-height: 1.06; }
h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.35rem);
  letter-spacing: -0.065em;
  font-weight: 900;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(2.05rem, 3.8vw, 3.55rem);
  letter-spacing: -0.05em;
  font-weight: 900;
}
h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  letter-spacing: -0.025em;
  font-weight: 850;
}
.hero__lead {
  max-width: 585px;
  margin: 24px 0 30px;
  color: var(--color-muted);
  font-size: 1.17rem;
}
.hero__actions, .center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-logo-blue-dark), var(--color-turquoise));
  box-shadow: 0 16px 40px rgba(93, 149, 206, 0.26);
}
.btn-secondary {
  color: var(--color-deep);
  border-color: rgba(145,185,230,.42);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(69, 113, 147, 0.08);
}
.trust-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  font-size: .88rem;
  font-weight: 800;
}
.hero__visual {
  position: relative;
  min-height: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.9);
  background: linear-gradient(135deg, #fff, var(--color-soft-blue));
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.48));
  pointer-events: none;
}
.hero__visual > img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
}
.hero-card {
  position: absolute;
  z-index: 2;
  width: 246px;
  padding: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: 0 20px 45px rgba(69, 113, 147, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}
.hero-card strong { display:block; color: var(--color-deep); font-size: .98rem; }
.hero-card span { display:block; color: var(--color-muted); font-size: .88rem; margin-top: 4px; }
.hero-card--one { left: 24px; bottom: 28px; }
.hero-card--two { right: 26px; top: 28px; }

.age-tiles, .worries, .special, .process, .practice, .reviews, .team, .faq, .contact { padding: 88px 0; }
.image-band { padding: 48px 0 66px; }
.section-heading { max-width: 620px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow), .small-note {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin: 0 0 24px;
}
.small-note { font-size: .93rem; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.age-card {
  min-height: 320px;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f6fbff, #fff 56%, #f1f8ec);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.age-card:nth-child(2) { background: linear-gradient(145deg, #f5fbf7, #fff 58%, #edf7ff); }
.age-card:nth-child(3) { background: linear-gradient(145deg, #eef7ff, #fff 58%, #f6fbf1); }
.age-card:nth-child(4) { background: linear-gradient(145deg, #f4f9ef, #fff 58%, #eef8fb); }
.age-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(69, 113, 147, 0.16);
}
.age-card img { height: 105px; width: auto; margin-left: auto; margin-bottom: 12px; }
.age-card__kicker { color: var(--color-logo-blue-dark); font-weight: 900; margin: 0 0 3px; font-size: .88rem; }
.age-card p { color: var(--color-muted); margin: 0; font-size: .96rem; }
.age-card a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(145,185,230,.50);
  color: var(--color-logo-blue-dark);
  background: rgba(255,255,255,.72);
  font-weight: 900;
  margin-left: auto;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.question-card {
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-card);
}
.question-icon {
  width: 66px;
  height: 66px;
  display: inline-grid;
  place-items: center;
  border-radius: 24px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(145,185,230,.18), rgba(141,187,85,.16));
  font-size: 2rem;
}
.question-card p { color: var(--color-muted); margin: 0; }
.center-actions { justify-content: center; margin-top: 32px; }

.special__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 42px;
  align-items: center;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cert-card {
  min-height: 270px;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.cert-card img { height: 68px; margin-bottom: 20px; }
.cert-card p { color: var(--color-muted); margin: 0; font-size: .95rem; }

.timeline {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-logo-blue), var(--color-green));
  opacity: .48;
}
.timeline-item {
  position: relative;
  padding: 74px 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.timeline-number {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-logo-blue-dark), var(--color-green));
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(93,149,206,.25);
}
.timeline-item p { margin: 0; color: var(--color-muted); }

.practice__grid {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,.9);
}
.gallery img:first-child { grid-row: span 2; }
.image-band__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 0.72fr;
  gap: 16px;
}
.image-band__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,.9);
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.stars { color: #f4b545; letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 18px; }
.review-card p { color: var(--color-muted); margin: 0 0 20px; font-size: 1.02rem; }
.review-card strong { color: var(--color-deep); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.team-card {
  text-align: center;
  padding: 20px 14px 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.team-card img {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 14px 34px rgba(69, 113, 147, .14);
  background: linear-gradient(135deg, #e9f2fc, #f4f8ef);
}
.team-card:nth-child(6) img { object-fit: contain; padding: 18px; }
.team-card h3 { font-size: 1.02rem; }
.team-card p { color: var(--color-muted); margin: 0; font-size: .92rem; }

.faq__grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-illustration { width: 220px; margin-top: 20px; }
.accordion { display: grid; gap: 12px; }
details {
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 8px 28px rgba(69, 113, 147, 0.06);
  overflow: hidden;
}
summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
  color: var(--color-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.3rem; color: var(--color-logo-blue-dark); }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 22px 20px; color: var(--color-muted); }

.contact__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 0.88fr;
  gap: 20px;
  align-items: stretch;
}
.contact-card, .form-card, .map-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 15px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-deep);
  font-weight: 800;
}
.contact-list span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(145,185,230,.20);
  color: var(--color-logo-blue-dark);
}
address { font-style: normal; }
.contact-hint {
  padding: 16px;
  border-radius: 18px;
  background: rgba(141,187,85,.13);
  color: var(--color-muted);
  margin: 0;
}
.form-card { display: grid; gap: 16px; }
.form-head h3 { margin-bottom: 7px; }
.form-head p { margin: 0; color: var(--color-muted); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--color-deep);
  font-weight: 900;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(93, 149, 206, .20);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--color-text);
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(93,149,206,.62);
  box-shadow: 0 0 0 4px rgba(145,185,230,.18);
}
textarea { resize: vertical; }
.map-card {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(145,185,230,.16), rgba(141,187,85,.12)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(145,185,230,.10) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(145,185,230,.10) 43px 44px),
    #fff;
}
.map-card__inner {
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.88) 58%);
}
.map-card__inner h3 { margin-bottom: 0; }
.map-card__inner p:not(.eyebrow) { margin: 0 0 4px; color: var(--color-muted); }
.map-pin {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--color-logo-blue-dark), var(--color-green));
  color: #fff;
  box-shadow: 0 18px 40px rgba(93,149,206,.25);
  justify-self: start;
}
.map-pin::first-letter { transform: rotate(45deg); }

.site-footer {
  padding: 28px 0;
  background: #263d54;
  color: rgba(255,255,255,.8);
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__grid p { margin: 0; }
.footer__grid a { margin-left: 18px; font-weight: 800; }
.footer__grid a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1180px) {
  .nav-links { gap: 16px; font-size: .86rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .header-phone span:last-child { display: none; }
  .hero__grid, .special__grid, .practice__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .tile-grid, .question-grid, .cert-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .image-band__grid { grid-template-columns: 1fr 1fr; }
  .image-band__grid img:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, var(--container)); }
  .navbar { min-height: 76px; }
  .brand__logo { width: 190px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 10px; }
  .header-phone { padding: 10px; }
  .hero { padding-top: 46px; }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero__visual { min-height: 430px; }
  .hero__visual > img { min-height: 430px; }
  .hero-card { position: static; width: auto; margin: 8px 16px; }
  .hero__visual { display: grid; align-content: end; padding-bottom: 10px; }
  .hero-card--one, .hero-card--two { left: auto; right: auto; top: auto; bottom: auto; }
  .age-tiles, .worries, .special, .process, .practice, .reviews, .team, .faq, .contact { padding: 64px 0; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery img:first-child { grid-row: auto; }
}

@media (max-width: 660px) {
  .tile-grid, .question-grid, .cert-grid, .timeline, .review-grid, .team-grid, .form-row, .image-band__grid { grid-template-columns: 1fr; }
  .image-band__grid img:last-child { grid-column: auto; }
  .hero__actions, .center-actions { align-items: stretch; }
  .hero__actions .btn, .center-actions .btn { width: 100%; }
  .contact-card, .form-card { padding: 22px; }
  .footer__grid { display: grid; text-align: center; justify-content: center; }
  .footer__grid a { margin: 0 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* --- Revision: gradliniger, näher am Original, Eisblau/Grau --- */
:root {
  --color-logo-blue: #d9e8f5;
  --color-logo-blue-dark: #8eaac4;
  --color-turquoise: #a9c5db;
  --color-green: #b7c9b3;
  --color-gray: #7b858f;
  --color-deep: #4f6172;
  --color-text: #546474;
  --color-muted: #6f7e8e;
  --color-soft-blue: #eef5fa;
  --color-soft-green: #f6f8f7;
  --color-cream: #fbfcfd;
  --color-border: rgba(128, 150, 171, 0.20);
  --shadow-soft: 0 16px 34px rgba(98, 122, 145, 0.10);
  --shadow-card: 0 10px 22px rgba(98, 122, 145, 0.07);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
}

html, body { background: var(--color-cream); }
body, button, input, textarea, select {
  font-family: Arial, Helvetica, sans-serif;
}
h1, h2, h3, .nav-links, .btn, .header-phone {
  font-family: Arial, Helvetica, sans-serif;
}
h1 {
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  letter-spacing: -0.04em;
  font-weight: 700;
}
h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}
h3 { font-weight: 700; }
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(142,170,196,0.16);
}
.navbar { min-height: 88px; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand__logo { width: 285px; }
.nav-links { gap: 22px; font-size: 0.95rem; font-weight: 700; color: var(--color-deep); }
.nav-links a::after {
  bottom: -10px;
  height: 2px;
  background: var(--color-logo-blue-dark);
}
.header-phone {
  color: var(--color-deep);
  background: #f2f7fb;
  border: 1px solid rgba(142,170,196,0.30);
  box-shadow: none;
  font-weight: 700;
}
.icon-circle {
  background: rgba(142,170,196,.12);
  color: var(--color-deep);
}
.section-soft { background: var(--color-soft-blue); }
.section-white { background: #fff; }
.hero {
  padding: 64px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}
.hero::before {
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.86) 50%, rgba(255,255,255,.18));
}
.hero__grid { gap: 42px; grid-template-columns: 0.9fr 1.1fr; }
.eyebrow { color: var(--color-gray); letter-spacing: .1em; font-weight: 700; }
.hero__lead { margin: 18px 0 26px; max-width: 540px; font-size: 1.08rem; }
.btn { border-radius: 8px; font-weight: 700; }
.btn-primary {
  background: #93afc8;
  box-shadow: none;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  border-color: rgba(142,170,196,.34);
  box-shadow: none;
}
.trust-strip { gap: 8px; margin-top: 22px; }
.trust-strip span {
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: .86rem;
  font-weight: 700;
}
.hero__visual {
  min-height: 540px;
  border-radius: 16px;
  border: 1px solid rgba(142,170,196,0.18);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.hero__visual::after { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.18)); }
.hero__visual > img { min-height: 540px; object-position: center; }
.hero-card {
  width: 240px;
  border-radius: 10px;
  box-shadow: none;
  backdrop-filter: none;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(142,170,196,.18);
}
.hero-card--one { left: 18px; bottom: 18px; }
.age-tiles, .worries, .special, .process, .practice, .reviews, .team, .faq, .contact { padding: 76px 0; }
.tile-grid, .question-grid, .cert-grid, .review-grid { gap: 16px; }
.age-card, .question-card, .cert-card, .review-card, .team-card, .contact-card, .form-card, .map-card, .accordion details {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid var(--color-border);
  background: #fff;
}
.age-card {
  min-height: 284px;
  background: #fff;
}
.age-card img, .cert-card img {
  width: 72px;
  filter: grayscale(1) saturate(0) opacity(.72);
}
.age-card a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--color-border); color: var(--color-deep);
  display: inline-grid; place-items: center;
}
.question-card { padding: 24px; }
.question-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: #edf3f8; color: var(--color-deep);
  font-size: .88rem; font-weight: 700; margin-bottom: 16px;
}
.special__grid, .practice__grid, .faq__grid { gap: 34px; }
.cert-card { padding: 26px 24px; }
.timeline { gap: 18px; }
.timeline::before { background: rgba(142,170,196,.28); }
.timeline-item {
  border-radius: 12px; box-shadow: none; border: 1px solid var(--color-border);
  background: #fff;
}
.timeline-number {
  background: #edf3f8; color: var(--color-deep); box-shadow: none; font-weight: 700;
}
.gallery, .image-band__grid { gap: 14px; }
.gallery img, .image-band__grid img { border-radius: 12px; }
.review-card .stars { color: #8eaac4; }
.team-card img { border-radius: 10px; }
.faq-illustration { max-width: 150px; filter: grayscale(1) opacity(.6); }
.accordion details { padding: 0; overflow: hidden; }
.accordion summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--color-deep);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion details p { padding: 0 22px 18px; margin: 0; color: var(--color-muted); }
.contact__grid { gap: 20px; }
.contact-list li {
  display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: start;
}
.contact-list li strong { color: var(--color-deep); }
input, textarea, select {
  border-radius: 8px; border-color: rgba(142,170,196,.28);
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(142,170,196,.58); box-shadow: 0 0 0 3px rgba(217,232,245,.75);
}
.map-card { background: linear-gradient(180deg, #f4f8fb, #ffffff); }
.map-card__inner { background: none; }
.map-pin {
  width: 58px; height: 58px; box-shadow: none; background: #93afc8;
}
.site-footer { background: #667989; }
@media (max-width: 860px) {
  .brand__logo { width: 230px; }
  .nav-links { border-radius: 12px; box-shadow: none; }
  .hero__visual { min-height: 420px; }
  .hero__visual > img { min-height: 420px; }
}
