/* ==========================================================================
   ВНЕШНИЙ ВИД САЙТА.
   Редактировать не обязательно — но если захотите поменять цвета,
   всё настраивается в блоке :root ниже (переменные --c-...).
   ========================================================================== */

:root {
  /* Основная палитра — мятно-бирюзовый (медицина/чистота) + тёплое золото (премиум) */
  --c-mint-50:  #f2faf8;
  --c-mint-100: #e2f3ee;
  --c-mint-200: #c3e7dd;
  --c-mint-600: #1f8f7a;
  --c-mint-700: #17705f;
  --c-mint-900: #0d3b32;

  --c-gold-500: #c8a24d;
  --c-gold-600: #b08a34;

  --c-ink-900: #12211e;
  --c-ink-700: #384843;
  --c-ink-500: #647670;
  --c-ink-300: #a9b8b3;

  --c-bg: #ffffff;
  --c-bg-alt: #f7faf9;
  --c-border: #e5ede9;
  --c-white: #ffffff;
  /* Футер всегда тёмный: эта переменная не переопределяется системной темой. */
  --c-footer-bg: #12211e;

  --shadow-sm: 0 2px 8px rgba(13, 59, 50, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 59, 50, 0.10);
  --shadow-lg: 0 24px 64px rgba(13, 59, 50, 0.14);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-bg: #0f1a17;
    --c-bg-alt: #14201d;
    --c-border: #24342f;
    --c-ink-900: #eef5f2;
    --c-ink-700: #cbd8d3;
    --c-ink-500: #96a8a2;
    --c-mint-50: #142924;
    --c-mint-100: #16332b;
    --c-white: #182420;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink-900);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-ink-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { line-height: 1.65; color: var(--c-ink-700); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }

.icon {
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .8em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-mint-600), var(--c-mint-700));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--c-mint-700);
  border-color: var(--c-mint-200);
}
.btn-ghost:hover { background: var(--c-mint-50); }
.btn-lg { padding: 1em 2em; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Reveal-анимация при прокрутке (с лёгкой 3D-подачей) ---------- */
.reveal {
  opacity: 0;
  transform: perspective(900px) translateY(28px) rotateX(8deg);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: perspective(900px) translateY(0) rotateX(0); }

/* ---------- Наклон карточек за курсором (3D tilt) ---------- */
.tilt {
  --mx: 50%;
  --my: 50%;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(255,255,255,.35), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.tilt.is-hovering::after { opacity: 1; }
@media (prefers-color-scheme: dark) {
  .tilt::after { background: radial-gradient(320px circle at var(--mx) var(--my), rgba(255,255,255,.08), transparent 60%); }
}

/* ---------- Магнитные кнопки ---------- */
.magnetic { transition: transform .25s cubic-bezier(.2,.7,.2,1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity .3s ease; transform: none !important; opacity: 1; }
  .tilt, .magnetic { transition: none !important; transform: none !important; }
}

/* ============================== ШАПКА ============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,.92);
}
@media (prefers-color-scheme: dark) {
  .header { background: rgba(15,26,23,.7); }
  .header.is-scrolled { background: rgba(15,26,23,.92); }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-mint-100);
  color: var(--c-mint-700);
}
.logo-mark .icon { width: 1.1em; height: 1.1em; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.3rem; font-weight: 700; color: var(--c-ink-900); }
.logo-tagline { font-family: var(--font-body); font-size: .72rem; color: var(--c-ink-500); font-weight: 500; }

.nav { display: flex; gap: 28px; }
.nav a { font-size: .93rem; font-weight: 600; color: var(--c-ink-700); transition: color .2s; }
.nav a:hover { color: var(--c-mint-700); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phones { display: none; }
.phone-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .92rem; color: var(--c-ink-900); }
.phone-link .icon { width: 1em; height: 1em; color: var(--c-mint-600); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
}
.burger span { display: block; height: 2px; background: var(--c-ink-900); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 981px) {
  .header-phones { display: flex; gap: 16px; }
}
@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--c-bg);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--c-border);
    transform: translateY(-130%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--c-border); }
  .burger { display: flex; }
}

/* ============================== HERO ============================== */
.hero { position: relative; padding: 64px 0 40px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blob { position: absolute; top: -220px; right: -220px; width: 720px; height: 720px; color: var(--c-mint-50); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-mint-700);
  background: var(--c-mint-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-title { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.hero-subtitle { font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin: 28px 0 40px; flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 520px; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--c-mint-700); }
.stat-label { font-size: .78rem; color: var(--c-ink-500); }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.hero-canvas, .tooth-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
}
.hero-canvas { touch-action: none; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; grid-template-columns: repeat(2, 1fr); }
  .hero-visual { order: -1; max-width: 280px; }
}

/* ============================== СЕКЦИИ ============================== */
.section { padding: 96px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-lead { color: var(--c-ink-500); }

.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* ---------- Преимущества ---------- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.advantage-card { padding: 32px; }
.advantage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.advantage-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-mint-100);
  color: var(--c-mint-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
@media (max-width: 900px) { .advantage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .advantage-grid { grid-template-columns: 1fr; } }

/* ---------- Небольшая вставка "почему Ирбис" ---------- */
.fact-banner {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 28px;
  background: var(--c-mint-50);
  border: 1px solid var(--c-mint-200);
  border-left: 3px solid var(--c-gold-500);
  border-radius: var(--radius-sm);
}
.fact-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-gold-600);
  display: flex; align-items: center; justify-content: center;
}
.fact-icon .icon { width: 1.3em; height: 1.3em; }
.fact-banner p { margin: 0; font-size: .92rem; font-style: italic; color: var(--c-ink-700); }
.footer-fact { font-size: .78rem; color: #7f9891; font-style: italic; max-width: 32ch; }

/* ---------- Услуги ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-category {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.service-category-title {
  font-size: 1.05rem;
  color: var(--c-mint-700);
  border-bottom: 2px solid var(--c-mint-100);
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.service-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--c-border);
}
.service-item:last-child { border-bottom: none; }
.service-name { color: var(--c-ink-700); }
.service-dots { flex: 1; border-bottom: 1px dotted var(--c-ink-300); transform: translateY(-4px); min-width: 12px; }
.service-price { font-weight: 700; color: var(--c-ink-900); white-space: nowrap; font-family: var(--font-display); }
@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Врачи ---------- */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.doctor-card {
  background: none; border: none; box-shadow: none; padding: 0;
  perspective: 1200px;
  min-height: 360px;
  cursor: pointer;
}
.flip-inner {
  position: relative;
  width: 100%; height: 100%; min-height: 360px;
  transition: transform .7s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.doctor-card.is-flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-md);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .3s ease;
}
.doctor-card:hover .flip-face { box-shadow: var(--shadow-md); }
.flip-back { transform: rotateY(180deg); justify-content: center; }
.doctor-photo {
  width: 108px; height: 108px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-mint-100);
  border: 3px solid var(--c-mint-200);
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-position { color: var(--c-mint-700); font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.doctor-experience { font-size: .88rem; color: var(--c-ink-500); margin-bottom: 10px; }
.doctor-credential { font-size: .85rem; color: var(--c-ink-700); line-height: 1.6; }
.flip-hint {
  margin-top: auto;
  padding-top: 12px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--c-mint-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.flip-hint .icon { width: 1em; height: 1em; }
.flip-back .flip-hint .icon { transform: rotate(90deg); }
@media (max-width: 980px) { .doctor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .doctor-grid { grid-template-columns: 1fr; } }

/* ---------- Лицензии ---------- */
.license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.license-thumb {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.license-thumb:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.license-thumb img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--c-mint-50);
}
.license-thumb span { font-size: .88rem; font-weight: 600; color: var(--c-ink-700); }
@media (max-width: 800px) { .license-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .license-grid { grid-template-columns: 1fr; } }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 20, 18, .85);
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox figure { margin: 0; max-width: 560px; }
.lightbox img { border-radius: var(--radius-sm); width: 100%; }
.lightbox figcaption { color: #fff; text-align: center; margin-top: 12px; font-weight: 600; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; border: none; font-size: 1.2rem;
}

/* ---------- Отзывы ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card { padding: 32px; }
.review-quote { color: var(--c-gold-500); margin-bottom: 12px; }
.review-quote .icon { width: 2em; height: 2em; }
.review-text { font-style: italic; color: var(--c-ink-700); }
.review-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.review-name { font-weight: 700; font-size: .9rem; }
.review-rating { display: flex; gap: 2px; color: var(--c-gold-500); }
.review-rating .icon { width: 1em; height: 1em; }
@media (max-width: 700px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: none; border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-ink-900);
  text-align: left;
}
.faq-chevron { transition: transform .25s ease; color: var(--c-mint-600); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}
.faq-item.is-open .faq-answer { max-height: 240px; padding-bottom: 18px; }
.faq-answer p { margin: 0; color: var(--c-ink-500); }

/* ---------- Запись ---------- */
.appointment { background: linear-gradient(180deg, var(--c-mint-900), var(--c-mint-700)); color: #fff; }
.appointment h2, .appointment p { color: #fff; }
.appointment .eyebrow { background: rgba(255,255,255,.15); color: #fff; }
.appointment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.appointment-phones { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.appointment-phones .phone-link { color: #fff; font-size: 1.3rem; }
.appointment-phones .icon { color: var(--c-gold-500); }
.appointment-hours { display: flex; gap: 10px; align-items: flex-start; opacity: .9; }
.appointment-hours .icon { color: var(--c-gold-500); margin-top: 2px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: .92rem; }

.appointment-form { background: #fff; padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.appointment-form label { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--c-ink-700); }
.appointment-form input, .appointment-form textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .8em 1em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  background: var(--c-bg-alt);
  color: var(--c-ink-900);
  resize: vertical;
}
.appointment-form input:focus, .appointment-form textarea:focus {
  outline: none;
  border-color: var(--c-mint-600);
  box-shadow: 0 0 0 3px var(--c-mint-100);
}
.form-status { font-size: .85rem; color: var(--c-mint-700); display: none; }
.form-status.is-visible { display: block; }
.form-disclaimer { font-size: .75rem; color: var(--c-ink-500); margin: 0; }
.form-disclaimer a { text-decoration: underline; }

@media (max-width: 900px) {
  .appointment-inner { grid-template-columns: 1fr; }
}

/* ============================== ФУТЕР ============================== */
.footer { background: var(--c-footer-bg); color: #d9e5e1; padding-top: 72px; }
.footer .logo-name, .footer h4 { color: #fff; }
.footer-tagline { color: #9fb3ac; font-size: .85rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: .95rem; margin-bottom: 4px; }
.footer-col a { color: #b7c7c1; font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-address { display: flex; gap: 8px; align-items: flex-start; font-size: .9rem; color: #b7c7c1; }
.footer-address .icon { color: var(--c-gold-500); }
.footer-phones .phone-link { color: #e9f2ef; }
.footer-phones .icon { color: var(--c-gold-500); }
.footer-hours { margin-top: 8px; font-size: .85rem; color: #9fb3ac; }
.footer-col p { color: #b7c7c1; font-size: .85rem; margin: 0; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 24px 24px;
  font-size: .8rem;
  color: #8ba39b;
}
.footer-map iframe { display: block; filter: grayscale(.2) contrast(1.05); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================== ПЛАВАЮЩИЕ КНОПКИ ============================== */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  border: none;
  transition: transform .2s ease, opacity .2s ease;
}
.fab .icon { width: 1.4em; height: 1.4em; }
.fab-whatsapp { background: #25d366; }
.fab-telegram { background: #29a9eb; }
.fab-top {
  background: var(--c-white);
  color: var(--c-ink-700);
  border: 1px solid var(--c-border);
}
.fab-top, .fab-whatsapp, .fab-telegram {
  opacity: 0;
  transform: scale(.7);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.fab-top.is-visible, .fab-whatsapp.is-visible, .fab-telegram.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.fab:hover { transform: scale(1.08); }

@media (max-width: 560px) {
  .floating-actions { right: 14px; bottom: 14px; gap: 10px; }
  .fab { width: 46px; height: 46px; }
}
