/* ===========================================================
   Evitas Landingpage — main.css
   Stack: Vanilla CSS, Custom Properties, Mobile First
   =========================================================== */

/* --- Self-hosted Fonts ----------------------------------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair.woff2") format("woff2-variations"),
       url("../fonts/playfair.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat.woff2") format("woff2-variations"),
       url("../fonts/montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/caveat.woff2") format("woff2-variations"),
       url("../fonts/caveat.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens ----------------------------------------------- */
:root {
  /* Brand */
  --brand-900: #2A1A4A;
  --brand-700: #3E276C;
  --brand-500: #6B47A8;
  --brand-300: #A375CC;
  --brand-100: #E8DFF5;
  --brand-50:  #F6F1FC;

  /* CTA */
  --cta-700: #B02A55;
  --cta-500: #CC3366;

  /* Surface */
  --paper:   #FBF7EE;
  --cream:   #F4EFE8;
  --white:   #FFFFFF;

  /* Ink */
  --ink-900: #1A1424;
  --ink-700: #2F2640;
  --ink-600: #5A4F6E;
  --ink-400: #8A809F;

  /* Lines */
  --line:    rgba(62, 39, 108, 0.12);

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-accent:  "Caveat", "Brush Script MT", cursive;

  /* Radii */
  --r-card: 20px;
  --r-pill: 999px;
  --r-input: 12px;

  /* Shadows */
  --shadow-card: 0 4px 24px -8px rgba(62, 39, 108, 0.18);
  --shadow-lift: 0 12px 40px -16px rgba(62, 39, 108, 0.28);
  --shadow-cta:  0 10px 32px -10px rgba(204, 51, 102, 0.55);
  --shadow-cta-hover: 0 14px 36px -10px rgba(204, 51, 102, 0.7);

  /* Spacing */
  --section-y: clamp(56px, 8vw, 112px);
  --container-w: 1180px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* --- Reset (minimal) -------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--brand-300); outline-offset: 2px; border-radius: 4px; }

/* --- Type-Scale ------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--brand-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 6.4vw, 60px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4.4vw, 42px); }
h3 { font-family: var(--font-sans); font-weight: 600; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.3; color: var(--brand-700); letter-spacing: -0.005em; }
h4 { font-family: var(--font-sans); font-weight: 600; font-size: 17px; color: var(--brand-700); }

p { color: var(--ink-700); }
.lead { font-size: clamp(17px, 1.9vw, 20px); color: var(--ink-700); line-height: 1.5; }
.eyebrow { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-500); }
.accent { font-family: var(--font-accent); font-weight: 600; color: var(--brand-500); }

/* --- Container ------------------------------------------- */
.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-y) 0; scroll-margin-top: 80px; }
section.tight { padding: calc(var(--section-y) * 0.6) 0; }

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 17px;
  padding: 18px 28px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; text-align: center;
  min-height: 56px; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--cta-500); color: var(--white); box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--cta-700); box-shadow: var(--shadow-cta-hover); transform: translateY(-2px); }
.btn--secondary { background: var(--brand-700); color: var(--white); box-shadow: var(--shadow-card); }
.btn--secondary:hover { background: var(--brand-900); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brand-700); border: 2px solid var(--brand-700); }
.btn--ghost:hover { background: var(--brand-700); color: var(--white); }
.btn--light { background: var(--white); color: var(--brand-700); box-shadow: var(--shadow-card); }
.btn--light:hover { background: var(--brand-50); }
.btn--block { width: 100%; }
.btn--lg { font-size: 18px; padding: 20px 32px; min-height: 62px; }
.btn--sm { font-size: 15px; padding: 12px 20px; min-height: 44px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--paper); border-radius: var(--r-card);
  padding: 28px; box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.card--tinted { background: var(--brand-50); border-color: transparent; }
.card--white  { background: var(--white); }

/* --- Form Elements --------------------------------------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 15px; color: var(--ink-900); }
.field .hint { font-size: 13px; color: var(--ink-400); }
.input, .textarea, select.input {
  appearance: none; width: 100%;
  background: var(--white); color: var(--ink-900);
  border: 2px solid var(--line);
  border-radius: var(--r-input);
  padding: 14px 16px; font-size: 17px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .textarea:focus, select.input:focus {
  outline: none;
  border-color: var(--brand-300);
  box-shadow: 0 0 0 4px rgba(163, 117, 204, 0.18);
}
.input.is-error, .textarea.is-error { border-color: var(--cta-500); }
.field .error { color: var(--cta-700); font-size: 13.5px; font-weight: 500; }

.checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox .box {
  flex: 0 0 22px; width: 22px; height: 22px;
  border: 2px solid var(--brand-300); border-radius: 6px;
  background: var(--white); display: grid; place-items: center;
  margin-top: 2px; transition: background .2s var(--ease), border-color .2s var(--ease);
}
.checkbox .box::after {
  content: ""; width: 11px; height: 6px;
  border-left: 2.5px solid var(--white); border-bottom: 2.5px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transition: transform .15s var(--ease);
}
.checkbox input:checked + .box { background: var(--brand-700); border-color: var(--brand-700); }
.checkbox input:checked + .box::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }
.checkbox .text { font-size: 14.5px; color: var(--ink-700); line-height: 1.45; }
.checkbox a { color: var(--brand-700); text-decoration: underline; }

/* --- Radio/Choice Cards ---------------------------------- */
.choice {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--r-input);
  padding: 16px 18px;
  cursor: pointer; transition: all .2s var(--ease);
  text-align: left;
}
.choice:hover { border-color: var(--brand-300); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .dot {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--brand-300); background: var(--white);
  display: grid; place-items: center;
}
.choice .dot::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand-700); transform: scale(0); transition: transform .15s var(--ease);
}
.choice input:checked ~ .dot::after { transform: scale(1); }
.choice input:checked ~ .label { color: var(--brand-900); }
.choice.is-selected, .choice:has(input:checked) {
  border-color: var(--brand-700); background: var(--brand-50);
  box-shadow: var(--shadow-card);
}
.choice .label { font-weight: 500; color: var(--ink-900); }

/* Multi-select (square) */
.choice--multi .dot { border-radius: 6px; }
.choice--multi .dot::after {
  width: 11px; height: 6px; border-radius: 0; background: transparent;
  border-left: 2.5px solid var(--brand-700); border-bottom: 2.5px solid var(--brand-700);
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
}
.choice--multi input:checked ~ .dot::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }

/* --- Utilities ------------------------------------------- */
.hidden { display: none !important; }
.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; }
.text-center { text-align: center; }
.muted { color: var(--ink-600); }
.divider { height: 1px; background: var(--line); border: 0; margin: 12px 0; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 239, 232, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.site-header .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--brand-700); letter-spacing: -0.01em;
}
.site-header .logo img { width: 36px; height: 36px; }
.site-header .logo .sub { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-500); display: block; line-height: 1; margin-top: 2px; }
.site-header .right { display: flex; align-items: center; gap: 14px; }
.site-header .tel {
  display: none; align-items: center; gap: 8px;
  font-weight: 600; color: var(--brand-700);
}
.site-header .tel:hover { color: var(--cta-500); }
.site-header .header-cta { display: none; }
@media (min-width: 720px) {
  .site-header .tel { display: inline-flex; }
}
@media (min-width: 920px) {
  .site-header .header-cta { display: inline-flex; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; overflow: hidden; padding-top: clamp(36px, 6vw, 80px); padding-bottom: clamp(56px, 7vw, 100px); }
.hero .grid {
  display: grid; gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 920px) {
  .hero .grid { grid-template-columns: 1.05fr 1fr; }
}
.hero .eyebrow { margin-bottom: 14px; }
.hero h1 { color: var(--brand-900); margin-bottom: 18px; }
.hero h1 .accent { display: block; font-size: 0.55em; margin-top: 6px; }
.hero .sub { font-size: clamp(17px, 1.9vw, 20px); color: var(--ink-700); margin-bottom: 28px; max-width: 540px; line-height: 1.5; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .cta-meta { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-600); margin-top: 18px; }
.hero .cta-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: #2EBD6B; box-shadow: 0 0 0 4px rgba(46,189,107,0.18); }

.hero-visual {
  position: relative;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
  background: var(--brand-100);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-card);
}
.hero-visual .badge .avatars { display: flex; }
.hero-visual .badge .avatars img {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -10px; background: var(--cream); object-fit: cover;
}
.hero-visual .badge .avatars img:first-child { margin-left: 0; }
.hero-visual .badge .text { font-size: 13px; line-height: 1.3; }
.hero-visual .badge .text strong { display: block; color: var(--brand-900); font-weight: 700; }
.hero-visual .badge .text span { color: var(--ink-600); }

/* ===========================================================
   TRUST BAR
   =========================================================== */
.trust-bar { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.trust-bar .items {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (min-width: 720px) { .trust-bar .items { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .trust-bar .items { grid-template-columns: repeat(5, 1fr); } }
.trust-bar .item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-700); font-weight: 500; }
.trust-bar .item svg { flex-shrink: 0; }

/* ===========================================================
   SECTION HEADER PATTERN
   =========================================================== */
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: clamp(16px, 1.8vw, 18px); color: var(--ink-600); }

/* ===========================================================
   PROBLEM CARDS
   =========================================================== */
.problem { background: var(--brand-50); }
.problem-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card { background: var(--white); border-radius: var(--r-card); padding: 28px; box-shadow: var(--shadow-card); }
.problem-card .icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--brand-100); color: var(--brand-700);
  display: grid; place-items: center; margin-bottom: 18px;
}
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { font-size: 15.5px; line-height: 1.55; }

/* ===========================================================
   SERVICES
   =========================================================== */
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--paper); border-radius: var(--r-card);
  padding: 28px; border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.service-card .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; color: var(--brand-300); line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { color: var(--brand-700); margin-bottom: 8px; font-size: 19px; }
.service-card p { font-size: 15px; color: var(--ink-600); line-height: 1.55; }

/* ===========================================================
   PFLEGEGRAD BOX
   =========================================================== */
.pflegegrad { background: var(--brand-700); color: var(--white); position: relative; overflow: hidden; }
.pflegegrad::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-500) 0%, transparent 70%);
  opacity: 0.5;
}
.pflegegrad .grid {
  display: grid; gap: clamp(28px, 5vw, 48px); align-items: center;
  grid-template-columns: 1fr;
  position: relative; z-index: 1;
}
@media (min-width: 920px) { .pflegegrad .grid { grid-template-columns: 1.1fr 1fr; } }
.pflegegrad h2 { color: var(--white); margin-bottom: 16px; }
.pflegegrad .lead { color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.pflegegrad ul { display: grid; gap: 12px; margin-top: 18px; }
.pflegegrad ul li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.95); font-size: 16px; }
.pflegegrad ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--brand-300); }
.pflegegrad .disclaimer {
  background: rgba(255,255,255,0.08); border-left: 3px solid var(--brand-300);
  padding: 16px 18px; border-radius: 10px;
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5;
  margin-top: 24px;
}
.pflegegrad .panel {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px; padding: 32px;
}
.pflegegrad .panel h3 { color: var(--white); margin-bottom: 18px; font-family: var(--font-display); font-size: 24px; }
.pflegegrad .panel .row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 15px; }
.pflegegrad .panel .row:last-child { border-bottom: 0; }
.pflegegrad .panel .row span:last-child { font-weight: 600; color: var(--brand-300); }

/* ===========================================================
   QUIZ WIZARD
   =========================================================== */
.quiz { background: var(--cream); }
.quiz-card {
  background: var(--white); border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lift);
  max-width: 720px; margin: 0 auto;
}
.quiz-progress {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.quiz-progress .label { font-size: 13px; font-weight: 600; color: var(--ink-600); letter-spacing: 0.05em; text-transform: uppercase; }
.quiz-progress .label strong { color: var(--brand-700); }
.quiz-progress .bar {
  flex: 1; height: 6px; background: var(--brand-100); border-radius: 999px;
  margin: 0 16px; overflow: hidden;
}
.quiz-progress .bar > span {
  display: block; height: 100%; background: linear-gradient(90deg, var(--brand-500), var(--brand-300));
  border-radius: inherit; transition: width .35s var(--ease);
}
.quiz-step { display: none; animation: stepIn .35s var(--ease); }
.quiz-step.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-step h3 { font-family: var(--font-display); color: var(--brand-900); font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.quiz-step .sub { font-size: 15px; color: var(--ink-600); margin-bottom: 24px; }
.quiz-step .options { display: grid; gap: 10px; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; flex-wrap: wrap; }
.quiz-nav .back {
  font-size: 15px; font-weight: 500; color: var(--ink-600);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 4px;
}
.quiz-nav .back:hover { color: var(--brand-700); }
.quiz-nav .back.is-hidden { visibility: hidden; }

/* Contact step */
.quiz-step.contact { }
.quiz-step.contact .fields { display: grid; gap: 16px; }
.quiz-step.contact .row-2 { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .quiz-step.contact .row-2 { grid-template-columns: 1fr 1fr; } }

/* Success */
.quiz-success { text-align: center; padding: 20px 0; }
.quiz-success .icon-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-300));
  margin: 0 auto 22px; display: grid; place-items: center; color: var(--white);
  box-shadow: var(--shadow-cta);
}
.quiz-success h3 { margin-bottom: 12px; }
.quiz-success p { margin-bottom: 24px; }

/* Quick form fallback */
.quick-form-toggle {
  text-align: center; margin-top: 22px; font-size: 14.5px; color: var(--ink-600);
}
.quick-form-toggle button { color: var(--brand-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.quick-form { display: none; margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--line); }
.quick-form.is-open { display: block; }
.quick-form .row-2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .quick-form .row-2 { grid-template-columns: 1fr 1fr; } }

/* ===========================================================
   TEAM
   =========================================================== */
.team { background: var(--white); }
.team-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .team-grid { grid-template-columns: repeat(6, 1fr); } }
.team-member { text-align: center; }
.team-member .photo {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: var(--cream); margin-bottom: 12px;
  overflow: hidden; box-shadow: var(--shadow-card);
}
.team-member .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member .name { font-weight: 600; color: var(--brand-900); font-size: 15px; }
.team-member .role { color: var(--ink-600); font-size: 13px; }

/* ===========================================================
   CEO QUOTE
   =========================================================== */
.ceo-quote { background: var(--brand-50); }
.ceo-quote .grid {
  display: grid; gap: clamp(28px, 5vw, 56px); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .ceo-quote .grid { grid-template-columns: 0.8fr 1.2fr; } }
.ceo-quote .photo {
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5; max-width: 420px;
}
.ceo-quote .photo img { width: 100%; height: 100%; object-fit: cover; }
.ceo-quote blockquote {
  font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.25; color: var(--brand-900); font-weight: 700;
  margin-bottom: 22px;
}
.ceo-quote blockquote::before { content: "„"; font-size: 1.4em; color: var(--brand-300); line-height: 0; margin-right: 4px; vertical-align: -0.3em; }
.ceo-quote blockquote::after  { content: ""; }
.ceo-quote .author { font-weight: 600; color: var(--brand-700); }
.ceo-quote .author span { display: block; font-weight: 400; font-size: 14px; color: var(--ink-600); margin-top: 2px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq .list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white); border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden; transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 22px; padding-right: 56px;
  font-weight: 600; color: var(--brand-900); font-size: 17px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--brand-700); border-bottom: 2px solid var(--brand-700);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details .body { padding: 0 22px 22px; color: var(--ink-700); font-size: 15.5px; line-height: 1.6; }

/* ===========================================================
   CTA BANNER
   =========================================================== */
.cta-banner { background: var(--brand-900); color: var(--white); }
.cta-banner .container { text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: clamp(16px, 2vw, 19px); }
.cta-banner .actions { display: inline-flex; flex-direction: column; gap: 12px; align-items: center; }
@media (min-width: 600px) { .cta-banner .actions { flex-direction: row; } }
.cta-banner .tel-row { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 18px; }
.cta-banner .tel-row a { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--brand-900); color: rgba(255,255,255,0.7); padding: 56px 0 40px; }
.site-footer .grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  margin-bottom: 32px;
}
@media (min-width: 720px) { .site-footer .grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.site-footer .brand img { width: 40px; height: 40px; filter: brightness(0) invert(1); opacity: 0.9; }
.site-footer .brand strong { font-family: var(--font-display); font-size: 22px; color: var(--white); font-weight: 800; }
.site-footer h4 { color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,0.7); display: inline-block; padding: 4px 0; }
.site-footer a:hover { color: var(--white); }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
  font-size: 13px;
}

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; gap: 10px;
  box-shadow: 0 -4px 18px -8px rgba(62,39,108,0.18);
}
.sticky-cta .btn { flex: 1; padding: 14px 18px; min-height: 50px; font-size: 16px; }
.sticky-cta .btn--ghost { background: var(--white); flex: 0 0 auto; padding: 14px; }
@media (min-width: 920px) { .sticky-cta { display: none; } }
body.has-sticky-cta { padding-bottom: 84px; }
@media (min-width: 920px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ===========================================================
   CONSENT BANNER
   =========================================================== */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: var(--white); border-radius: 18px;
  box-shadow: var(--shadow-lift);
  padding: 20px; z-index: 110;
  max-width: 460px; margin-left: auto;
  display: none;
}
.consent.is-open { display: block; }
.consent h4 { font-family: var(--font-sans); font-size: 16px; font-weight: 700; color: var(--brand-900); margin-bottom: 8px; }
.consent p { font-size: 13.5px; color: var(--ink-600); line-height: 1.5; margin-bottom: 14px; }
.consent p a { color: var(--brand-700); text-decoration: underline; }
.consent .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent .btn { padding: 12px 18px; min-height: 44px; font-size: 14.5px; }
@media (max-width: 480px) {
  .consent { left: 12px; right: 12px; bottom: 12px; }
  .consent .btn { flex: 1; }
}
body.has-sticky-cta .consent { bottom: 92px; }
@media (min-width: 920px) { body.has-sticky-cta .consent { bottom: 16px; } }

/* ===========================================================
   GLOBAL TOAST / NOTICE
   =========================================================== */
.notice {
  font-size: 13.5px; color: var(--ink-600); line-height: 1.5;
  background: var(--brand-50); border-left: 3px solid var(--brand-300);
  padding: 12px 14px; border-radius: 8px; margin-top: 14px;
}
.notice strong { color: var(--brand-700); }
