/* =========================================
   DOTFIZJO — modern, single-page
   Brand color: #ae3c8c
   ========================================= */

:root {
  --brand: #ae3c8c;
  --brand-dark: #7d2864;
  --brand-light: #d870b8;
  --accent: #ff7eb6;
  --cream: #fdf7fb;
  --bg: #ffffff;
  --bg-alt: #faf4f8;
  --ink: #1a0d18;
  --ink-soft: #4a3d46;
  --muted: #8a8089;
  --line: #ece2ea;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 20px rgba(174, 60, 140, 0.06);
  --shadow-md: 0 10px 40px rgba(174, 60, 140, 0.12);
  --shadow-lg: 0 24px 60px rgba(26, 13, 24, 0.18);
  --container: 1240px;
  --header-h: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(174, 60, 140, 0.25);
}
.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(174, 60, 140, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); color: #fff; }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Extra-large hero button — glowing primary */
.btn-xl {
  position: relative;
  padding: 19px 38px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 18px 38px rgba(174, 60, 140, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.25);
}
.btn-xl::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 126, 182, 0.55), transparent 65%);
  filter: blur(22px);
  z-index: -1;
  opacity: 0.85;
  transition: opacity .3s ease;
  pointer-events: none;
}
.btn-xl::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 45%);
  pointer-events: none;
}
.btn-xl:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 24px 54px rgba(174, 60, 140, 0.65),
    0 10px 22px rgba(0, 0, 0, 0.3);
}
.btn-xl:hover::before { opacity: 1; }

/* CTA phone pill — sits next to primary in hero */
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 26px 12px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  color: #fff;
  transition: all .25s ease;
  text-decoration: none;
}
.cta-phone:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #fff;
}
.cta-phone-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(174, 60, 140, 0.5);
}
.cta-phone-icon svg { width: 20px; height: 20px; }
.cta-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}
.cta-phone-text small {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  opacity: 0.82;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cta-phone-text strong {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.btn-link {
  background: none;
  color: var(--brand);
  padding: 0;
  font-weight: 700;
  border-radius: 0;
}
.btn-link:hover { color: var(--brand-dark); }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 9px 0;
  position: relative;
  z-index: 110;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-left a, .topbar-info { color: rgba(255,255,255,0.7); font-weight: 500; }
.topbar-left a:hover { color: #fff; }
.ti { margin-right: 5px; opacity: 0.7; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.topbar-right { display: flex; gap: 8px; }
.topbar-right a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  text-transform: lowercase;
}
.topbar-right a:hover { background: var(--brand); color: #fff; }

/* ---------- HEADER (transparent over hero, solid white when scrolled) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px rgba(26, 13, 24, 0.08);
}
.site-header.is-scrolled .brand-dark { display: none; }
.site-header.is-scrolled .brand-light { display: block; }
.site-header.is-scrolled .brand img { filter: none; }
.site-header.is-scrolled .nav a {
  color: var(--ink);
  text-shadow: none;
}
.site-header.is-scrolled .nav a::after { background: var(--brand); }
.site-header.is-scrolled .nav a:hover { color: var(--brand); }
.site-header.is-scrolled .header-cta {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(174, 60, 140, 0.25);
}
.site-header.is-scrolled .header-cta:hover {
  background: var(--brand-dark);
  color: #fff;
}
.site-header.is-scrolled .nav-toggle {
  background: rgba(174, 60, 140, 0.08);
  border-color: rgba(174, 60, 140, 0.18);
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  height: 100%;
}
.brand img {
  max-height: 50px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.brand-light { display: none; }
.brand-dark { display: block; }
.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: color .2s, text-shadow .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease, background-color .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta {
  padding: 11px 22px;
  font-size: 14px;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.header-cta:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(174, 60, 140, 0.4);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 11px 10px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}

/* ---------- FLOATING CALL — mobile only ---------- */
.floating-call {
  position: fixed;
  bottom: 48px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(174, 60, 140, 0.55);
  animation: floatingCallPulse 2.2s infinite cubic-bezier(.4, 0, .6, 1);
  transition: transform .2s;
}
.floating-call:hover, .floating-call:active {
  transform: scale(1.08);
  color: #fff;
}
.floating-call svg { width: 28px; height: 28px; }
@keyframes floatingCallPulse {
  0%   { box-shadow: 0 10px 28px rgba(174, 60, 140, .55), 0 0 0 0 rgba(174, 60, 140, .55); }
  70%  { box-shadow: 0 10px 28px rgba(174, 60, 140, .55), 0 0 0 18px rgba(174, 60, 140, 0); }
  100% { box-shadow: 0 10px 28px rgba(174, 60, 140, .55), 0 0 0 0 rgba(174, 60, 140, 0); }
}
@media (max-width: 900px) {
  .floating-call { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 960px;
  overflow: hidden;
  background: #1a0d18;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 780px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff7eb6 0%, #ff4f9a 50%, #ae3c8c 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 9px 22px 10px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 14px 30px rgba(255, 79, 154, 0.5),
    0 6px 14px rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}
.hero-eyebrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #fff 30%, #ffd9eb 60%, #ff7eb6 100%);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.95),
    0 0 28px rgba(255, 126, 182, 0.7),
    0 1px 2px rgba(0, 0, 0, 0.3) inset;
  flex-shrink: 0;
  animation: heroEyebrowDot 2.2s ease-in-out infinite;
}
@keyframes heroEyebrowDot {
  0%, 100% { box-shadow: 0 0 14px rgba(255,255,255,.95), 0 0 28px rgba(255,126,182,.7), 0 1px 2px rgba(0,0,0,.3) inset; }
  50%      { box-shadow: 0 0 22px rgba(255,255,255,1),   0 0 40px rgba(255,126,182,.9), 0 1px 2px rgba(0,0,0,.3) inset; }
}
.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.05;
}
.hero-title em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(120deg, #ff7eb6, #ffb0d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 22px;
  font-family: serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: all .25s;
}
.hero-arrow:hover { background: var(--brand); border-color: var(--brand); }
.hero-dots { display: flex; gap: 10px; }
.hero-dot {
  width: 36px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.hero-dot.is-active { background: #fff; width: 56px; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 5;
  width: 30px;
  height: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  display: none;
}
.hero-scroll span {
  display: block;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 4px;
  margin: 8px auto;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ---------- TRUST STRIP ---------- */
.trust {
  background: var(--ink);
  padding: 36px 0;
  color: #fff;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}
.trust-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.trust-num {
  position: relative;
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.trust-count {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.trust-suffix {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 4px;
  opacity: 0;
  transform: scale(0.6) translateY(-2px);
  transform-origin: left center;
  transition: opacity .4s ease, transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.trust-stat.is-counted .trust-suffix {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.trust-num i.trust-suffix {
  color: #ffd24a;
  font-size: 1.7rem;
  line-height: 1;
  font-style: normal;
}
.trust-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}

/* ---------- SECTION HEAD ---------- */
.section-head { margin-bottom: 60px; max-width: 760px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.section-title span {
  color: var(--brand);
  font-weight: 700;
}
.section-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- SERVICES — uniform tile grid ---------- */
.services {
  padding: 110px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(174,60,140,0.08), transparent 70%);
  pointer-events: none;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}
.srv-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(174, 60, 140, 0.25);
  color: inherit;
}
.srv-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.srv-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 13, 24, 0.45), transparent 55%);
  pointer-events: none;
}
.srv-body {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.srv-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  margin-top: -50px;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(174, 60, 140, 0.35);
  border: 3px solid #fff;
}
.srv-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  min-height: 2.6em;
}
.srv-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  margin-top: 8px;
  transition: gap .2s, color .2s;
  gap: 2px;
}
.srv-card:hover .srv-link {
  color: var(--brand-dark);
  gap: 8px;
}

.srv-cta {
  margin-top: 60px;
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.srv-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 126, 182, 0.35), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}
.srv-cta h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  margin-bottom: 10px;
}
.srv-cta p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  font-size: 1.02rem;
}
.srv-cta .btn-primary {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--brand);
}
.srv-cta .btn-primary:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- METHOD — horizontal timeline ---------- */
.method {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.method::before {
  content: '';
  position: absolute;
  top: 30%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(174, 60, 140, 0.06), transparent 70%);
  pointer-events: none;
}
.method-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-bottom: 70px;
  z-index: 2;
}
.method-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 60px);
  right: calc(16.66% + 60px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--brand-light) 0 8px, transparent 8px 16px);
  opacity: 0.5;
  z-index: 0;
}
.method-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 30px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.method-step:hover {
  transform: translateY(-8px);
  border-color: rgba(174, 60, 140, 0.25);
  box-shadow: var(--shadow-md);
}
.method-step-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(174, 60, 140, 0.35);
  border: 4px solid #fff;
}
.method-step-ico {
  width: 60px;
  height: 60px;
  margin-top: 18px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf0f8, #f9e2f0);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.method-step-ico svg { width: 28px; height: 28px; }
.method-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.method-step p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.method-step-time {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  background: #fdf0f8;
  border-radius: 100px;
  margin-top: auto;
}
.method-ifompt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, #2d1828 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 38px 44px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.method-ifompt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(174, 60, 140, 0.4), transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255, 126, 182, 0.15), transparent 50%);
  pointer-events: none;
}
.method-ifompt-badge {
  position: relative;
  z-index: 2;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 126, 182, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  text-align: center;
  min-width: 200px;
}
.method-ifompt-badge strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.method-ifompt-badge span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.method-ifompt p {
  position: relative;
  z-index: 2;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.method-ifompt p strong { color: #fff; }

/* ---------- TEAM ---------- */
.team {
  padding: 120px 0;
  background: var(--bg-alt);
  position: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(174,60,140,0.15));
  pointer-events: none;
}
.team-info { padding: 26px 24px 28px; }
.team-info h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-role {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 14px;
}
.team-info p { font-size: 0.93rem; line-height: 1.6; }
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.team-tags span {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  padding: 5px 11px;
  background: #fdf0f8;
  color: var(--brand-dark);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
a.team-card {
  text-decoration: none;
  color: inherit;
}
a.team-card:hover { color: inherit; }
.team-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  margin-top: 14px;
  transition: gap .2s, color .2s;
  gap: 2px;
}
.team-card:hover .team-link {
  color: var(--brand-dark);
  gap: 8px;
}

/* ---------- BOOKING ---------- */
.booking {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at top right, rgba(174,60,140,0.08), transparent 60%),
    #fff;
}
.booking-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.bk-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.bk-tab {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s;
  border-bottom: 3px solid transparent;
  position: relative;
}
.bk-tab:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 30%; bottom: 30%;
  width: 1px;
  background: var(--line);
}
.bk-tab-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--line);
}
.bk-tab.is-active {
  color: var(--brand);
  background: #fff;
  border-bottom-color: var(--brand);
}
.bk-tab.is-active .bk-tab-num {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.bk-tab.is-done { color: var(--ink); }
.bk-tab.is-done .bk-tab-num { background: var(--brand-light); border-color: var(--brand-light); color: #fff; }

.bk-step {
  display: none;
  padding: 44px 44px 38px;
}
.bk-step.is-active { display: block; animation: bkFade .35s ease; }
@keyframes bkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.bk-step-head { text-align: center; margin-bottom: 32px; }
.bk-step-head h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.bk-step-head p { color: var(--muted); font-size: 0.98rem; }

.bk-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bk-tile {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: left;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.bk-tile:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.bk-tile.is-selected {
  border-color: var(--brand);
  background: linear-gradient(135deg, #fdf0f8, #fff);
  box-shadow: 0 6px 20px rgba(174,60,140,0.15);
}
.bk-tile-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.bk-tile-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.bk-tile-price {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
}

.bk-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bk-spec {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bk-spec:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.bk-spec.is-selected {
  border-color: var(--brand);
  background: linear-gradient(135deg, #fdf0f8, #fff);
  box-shadow: 0 6px 20px rgba(174,60,140,0.15);
}
.bk-spec-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.bk-spec-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bk-spec-any { background: linear-gradient(135deg, var(--accent), var(--brand)); }
.bk-spec-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.bk-spec-role {
  font-size: 12px;
  color: var(--muted);
}

/* Step 3 — calendar */
.bk-cal {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.bk-days {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-day {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  text-align: left;
}
.bk-day:hover { border-color: var(--brand); }
.bk-day.is-selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.bk-day-info { display: flex; flex-direction: column; }
.bk-day-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: inherit;
}
.bk-day-date {
  font-size: 12px;
  color: var(--muted);
}
.bk-day.is-selected .bk-day-date { color: rgba(255,255,255,0.8); }
.bk-day-count {
  font-size: 12px;
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--brand);
  font-weight: 600;
}
.bk-day.is-selected .bk-day-count { background: rgba(255,255,255,0.2); color: #fff; }

.bk-slots-head {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.bk-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bk-slot {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  font-size: 0.95rem;
}
.bk-slot:hover { border-color: var(--brand); color: var(--brand); }
.bk-slot.is-selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.bk-slot.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.bk-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.bk-actions .btn-ghost {
  color: var(--ink-soft);
  border-color: var(--line);
}
.bk-actions .btn-ghost:hover { color: var(--brand); border-color: var(--brand); background: transparent; }
.bk-back { padding: 13px 22px; }

/* Step 4 — form */
.bk-summary {
  background: linear-gradient(135deg, #fdf0f8, #faf4f8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.bk-sum-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.bk-sum-item strong {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
}
.bk-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bk-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  gap: 6px;
}
.bk-form input, .bk-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.bk-form input:focus, .bk-form textarea:focus { border-color: var(--brand); }
.bk-form textarea { resize: vertical; min-height: 80px; }
.bk-check {
  flex-direction: row !important;
  align-items: flex-start;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: var(--ink-soft) !important;
  gap: 10px !important;
  cursor: pointer;
}
.bk-check input { width: auto; padding: 0; margin-top: 2px; accent-color: var(--brand); }
.bk-success {
  text-align: center;
  padding: 40px 20px;
}
.bk-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #2dd273, #16a85a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 700;
}
.bk-success h3 { font-size: 1.5rem; margin-bottom: 10px; }

/* ---------- REVIEWS ---------- */
.reviews {
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(174,60,140,0.25), transparent 70%);
  pointer-events: none;
}
.reviews::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,126,182,0.15), transparent 70%);
  pointer-events: none;
}
.reviews .section-title, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--accent); }
.reviews .section-title span { color: var(--accent); }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.stars { color: #ffc83d; letter-spacing: 0.05em; font-size: 1.1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
.review {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s;
}
.review:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(255,126,182,0.3);
}
.review p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}
.review cite {
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 80px 0;
  background:
    linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,126,182,0.4), transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 8px;
  max-width: 620px;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--brand);
}
.cta-band .btn-primary:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- CONTACT ---------- */
/* ---------- REZERWACJA ONLINE (BookUp) ---------- */
.rezerwacja {
  padding: 110px 0 90px;
  background: var(--bg-alt);
}
.rezerwacja-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.rezerwacja-head .section-eyebrow { justify-content: center; }
.rezerwacja-head .section-lead {
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 580px;
}
.rezerwacja-widget {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ece5e8;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(26,13,24,0.06), 0 3px 10px rgba(0,0,0,0.03);
}
.rezerwacja-note {
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid #ece5e8;
  border-left: 3px solid var(--brand);
  border-radius: 12px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink-soft);
  text-align: center;
}
.rezerwacja-note strong { color: var(--ink); font-weight: 600; }
.rezerwacja-note a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rezerwacja-note a:hover { color: var(--brand-dark); }

@media (max-width: 700px) {
  .rezerwacja { padding: 80px 0 70px; }
  .rezerwacja-widget { padding: 18px; border-radius: 16px; }
  .rezerwacja-note { padding: 14px 18px; font-size: 0.92rem; text-align: left; }
}

.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}
.contact-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}
.contact-row-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf0f8, #f9e2f0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-row strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.contact-row p { font-size: 0.96rem; line-height: 1.55; }
.contact-socials { margin-top: 30px; display: flex; gap: 12px; }
.contact-socials a {
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--bg-alt);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all .25s;
}
.contact-socials a:hover { background: var(--brand); color: #fff; }
.contact-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- CONTACT FORM ---------- */
.cform {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at bottom left, rgba(174, 60, 140, 0.08), transparent 60%),
    var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.cform::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 126, 182, 0.18), transparent 70%);
  pointer-events: none;
}
.cform-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.cform-intro .section-title { margin-bottom: 20px; }
.cform-intro .section-sub { margin-bottom: 38px; }
.cform-intro .section-sub a { font-weight: 700; color: var(--brand); }
.cform-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cform-perk {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all .2s;
}
.cform-perk:hover {
  border-color: var(--brand);
  transform: translateX(4px);
}
.cform-perk-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf0f8, #f9e2f0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.cform-perk strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.cform-perk span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
}
.cform-form {
  background: #fff;
  padding: 40px 40px 38px;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cform-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cform-field > span {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.cform-form input,
.cform-form textarea,
.cform-form select {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.cform-form input:focus,
.cform-form textarea:focus,
.cform-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(174, 60, 140, 0.1);
}
.cform-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: 'Inter', sans-serif;
}
.cform-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%237d2864' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
  cursor: pointer;
}
.cform-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
  margin-top: 4px;
}
.cform-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand);
  flex-shrink: 0;
  cursor: pointer;
}
.cform-check a { font-weight: 600; }

/* Visit type radio cards */
.cform-visit {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cform-visit legend {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  padding: 0;
}
.cform-visit-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cform-radio {
  position: relative;
  cursor: pointer;
}
.cform-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cform-radio-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: all .2s ease;
  position: relative;
}
.cform-radio-box::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  transition: all .2s ease;
}
.cform-radio-box::after {
  content: '';
  position: absolute;
  top: 19px;
  right: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  transform: scale(0);
  transition: transform .2s ease;
}
.cform-radio:hover .cform-radio-box {
  border-color: var(--brand-light);
}
.cform-radio input:checked + .cform-radio-box {
  border-color: var(--brand);
  background: linear-gradient(135deg, #fdf0f8, #fff);
  box-shadow: 0 4px 14px rgba(174, 60, 140, 0.12);
}
.cform-radio input:checked + .cform-radio-box::before {
  border-color: var(--brand);
}
.cform-radio input:checked + .cform-radio-box::after {
  transform: scale(1);
}
.cform-radio input:focus-visible + .cform-radio-box {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.cform-radio-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  padding-right: 30px;
}
.cform-radio-sub {
  font-size: 12px;
  color: var(--muted);
  padding-right: 30px;
}

/* Date input — match cform-form styling */
.cform-form input[type="date"] {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
}
.cform-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity .2s;
}
.cform-form input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }

/* Inline consent note (replaces checkbox) */
.cform-consent-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 4px 0 0 0;
}
.cform-consent-note a { font-weight: 600; color: var(--brand); }
.cform-submit {
  align-self: flex-start;
  margin-top: 8px;
}
.cform-success {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #e6f9ee, #d3f3df);
  border: 1px solid #2dd273;
  border-radius: 14px;
  margin-top: 4px;
}
.cform-success[hidden] { display: none; }
.cform-success:not([hidden]) { display: flex; }
.cform-success-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2dd273;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.cform-success strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  color: #16a85a;
  font-size: 1rem;
  margin-bottom: 2px;
}
.cform-success span {
  display: block;
  font-size: 0.88rem;
  color: #2d6b46;
}

/* ---------- FAQ (bottom of page — GEO/AI Search) ---------- */
.faq {
  padding: 110px 0 100px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(174, 60, 140, 0.08), transparent 70%);
  pointer-events: none;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  transition: all .25s ease;
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 10px 30px rgba(174, 60, 140, 0.1);
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.4;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-right: 4px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--brand);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--brand); }
.faq-answer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.faq-answer p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.faq-answer p strong { color: var(--ink); font-weight: 600; }
.faq-answer a { font-weight: 600; }

.faq-cta {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.faq-cta p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .faq { padding: 70px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 18px 20px; }
  .faq-item summary { font-size: 0.95rem; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand img { max-height: 60px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  font-size: 0.93rem;
  font-weight: 500;
}
.footer-col a:hover { color: var(--accent); }
.footer-col p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer-col p a { color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner a { color: rgba(255,255,255,0.55); }
.footer-bottom-inner a:hover { color: var(--accent); }

/* ---------- ANIMATIONS ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: all .8s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav { gap: 22px; }
  .nav a { font-size: 14px; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-tiles { grid-template-columns: repeat(2, 1fr); }
  .bk-specs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 16px; right: 16px;
    background: #ffffff;
    padding: 22px 24px 28px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18), 0 6px 16px rgba(0,0,0,0.08);
    align-items: flex-start;
    gap: 4px;
  }
  .nav.is-open a {
    padding: 14px 0;
    width: 100%;
    color: #111111;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-shadow: none;
  }
  .nav.is-open a:last-child { border-bottom: 0; }
  .nav.is-open a:hover { color: var(--accent); }

  .hero { height: 100vh; min-height: 580px; max-height: 780px; }
  .hero-slide { padding-top: 110px; padding-bottom: 110px; align-items: flex-start; }
  .hero-inner { padding-bottom: 0; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 2.8rem); }
  .hero-sub { font-size: 0.96rem; margin-bottom: 22px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn-xl {
    padding: 16px 24px;
    font-size: 15px;
  }
  .hero-actions .btn-xl::before {
    inset: -10px;
    filter: blur(16px);
  }
  .cta-phone {
    width: 100%;
    justify-content: center;
    padding: 10px 22px 10px 10px;
  }
  .cta-phone-icon { width: 42px; height: 42px; }
  .cta-phone-text strong { font-size: 15px; }
  .hero-eyebrow { font-size: 11px; padding: 7px 14px 8px 12px; margin-bottom: 16px; }
  .hero-controls { bottom: 18px; gap: 12px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 18px; }
  .hero-dot { width: 28px; }
  .hero-dot.is-active { width: 42px; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-stat:not(:last-child)::after { display: none; }

  .srv-grid { grid-template-columns: 1fr; }
  .srv-cta { padding: 36px 22px; }

  .method-timeline { grid-template-columns: 1fr; gap: 40px; }
  .method-timeline::before { display: none; }
  .method-ifompt { grid-template-columns: 1fr; gap: 22px; padding: 28px 24px; text-align: center; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .bk-tabs { grid-template-columns: 1fr 1fr; }
  .bk-tab { padding: 16px 10px; font-size: 13px; }
  .bk-step { padding: 28px 22px; }
  .bk-tiles { grid-template-columns: 1fr; }
  .bk-specs { grid-template-columns: repeat(2, 1fr); }
  .bk-cal { grid-template-columns: 1fr; }
  .bk-slots-grid { grid-template-columns: repeat(3, 1fr); }
  .bk-summary { grid-template-columns: repeat(2, 1fr); }
  .bk-form-row { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { height: 360px; }
  .cform-grid { grid-template-columns: 1fr; gap: 40px; }
  .cform-form { padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .topbar-left { gap: 14px; font-size: 12px; }
  .topbar-info { display: none; }
  .hero-inner { padding-bottom: 100px; }
  .hero-title { font-size: 2.2rem; }
  .hero-controls { bottom: 22px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .bk-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { margin-bottom: 40px; }
  .services, .method, .team, .booking, .reviews, .contact, .cform { padding: 70px 0; }
  .cform-row { grid-template-columns: 1fr; }
}
