/* =================================================================
   CARENES — Design System
   Beauty & Salon Buchungsplattform
================================================================= */

/* ---------- Fonts ---------- */
@font-face { font-display: swap; }

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --primary:   #006C71;
  --secondary: #0B7C81;
  --accent:    #14B8C4;
  --bg:        #F8FAFB;
  --dark:      #0F172A;
  --white:     #FFFFFF;

  /* Derived tints */
  --primary-050: #E6F2F2;
  --primary-100: #CCE5E6;
  --primary-700: #00565A;
  --accent-soft: rgba(20, 184, 196, 0.12);

  /* Neutrals */
  --ink:        #0F172A;
  --ink-soft:   #334155;
  --muted:      #64748B;
  --line:       #E2E8F0;
  --line-soft:  #EEF2F4;

  /* Typography */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 32px 64px rgba(0, 86, 90, 0.18);
  --shadow-teal: 0 18px 40px rgba(0, 108, 113, 0.28);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --nav-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
p  { color: var(--ink-soft); }

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-050);
  padding: 7px 16px; border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.12rem; margin-top: 16px; color: var(--muted); }
.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-teal); }
.btn--primary:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: 0 22px 46px rgba(0,108,113,.34); }
.btn--ghost { background: var(--white); color: var(--primary); border: 1.5px solid var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--light { background: rgba(255,255,255,.14); color: var(--white); border: 1.5px solid rgba(255,255,255,.32); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--primary); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* Store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--dark); color: var(--white);
  padding: 11px 20px; border-radius: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge span small { font-size: 0.66rem; opacity: .8; }
.store-badge span b { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; }
.store-badge--light { background: var(--white); color: var(--dark); border: 1px solid var(--line); }

/* =================================================================
   NAVIGATION
================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(248, 250, 251, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(15,23,42,.06), var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; gap: 32px; width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: 24px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.97rem;
  color: var(--ink-soft); padding: 9px 14px; border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--primary); background: var(--primary-050); }
.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__actions .btn { padding: 11px 20px; font-size: 0.94rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--bg);
  padding: 28px 24px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--ink); padding: 14px 8px; border-bottom: 1px solid var(--line-soft); }
.nav__drawer .drawer-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
body.nav-open { overflow: hidden; }

/* =================================================================
   HERO
================================================================= */
.hero { position: relative; padding-top: calc(var(--nav-h) + 60px); padding-bottom: 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(20,184,196,.18), transparent 60%),
    radial-gradient(820px 520px at 10% 8%, rgba(0,108,113,.12), transparent 58%),
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(15,23,42,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero__rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero__rating .stars { color: #F5A623; letter-spacing: 2px; font-size: 1.05rem; }
.hero__rating span { font-size: 0.92rem; color: var(--muted); font-weight: 500; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__stores { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero screenshot visual (pre-composed marketing slides) */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__phone-wrap { position: relative; width: min(340px, 90%); }
.hero__phone-bg {
  position: absolute; inset: -5% -7% -7% -7%; z-index: 0;
  background: radial-gradient(120% 120% at 70% 10%, rgba(20,184,196,.28), transparent 60%);
  border-radius: 50px; transform: rotate(-2deg);
}
.phone {
  position: relative; z-index: 1;
  border-radius: 30px; overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--primary);
}
.phone img { width: 100%; height: auto; display: block; }
.hero__phone-wrap .phone { transform: rotate(-2deg); transition: transform .5s var(--ease); }
.hero__phone-wrap:hover .phone { transform: rotate(0deg); }

/* Floating cards */
.float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-md);
  padding: 13px 17px;
  display: flex; align-items: center; gap: 12px;
}
.float-card b { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); display: block; line-height: 1; }
.float-card small { font-size: 0.76rem; color: var(--muted); }
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--primary-050); color: var(--primary); flex-shrink: 0; }
.float-card .fc-ico svg { width: 20px; height: 20px; }
.fc-1 { top: 8%; left: -7%; animation: floaty 6s ease-in-out infinite; }
.fc-2 { top: 42%; right: -10%; animation: floaty 6s ease-in-out infinite .8s; }
.fc-3 { bottom: 9%; left: -4%; animation: floaty 6s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =================================================================
   TRUST / LOGO CLOUD
================================================================= */
.trust { padding-block: 54px; border-block: 1px solid var(--line-soft); background: var(--white); }
.trust__title { text-align: center; font-family: var(--font-display); font-weight: 500; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.logo-cloud { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 5vw, 60px); }
.logo-cloud .brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.02em;
  color: var(--muted); opacity: .72; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .25s, color .25s;
}
.logo-cloud .brand:hover { opacity: 1; color: var(--primary); }
.logo-cloud .brand svg { width: 26px; height: 26px; }

/* =================================================================
   FEATURES (customer)
================================================================= */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .ico {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(140deg, var(--primary-050), var(--accent-soft));
  color: var(--primary);
}
.feature-card .ico svg { width: 27px; height: 27px; }
.feature-card h3 { font-size: 1.28rem; margin-bottom: 9px; }
.feature-card p { font-size: 1rem; color: var(--muted); }

/* =================================================================
   SHOWCASE (alternating)
================================================================= */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; margin-block: clamp(60px, 8vw, 110px); }
.showcase:first-of-type { margin-top: 0; }
.showcase--rev .showcase__media { order: 2; }
.showcase__text .eyebrow { margin-bottom: 18px; }
.showcase__text h2 { margin-bottom: 18px; }
.showcase__text p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 26px; }
.showcase__list { display: grid; gap: 14px; }
.showcase__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 1.02rem; }
.showcase__list .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-050); color: var(--primary); display: grid; place-items: center; margin-top: 2px; }
.showcase__list .tick svg { width: 14px; height: 14px; }

.showcase__media { position: relative; display: flex; justify-content: center; }
.device {
  position: relative; width: min(330px, 82%);
  border-radius: 28px; overflow: hidden; background: var(--primary);
  box-shadow: var(--shadow-lg);
  transition: transform .5s var(--ease);
}
.device img { width: 100%; height: auto; }
.showcase__media:hover .device { transform: translateY(-6px); }
.showcase__media .blob {
  position: absolute; z-index: -1; width: 86%; aspect-ratio: 1; border-radius: 50%;
  filter: blur(10px); opacity: .45;
  background: radial-gradient(circle, var(--accent), transparent 68%);
}
.showcase__media .blob.a { top: -8%; left: 2%; }
.showcase__media .blob.b { bottom: -6%; right: 4%; background: radial-gradient(circle, var(--primary), transparent 68%); }

/* =================================================================
   SALON / BUSINESS SECTION (dark)
================================================================= */
.salon { position: relative; background: var(--dark); color: var(--white); overflow: hidden; }
.salon::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(700px 480px at 88% 0%, rgba(20,184,196,.22), transparent 60%),
    radial-gradient(620px 460px at 0% 100%, rgba(0,108,113,.3), transparent 60%);
}
.salon > .container { position: relative; }
.salon h2, .salon h3 { color: var(--white); }
.salon .eyebrow { background: rgba(20,184,196,.16); color: var(--accent); }
.salon .section-head p { color: rgba(255,255,255,.72); }
.salon__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.salon__features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.salon__feature {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 20px;
  transition: background .3s, transform .3s var(--ease);
}
.salon__feature:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.salon__feature .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(20,184,196,.16); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.salon__feature .ico svg { width: 22px; height: 22px; }
.salon__feature h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 5px; }
.salon__feature p { font-size: 0.92rem; color: rgba(255,255,255,.66); }
.salon__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.salon__media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.salon__media .device { width: min(290px, 74%); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-xl); background: var(--primary); }
.salon__media .device.back { position: absolute; transform: rotate(5deg) translate(46px, 30px); width: min(255px, 66%); opacity: .96; z-index: 0; }
.salon__media .device.front { position: relative; transform: rotate(-3deg); z-index: 1; transition: transform .5s var(--ease); }
.salon__media:hover .device.front { transform: rotate(0deg); }

/* =================================================================
   STATS
================================================================= */
.stats { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 4.4vw, 3.4rem); line-height: 1; letter-spacing: -0.03em; }
.stat .label { margin-top: 10px; font-size: 1rem; color: rgba(255,255,255,.82); }
.stats__grid .stat + .stat { position: relative; }

/* =================================================================
   TESTIMONIALS
================================================================= */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-card .stars { color: #F5A623; letter-spacing: 2px; font-size: 0.98rem; }
.testi-card blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.6; flex-grow: 1; }
.testi-card .who { display: flex; align-items: center; gap: 13px; }
.testi-card .avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.05rem; }
.testi-card .who b { font-family: var(--font-display); display: block; font-size: 1rem; color: var(--ink); }
.testi-card .who small { color: var(--muted); font-size: 0.85rem; }
.testi-card .tag { font-size: 0.7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); }
.tag--kunde { background: var(--primary-050); color: var(--primary); }
.tag--salon { background: var(--accent-soft); color: var(--secondary); }

/* =================================================================
   FAQ
================================================================= */
.faq__wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink);
}
.faq-q .chev { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--primary-050); color: var(--primary); display: grid; place-items: center; transition: transform .35s var(--ease), background .25s; }
.faq-q .chev svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); background: var(--primary); color: var(--white); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a__inner { padding: 0 4px 24px; color: var(--ink-soft); font-size: 1.02rem; }
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.faq-cats span { font-size: 0.85rem; font-weight: 500; color: var(--muted); background: var(--white); border: 1px solid var(--line); padding: 7px 16px; border-radius: var(--r-pill); }

/* =================================================================
   DOWNLOAD CTA
================================================================= */
.cta-band { position: relative; }
.cta-box {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 55%, var(--accent) 130%);
  color: var(--white); border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 76px) clamp(28px, 5vw, 70px);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.cta-box::before { content: ""; position: absolute; inset: 0; opacity: .4; background: radial-gradient(600px 300px at 80% 0%, rgba(255,255,255,.22), transparent 60%); }
.cta-box > * { position: relative; }
.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,.86); font-size: 1.15rem; max-width: 560px; margin: 0 auto 32px; }
.cta-box .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =================================================================
   CONTACT
================================================================= */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact__info .info-row { display: flex; align-items: flex-start; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__info .info-row:last-child { border-bottom: none; }
.contact__info .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--primary-050); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; }
.contact__info .ico svg { width: 22px; height: 22px; }
.contact__info b { font-family: var(--font-display); display: block; color: var(--ink); margin-bottom: 2px; }
.contact__info a, .contact__info span { color: var(--ink-soft); }
.form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 0.84rem; color: var(--muted); margin-top: 6px; }
.form__success { display: none; background: var(--primary-050); color: var(--primary-700); border-radius: var(--r-sm); padding: 14px 18px; font-weight: 500; margin-top: 16px; }
.form__success.show { display: block; }

/* =================================================================
   FOOTER
================================================================= */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding-top: 70px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 36px; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,.62); font-size: 0.95rem; max-width: 280px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: background .25s, transform .25s, color .25s; }
.footer__social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h5 { font-family: var(--font-display); color: var(--white); font-size: 0.98rem; margin-bottom: 16px; font-weight: 600; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: rgba(255,255,255,.62); font-size: 0.94rem; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-block: 26px; font-size: 0.88rem; color: rgba(255,255,255,.5); }
.footer__bottom .links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__bottom a:hover { color: var(--accent); }

/* =================================================================
   LEGAL / CONTENT PAGES
================================================================= */
.page-hero { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 40px; background: var(--white); border-bottom: 1px solid var(--line-soft); }
.page-hero .breadcrumb { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }
.page-hero .breadcrumb a:hover { color: var(--primary); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero p { margin-top: 12px; color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.legal { padding-block: 56px 90px; }
.legal__wrap { max-width: 820px; margin-inline: auto; }
.legal__wrap h2 { font-size: 1.45rem; margin: 38px 0 14px; padding-top: 8px; }
.legal__wrap h2:first-child { margin-top: 0; }
.legal__wrap h3 { font-size: 1.12rem; margin: 24px 0 10px; }
.legal__wrap p { margin-bottom: 14px; color: var(--ink-soft); font-size: 1.02rem; }
.legal__wrap ul { margin: 0 0 16px; padding-left: 4px; display: grid; gap: 9px; }
.legal__wrap ul li { display: flex; gap: 11px; color: var(--ink-soft); font-size: 1.01rem; }
.legal__wrap ul li::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: 9px; }
.legal__wrap a { color: var(--primary); font-weight: 500; }
.legal__wrap a:hover { text-decoration: underline; }
.legal__wrap strong { color: var(--ink); }
.legal__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 28px; margin-bottom: 22px; }
.legal__meta { font-size: 0.9rem; color: var(--muted); margin-bottom: 30px; }

/* =================================================================
   REVEAL ANIMATION
================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { order: -1; }
  .salon__grid, .contact__grid { grid-template-columns: 1fr; }
  .salon__media { min-height: 420px; margin-top: 10px; }
  .features__grid, .testi__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__actions { margin-left: auto; }
  .showcase, .showcase--rev { grid-template-columns: 1fr; gap: 40px; }
  .showcase--rev .showcase__media { order: 0; }
  .showcase__media { margin-top: 6px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .features__grid, .testi__grid, .salon__features { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__cta .btn, .cta-box .cta-actions .btn { width: 100%; }
  .hero__cta, .cta-box .cta-actions { width: 100%; }
  .fc-1 { left: -2%; top: 4%; }
  .fc-2 { right: -2%; }
  .fc-3 { left: 0; }
  .float-card { padding: 10px 13px; }
  .float-card b { font-size: 1rem; }
}
