﻿/* =====================================================
   VILLA KUNTERBUNT — Design System
   ===================================================== */
:root {
  --yellow: #FFCA1A;
  --coral: #FF5252;
  --mint: #4DBF5F;
  --blue: #3A82F7;
  --purple: #B94FFA;
  --orange: #FF8C00;
  --nav-h: 64px;
  --pink: #FF6EC4;

  --bg: #FFFBEE;
  --bg-yellow: #FFF3B0;
  --bg-coral: #FFE0DB;
  --bg-mint: #C9F5D0;
  --bg-blue: #D4E6FF;
  --bg-purple: #EDD9FF;

  --text: #1A1A2E;
  --muted: #5C5777;
  --card: #FFFFFF;
  --border: rgba(26,26,46,0.09);

  --radius: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --shadow: 0 6px 28px rgba(26,26,46,0.11);
  --shadow-lg: 0 14px 54px rgba(26,26,46,0.18);
  --trans: 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.7; overflow-x: hidden;
  background-image: radial-gradient(rgba(255,82,82,.06) 1.5px, transparent 1.5px),
                    radial-gradient(rgba(77,191,95,.06) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SKIP LINK ── */
.skip-link { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left:1rem; top:1rem; width:auto; height:auto; background:#fff; padding:.75rem 1rem; border-radius:12px; z-index:999; }

/* anchor scroll offset */
[id] { scroll-margin-top: calc(var(--nav-h) + .5rem); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-weight: 800; line-height: 1.15;
}
h1 { font-size: clamp(1.95rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
p { margin-bottom: .85rem; }
p:last-child { margin-bottom: 0; }
.kicker {
  display: inline-block; font-weight: 800; font-size: .78rem;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--coral); margin-bottom: .5rem;
}

/* ── LAYOUT ── */
.container { width: min(1140px, 92vw); margin-inline: auto; }
.section { padding: 3.2rem 0; position: relative; }
.section-sm { padding: 1.8rem 0; }
.section-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 1.6rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.split.rev > *:first-child { order: 2; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 0; border-radius: var(--radius-full);
  padding: .75rem 1.5rem;
  font: 800 .95rem/1 "Nunito", sans-serif;
  cursor: pointer; transition: var(--trans);
}
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 6px 22px rgba(255,107,107,.4); }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 30px rgba(255,107,107,.5); }
.btn-yellow { background: var(--yellow); color: var(--text); box-shadow: 0 6px 20px rgba(255,217,61,.4); }
.btn-yellow:hover { transform: translateY(-3px) scale(1.03); }
.btn-ghost { background: transparent; border: 2.5px solid var(--coral); color: var(--coral); }
.btn-ghost:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--coral); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--coral); outline-offset: 2px;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,251,238,.97); backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(26,26,46,.08);
  border-bottom: 3px solid rgba(255,202,26,.35);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(26,26,46,.14);
  border-bottom-color: rgba(255,202,26,.6);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); }
.logo { display: flex; align-items: center; gap: .7rem; font-weight: 800; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  box-shadow: 0 4px 18px rgba(255,107,107,.4);
  flex-shrink: 0;
}
.logo-text strong { display: block; line-height: 1.1; font-size: .98rem; font-family: "Baloo 2", sans-serif; }
.logo-text small { color: var(--muted); font-size: .76rem; font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: .2rem; }
.nav-menu a {
  padding: .5rem .95rem; border-radius: var(--radius-full);
  font-weight: 800; font-size: .93rem; transition: .2s;
}
.nav-menu a:hover { background: var(--bg-yellow); color: var(--coral); }
.nav-menu a.active { background: var(--bg-coral); color: var(--coral); }
.nav-cta {
  background: var(--coral) !important; color: #fff !important;
  padding: .6rem 1.25rem !important;
  box-shadow: 0 4px 16px rgba(255,107,107,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,107,.45) !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 28px; height: 3px;
  background: var(--text); border-radius: 3px;
  transition: .3s cubic-bezier(.68,-.6,.32,1.6);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── HERO (landing) ── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: clip; padding: 6.2rem 0 2.75rem;
  background: linear-gradient(140deg, #FFFBEE 0%, #FFE8E8 30%, #E0F0FF 65%, #D6F5DC 100%);
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  will-change: transform; pointer-events: none;
}
.hero-shell {
  position: relative; z-index: 2;
  max-width: 1060px; margin-inline: auto;
}
.hero-content {
  position: relative; z-index: 2; max-width: 960px;
  margin-inline: auto; text-align: center;
}
.hero-kicker {
  margin-bottom: .9rem;
  padding: .45rem .95rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 24px rgba(26,26,46,.07);
}
.hero-illustration {
  margin: 0 auto 1.15rem;
  max-width: 1080px;
}
.hero-illustration-frame {
  position: relative;
  padding: .7rem;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,251,238,.65));
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 24px 60px rgba(26,26,46,.12), inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
}
.hero-illustration-frame::before {
  content: "";
  position: absolute; inset: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.28), transparent 45%);
  pointer-events: none;
}
.hero-illustration-svg {
  display: block; width: 100%; height: auto;
}
.hero-word {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 126px;
  font-weight: 800;
  letter-spacing: -0.03em;
  paint-order: stroke fill;
}
.hero-word-red { fill: #d95959; transform: rotate(-1deg); transform-origin: center; }
.hero-word-blue { fill: #4a7fd4; }
.hero-word-outline {
  fill: transparent;
  stroke: rgba(255,255,255,.55);
  stroke-width: 7px;
  stroke-linejoin: round;
}
.hero h1 { margin-bottom: .55rem; max-width: 15ch; margin-inline: auto; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero .lead {
  font-size: clamp(.98rem,1.7vw,1.15rem);
  color: #4A4560; margin: 0 auto 1.15rem;
  max-width: 64ch;
}
.hero-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.1rem; }
.hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: .55rem; }
.hero-badges li {
  background: #fff; border: 2.5px solid var(--yellow);
  border-radius: var(--radius-full); padding: .38rem .85rem;
  font-weight: 800; font-size: .88rem;
  box-shadow: 0 3px 10px rgba(255,202,26,.25);
}

/* ── DECO ITEMS (floating emoji/shapes) ── */
.deco-item {
  position: absolute; pointer-events: none; will-change: transform;
  user-select: none; line-height: 1;
}

/* ── WAVE DIVIDER ── */
.wave { line-height: 0; display: block; overflow: hidden; max-height: 44px; }
.wave svg { display: block; width: 100%; height: 100%; }

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg, var(--yellow), #FFB300);
  padding: 1.5rem 0; overflow: hidden; position: relative;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.25) 2px, transparent 2px);
  background-size: 22px 22px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-item .icon { font-size: 1.8rem; margin-bottom: .15rem; }
.stat-item strong {
  display: block; font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 800; line-height: 1; color: var(--text);
}
.stat-item span { font-weight: 800; font-size: .83rem; color: #4A3C00; }

/* ── TEASER CARDS ── */
.teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.teaser-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow);
  transition: var(--trans); position: relative; overflow: hidden;
  border: 3px solid transparent;
  display: flex; flex-direction: column;
}
.teaser-card:hover { transform: translateY(-7px) rotate(.3deg); box-shadow: var(--shadow-lg); }
.teaser-card-yellow { background: linear-gradient(135deg, #FFF8D6, #FFEEA0); }
.teaser-card-yellow:hover { border-color: var(--yellow); }
.teaser-card-mint { background: linear-gradient(135deg, #D9F5DD, #B5ECBA); }
.teaser-card-mint:hover   { border-color: var(--mint); }
.teaser-card-blue { background: linear-gradient(135deg, #DDF0FF, #B8DAFF); }
.teaser-card-blue:hover   { border-color: var(--blue); }
.teaser-card-purple { background: linear-gradient(135deg, #F0E0FF, #DBBDFF); }
.teaser-card-purple:hover { border-color: var(--purple); }
.teaser-icon { font-size: 2.6rem; margin-bottom: .5rem; }
.teaser-card h3 { margin-bottom: .5rem; }
.teaser-card p { color: var(--muted); flex: 1; margin-bottom: 1.2rem; }
.teaser-link { font-weight: 800; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.teaser-link:hover { gap: .55rem; }
.teaser-card-yellow .teaser-link { color: #8A6000; }
.teaser-card-mint .teaser-link   { color: #1E6B2E; }
.teaser-card-blue .teaser-link   { color: var(--blue); }
.teaser-card-purple .teaser-link { color: #8E24AA; }
.teaser-bg-icon {
  position: absolute; right: -14px; bottom: -18px;
  font-size: 7.5rem; opacity: .08; pointer-events: none; line-height: 1;
}

/* ── FEATURES ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; }
.feature-item {
  text-align: center; padding: 1.4rem 1rem;
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 3px solid var(--border);
  transition: var(--trans);
}
.feature-item:hover { transform: translateY(-5px) scale(1.02); border-color: var(--yellow); }
.feature-icon {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center; font-size: 1.85rem;
  margin: 0 auto .65rem;
  box-shadow: 0 4px 14px rgba(26,26,46,.14);
}
.fi-yellow { background: linear-gradient(135deg,#FFE066,#FFB800); }
.fi-coral  { background: linear-gradient(135deg,#FF8A8A,#FF3D3D); }
.fi-mint   { background: linear-gradient(135deg,#7EDF8A,#28A745); }
.fi-blue   { background: linear-gradient(135deg,#7ABAFF,#1565C0); }
.fi-purple { background: linear-gradient(135deg,#D48FFF,#9C27B0); }
.feature-item h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.feature-item p  { color: var(--muted); font-size: .88rem; }

/* ── GENERIC CARD ── */
.card {
  background: var(--card); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
  border: 2.5px solid var(--border); transition: .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ── SECTION BACKGROUNDS ── */
.bg-yellow { background: linear-gradient(135deg, #FFF3B0, #FFE566); }
.bg-coral  { background: linear-gradient(135deg, #FFE0DB, #FFBAB2); }
.bg-mint   { background: linear-gradient(135deg, #C9F5D0, #9EEAAA); }
.bg-blue   { background: linear-gradient(135deg, #D4E6FF, #A7C8FF); }
.bg-purple { background: linear-gradient(135deg, #EDD9FF, #D4AAFF); }
.bg-dark   { background: var(--text); color: #fff; }
.bg-dark .kicker { color: var(--yellow); }

/* polka-dot overlay on colored sections */
.bg-yellow::before,.bg-coral::before,.bg-mint::before,.bg-blue::before,.bg-purple::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image: radial-gradient(rgba(255,255,255,.5) 1.5px, transparent 1.5px);
  background-size: 18px 18px; z-index:0;
}
.bg-yellow,.bg-coral,.bg-mint,.bg-blue,.bg-purple { position: relative; }
.bg-yellow > *,.bg-coral > *,.bg-mint > *,.bg-blue > *,.bg-purple > * { position: relative; z-index: 1; }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  background: linear-gradient(135deg, var(--bg-yellow), var(--bg-coral));
  border-radius: var(--radius-lg); min-height: 260px;
  display: grid; place-items: center; text-align: center; padding: 2rem;
  font-weight: 800; color: var(--muted);
  border: 3px dashed rgba(26,26,46,.15);
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: 7.5rem 0 2.5rem; position: relative; overflow: clip;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: .5rem; }
.page-hero .lead { font-size: 1.02rem; color: var(--muted); max-width: 600px; }

/* soft watercolor blend between hero and first section */
main > .page-hero + .section {
  position: relative;
  z-index: 1;
}
main > .page-hero + .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -52px;
  height: 110px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(140px 36px at 8% 70%, rgba(255,244,224,.96), transparent 72%),
    radial-gradient(180px 42px at 22% 66%, rgba(255,238,215,.92), transparent 73%),
    radial-gradient(160px 38px at 38% 71%, rgba(255,236,220,.9), transparent 74%),
    radial-gradient(200px 48px at 54% 64%, rgba(255,226,235,.88), transparent 75%),
    radial-gradient(170px 42px at 70% 70%, rgba(225,238,255,.9), transparent 75%),
    radial-gradient(160px 40px at 84% 66%, rgba(213,236,255,.88), transparent 74%),
    radial-gradient(120px 34px at 94% 72%, rgba(234,247,238,.9), transparent 73%),
    linear-gradient(to bottom, rgba(255,251,238,.98) 0%, rgba(255,251,238,.58) 54%, rgba(255,251,238,0) 100%);
  filter: blur(10px) saturate(1.06);
  opacity: .98;
}
main > .page-hero + .section > * {
  position: relative;
  z-index: 1;
}

/* ── SECTION BACKGROUNDS ── */
.bg-yellow { background: var(--bg-yellow); }
.bg-coral  { background: var(--bg-coral); }
.bg-mint   { background: var(--bg-mint); }
.bg-blue   { background: var(--bg-blue); }
.bg-purple { background: var(--bg-purple); }
.bg-dark   { background: var(--text); color: #fff; }
.bg-dark .kicker { color: var(--yellow); }

/* ── TIMELINE (career) ── */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--yellow), var(--mint), var(--blue));
}
.tl-item { position: relative; padding: 0 0 2.2rem 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.55rem; top: .2rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 4px solid var(--coral);
  box-shadow: 0 2px 10px rgba(255,107,107,.4);
}
.tl-year {
  display: inline-block; background: var(--bg-coral); color: var(--coral);
  padding: .2rem .7rem; border-radius: var(--radius-full);
  font-weight: 800; font-size: .83rem; margin-bottom: .4rem;
}
.tl-item h4 { margin-bottom: .3rem; }
.tl-item p  { color: var(--muted); font-size: .93rem; margin: 0; }

/* ── CERT CARDS ── */
.cert-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1.2rem; }
.cert-card {
  background: var(--card); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow); border-top: 4px solid var(--coral);
}
.cert-card .year { font-family: "Baloo 2", sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--coral); line-height: 1; }
.cert-card h4 { margin: .2rem 0 .15rem; }
.cert-card p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ── QUOTE ── */
.quote-block {
  border-radius: var(--radius-lg); padding: 1.8rem 2rem 1.8rem 4.5rem;
  background: linear-gradient(135deg, var(--bg-yellow), var(--bg-coral));
  position: relative; border-left: 6px solid var(--yellow);
}
.quote-block::before {
  content: "\201C"; font-family: "Baloo 2", sans-serif; font-size: 7rem; line-height: .7;
  position: absolute; top: 1rem; left: 1rem;
  color: var(--yellow); opacity: .55;
}
.quote-block blockquote { font-size: clamp(1rem,1.7vw,1.18rem); font-weight: 700; font-style: italic; }
.quote-block cite { display: block; margin-top: .7rem; font-style: normal; font-weight: 800; color: var(--coral); }

/* ── STEP CARDS (Eingewöhnung) ── */
.steps { display: grid; gap: 1.2rem; counter-reset: step; }
.step-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--card); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; box-shadow: var(--shadow);
  counter-increment: step; transition: .2s;
}
.step-item:hover { transform: translateX(6px); }
.step-num {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #fff; display: grid; place-items: center;
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(255,107,107,.35);
}
.step-body h4 { margin-bottom: .3rem; }
.step-body p  { color: var(--muted); font-size: .92rem; margin: 0; }

/* ── TIME STEPS (Tagesablauf) ── */
.time-steps { display: grid; gap: .85rem; }
.time-step {
  display: flex; gap: 1.2rem; align-items: center;
  background: var(--card); border-radius: var(--radius);
  padding: 1rem 1.3rem; box-shadow: 0 3px 16px rgba(26,26,46,.08);
  border-left: 5px solid var(--step-color, var(--coral));
  transition: .2s;
}
.time-step:hover { transform: translateX(5px); }
.step-emoji { font-size: 1.9rem; flex-shrink: 0; }
.step-time  { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: .92rem; color: var(--step-color, var(--coral)); min-width: 110px; white-space: nowrap; }
.step-info h4 { margin-bottom: .15rem; }
.step-info p  { color: var(--muted); font-size: .9rem; margin: 0; }

/* ── ACTIVITY CARDS ── */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1rem; }
.activity-card {
  background: var(--card); border-radius: var(--radius); padding: 1.2rem;
  text-align: center; box-shadow: var(--shadow); transition: var(--trans);
  border: 2.5px solid transparent;
}
.activity-card:hover { transform: translateY(-5px) scale(1.02); border-color: var(--yellow); }
.activity-card .icon { font-size: 2.6rem; margin-bottom: .5rem; }
.activity-card h4 { font-size: .95rem; }
.activity-card p { color: var(--muted); font-size: .85rem; margin: 0; }

/* ── KOSTEN ── */
.kosten-card {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  border-radius: var(--radius-lg); padding: 2.5rem;
  color: #fff; text-align: center;
}
.kosten-card .price { font-family: "Baloo 2", sans-serif; font-size: 3.6rem; font-weight: 800; line-height: 1; margin: .5rem 0 .2rem; }
.kosten-card .price-label { font-size: 1rem; opacity: .9; margin-bottom: 1rem; }
.kosten-card p { opacity: .92; max-width: 440px; margin-inline: auto; }

/* ── HOURS ── */
.hours-grid { display: grid; gap: .7rem; }
.hours-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); border-radius: 12px; padding: .9rem 1.2rem;
  font-weight: 700; border-left: 4px solid var(--mint);
}
.hours-day  { color: var(--muted); }
.hours-time { color: var(--text); font-weight: 800; }

/* ── FORM ── */
.form-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem; box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
label { display: block; font-weight: 800; margin-bottom: .4rem; font-size: .88rem; }
input, textarea, select {
  width: 100%; border: 2px solid var(--border); border-radius: 12px;
  padding: .8rem 1rem; font: 700 .95rem "Nunito", sans-serif;
  background: var(--bg); transition: .2s;
}
input:focus, textarea:focus { border-color: var(--coral); background: #fff; outline: none; }
textarea { resize: vertical; }
.form-message { min-height: 1.4rem; font-weight: 800; margin-top: .5rem; }
.form-message.ok  { color: var(--mint); }
.form-message.err { color: var(--coral); }

/* ── FAQ ── */
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 3px 16px rgba(26,26,46,.08);
  border: 2.5px solid transparent; transition: .2s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-btn {
  width: 100%; text-align: left; padding: 1.1rem 1.3rem;
  background: none; border: none;
  font: 800 1rem/1.3 "Nunito", sans-serif;
  cursor: pointer; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.faq-btn::after { content: "+"; font-size: 1.5rem; font-weight: 800; color: var(--coral); flex-shrink: 0; transition: .25s; }
.faq-item.open .faq-btn::after { content: "−"; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-body-inner { padding: 0 1.3rem 1.2rem; color: var(--muted); font-weight: 600; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #FF3D6B 0%, var(--coral) 35%, var(--orange) 70%, #FFCA1A 100%);
  padding: 3.5rem 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.18) 2px, transparent 2px),
                    radial-gradient(rgba(255,255,255,.12) 2px, transparent 2px);
  background-size: 30px 30px, 45px 45px;
  background-position: 0 0, 15px 15px;
}
.cta-section h2 { color: #fff; margin-bottom: .5rem; }
.cta-section .cta-lead { font-size: 1.02rem; opacity: .92; max-width: 520px; margin: 0 auto 1.4rem; }
.cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }
.cta-deco { position: absolute; pointer-events: none; font-size: 4rem; opacity: .12; }

/* ── FLOATING CTA ── */
.floating-btn {
  position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 150;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #fff; border-radius: var(--radius-full);
  padding: .58rem .78rem; font-weight: 800; font-size: .75rem;
  box-shadow: 0 6px 16px rgba(255,107,107,.34);
  transition: var(--trans);
  animation: flt 3.5s ease-in-out infinite;
}
.floating-btn:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 14px 36px rgba(255,107,107,.6); animation: none; }
@keyframes flt { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius);
  display: grid; place-items: center;
  font-weight: 800; color: var(--muted); font-size: .9rem;
  background: linear-gradient(135deg, var(--bg-yellow), var(--bg-mint));
  border: 3px dashed rgba(26,26,46,.15);
  transition: .2s; cursor: pointer;
}
.gallery-item:hover { transform: scale(1.03); border-style: solid; border-color: var(--yellow); }

/* ── CONTACT INFO ── */
.contact-info-list { display: grid; gap: .9rem; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border-radius: var(--radius);
  padding: 1rem 1.2rem; box-shadow: 0 3px 14px rgba(26,26,46,.07);
}
.ci-icon { font-size: 1.7rem; flex-shrink: 0; }
.ci-label { font-weight: 800; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.ci-value { font-weight: 700; }

/* ── FOOTER ── */
.site-footer { background: var(--text); color: rgba(255,255,255,.82); padding: 2.5rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
.footer-brand .logo-mark { background: linear-gradient(135deg, var(--coral), var(--orange)); margin-bottom: .8rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: .7rem; line-height: 1.6; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { color: rgba(255,255,255,.62); font-weight: 700; font-size: .88rem; transition: .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: .5rem;
}

/* ── REVEAL ANIMATION ── */
/* Default: visible (no-JS fallback). JS adds .js-ready to <html> to enable hiding. */
.reveal { transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.js-ready .reveal { opacity: 0; transform: translateY(16px); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .4s; }
.d6 { transition-delay: .48s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 840px) {
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .split.rev > *:first-child { order: 0; }
  .teaser-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,251,238,.97); backdrop-filter: blur(12px);
    flex-direction: column; padding: 1.2rem; gap: .2rem;
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 8px 30px rgba(26,26,46,.1);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .7rem 1rem; }
  .page-hero { padding: 6.5rem 0 2rem; }
  main > .page-hero + .section::before {
    top: -38px;
    height: 82px;
    filter: blur(6px);
  }
  .section { padding: 2.5rem 0; }
  .cta-section { padding: 2.8rem 0; }
  .hero { min-height: auto; padding: 5.25rem 0 2rem; }
  .hero-illustration-frame { padding: .45rem; border-radius: 28px; }
  .hero-word { font-size: 104px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .time-step { flex-wrap: wrap; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .hero-badges { gap: .4rem; }
  .hero-badges li { font-size: .8rem; padding: .3rem .65rem; }
  .hero-kicker { margin-bottom: .7rem; }
  .hero-illustration { margin-bottom: .9rem; }
  .hero-illustration-frame { padding: .25rem; border-radius: 22px; }
  .hero-word { font-size: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

