/* ============================================
   SUBPAGE.CSS - shared styles for all subpages
   ============================================ */

/* ══════════════════════════════════════
   DECORATIVE ELEMENTS
   ══════════════════════════════════════ */

/* Floating orb — reusable */
.deco-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.deco-orb--rose {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,37,84,.12) 0%, transparent 70%);
}
.deco-orb--indigo {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,26,112,.1) 0%, transparent 70%);
}
.deco-orb--soft {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,164,92,.08) 0%, transparent 70%);
}

/* Floating ring */
.deco-ring-float {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(212,37,84,.1);
  pointer-events: none; z-index: 0;
}
.deco-ring-float--lg { width: 500px; height: 500px; }
.deco-ring-float--md { width: 300px; height: 300px; }
.deco-ring-float--sm { width: 180px; height: 180px; }

/* Dot grid */
.deco-dots {
  position: absolute; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(61,26,112,.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Diagonal line accent */
.deco-line-accent {
  position: absolute; pointer-events: none; z-index: 0;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(212,37,84,.2), transparent);
}

/* ── Hero ── */
.subpage-hero {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Hero decorative elements */
.subpage-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,37,84,.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.subpage-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,26,112,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.subpage-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.subpage-hero .container { position: relative; z-index: 1; max-width: 780px; }
.subpage-hero .back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary); text-decoration: none; margin-bottom: 2rem;
  opacity: .8; transition: opacity .2s;
}
.subpage-hero .back-link:hover { opacity: 1; }
.subpage-hero h1 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 1.2rem; letter-spacing: -.01em; font-weight: 400; }
.subpage-hero .hero-subtitle { font-size: 1.15rem; color: var(--text-body); max-width: 520px; line-height: 1.75; }

/* ── Social proof in hero ── */
.hero-social-proof {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 1.2rem;
}
.hero-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: .1em;
}
.hero-social-proof__text {
  font-size: .82rem; color: var(--muted); font-weight: 500;
}
.hero-social-proof__text strong { color: var(--text-body); font-weight: 700; }

/* ── Testimonial before pricing ── */
.testimonial-section {
  padding: 4rem 0 0;
  position: relative; overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute; top: 0; right: -4rem;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,37,84,.07) 0%, transparent 65%);
  pointer-events: none;
}
.testimonial-section .container { max-width: 900px; position: relative; z-index: 1; }
.testimonial-card {
  background: linear-gradient(135deg, rgba(61,26,112,.05) 0%, rgba(212,37,84,.03) 100%);
  border: 1px solid rgba(61,26,112,.12);
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}
/* decorative ring inside card */
.testimonial-card::after {
  content: '';
  position: absolute; bottom: -4rem; right: -4rem;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(212,37,84,.1);
  pointer-events: none;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1rem; left: 2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6rem; line-height: 1;
  color: var(--primary); opacity: .15;
}
.testimonial-card__text {
  font-family: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  font-size: 1rem; line-height: 1.85;
  color: var(--text-body); font-style: italic;
  margin: 0 0 1.5rem;
  position: relative; z-index: 1;
  font-weight: 400;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-card__avatar {
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,37,84,.15), rgba(61,26,112,.15));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--muted);
}
.testimonial-card__name {
  font-weight: 700; font-size: .9rem; color: var(--text);
}
.testimonial-card__detail {
  font-size: .8rem; color: var(--muted); margin-top: .1rem;
}
.testimonial-card__stars {
  color: #f5a623; font-size: .85rem; margin-left: auto;
  letter-spacing: .05em;
}

/* ── Hero grid with photo ── */
.subpage-hero .container { max-width: 1100px !important; }
.subpage-hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .subpage-hero__grid { grid-template-columns: 1fr; }
  .subpage-hero__photo { display: none; }
}
.subpage-hero__content { max-width: 580px; }
.subpage-hero__photo {
  position: relative;
}
.subpage-hero__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  object-fit: cover;
  display: block;
}
.subpage-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2rem;
  background: linear-gradient(155deg, #fce8ef 0%, #f0e8ff 40%, #e8f0ff 70%, #fce8f5 100%);
  border: none;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 2rem;
  color: var(--muted); font-size: .82rem; font-weight: 500;
  box-shadow: 0 24px 64px rgba(212,37,84,.12), 0 8px 24px rgba(61,26,112,.08);
  position: relative; overflow: hidden;
}
.subpage-hero__img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(212,37,84,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(61,26,112,.12) 0%, transparent 50%);
}
.subpage-hero__photo-deco {
  position: absolute;
  inset: -12px -12px -12px 12px;
  border-radius: 1.8rem;
  border: 1px solid rgba(212,37,84,.15);
  z-index: -1;
}

/* ── Info pills ── */
.info-row { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.info-pill {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 500; color: var(--text-muted);
  background: none; border: none; padding: 0;
}
.info-pill span { font-size: 1rem; }

/* ── Content ── */
.service-content {
  padding: 3.5rem 0 1rem;
  position: relative; overflow: hidden;
}
.service-content::before {
  content: '';
  position: absolute; top: 4rem; right: -6rem;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,92,.06) 0%, transparent 70%);
  pointer-events: none;
}
.service-content .container { max-width: 780px; }
.service-block { margin-bottom: 2.5rem; }
.service-block h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.9rem; margin-bottom: 1rem; color: var(--text-dark); font-weight: 400; }
.service-block p { color: var(--text-body); line-height: 1.85; margin-bottom: 1rem; }
.service-block ul { padding-left: 1.4rem; }
.service-block ul li { color: var(--text-body); line-height: 1.85; margin-bottom: .5rem; }
.service-block ul li::marker { color: var(--primary); }

/* ── Highlight box ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(90,45,158,.07) 0%, rgba(61,26,112,.04) 100%);
  border-left: 3px solid var(--secondary-light);
  border-radius: 0 1rem 1rem 0;
  padding: 1.5rem 2rem; margin: 2rem 0;
}
.highlight-box p { margin: 0; font-style: italic; font-size: 1.05rem; color: var(--text); line-height: 1.75; }

/* ── Note box ── */
.note-box {
  background: rgba(75,65,90,.05); border: 1px solid rgba(75,65,90,.15);
  border-radius: 1rem; padding: 1.2rem 1.6rem; margin-top: 2rem;
}
.note-box p { margin: 0; font-size: 1rem; color: var(--text-body); line-height: 1.75; }
.note-box strong { color: var(--text-dark); }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* ── Steps mini ── */
.steps-mini { list-style: none; padding: 0; counter-reset: step-counter; margin-top: 1.5rem; }
.steps-mini li {
  counter-increment: step-counter;
  display: flex; gap: 1.2rem; align-items: flex-start;
  margin-bottom: 1.4rem; color: var(--text-muted); line-height: 1.7;
}
.steps-mini li::before {
  content: counter(step-counter);
  min-width: 2rem; height: 2rem;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  flex-shrink: 0; margin-top: .1rem;
}

/* ── Two-col (konchowanie wskazania) ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem; }
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }
.two-col-box { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }
.two-col-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }
.two-col-box ul { padding-left: 1.2rem; }
.two-col-box ul li { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: .4rem; }
.two-col-box.contra ul li::marker { color: var(--primary); }
.two-col-box.indica ul li::marker { color: #22a06b; }


/* ============================================
   PRICING CARD
   ============================================ */
.pricing-section {
  padding: 4rem 0 0;
}
.pricing-section .container { max-width: 900px; }

.pricing-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(61,26,112,.1), 0 1px 8px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  background: #fff;
}

/* gradient top bar */
.pricing-card::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, #9b4dca 50%, var(--secondary) 100%);
}

.pricing-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 720px) {
  .pricing-card__inner { grid-template-columns: 1fr; }
}

/* Left - price + includes */
.pricing-card__left {
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  border-right: 1px solid var(--border);
}
@media (max-width: 720px) {
  .pricing-card__left { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem; }
}

.pricing-card__label {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.2rem;
}

.pricing-card__price {
  display: flex; align-items: baseline; gap: .5rem;
  margin-bottom: 2rem;
}
.pricing-card__amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.pricing-card__desc {
  font-size: .95rem; color: var(--text-muted); font-weight: 500;
}

/* multi-price variant */
.pricing-list { list-style: none; padding: 0; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: .75rem;
  font-size: .93rem;
  transition: border-color .2s, box-shadow .2s;
}
.pricing-list li:hover { border-color: rgba(212,37,84,.3); box-shadow: 0 2px 12px rgba(212,37,84,.06); }
.pricing-list__name { color: var(--text-body); font-weight: 500; }
.pricing-list__price {
  color: var(--primary); font-weight: 800; font-size: 1.05rem;
  white-space: nowrap; margin-left: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem;
}

/* includes */
.pricing-card__includes-title {
  font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .8rem;
}
.pricing-card__includes ul {
  list-style: none; padding: 0; margin: 0;
}
.pricing-card__includes ul li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .9rem; color: var(--text-body); line-height: 1.6;
  margin-bottom: .5rem;
}
.pricing-card__includes ul li::before {
  content: '✓';
  color: var(--primary); font-weight: 700;
  flex-shrink: 0; margin-top: .05rem;
}

/* Right — contact + CTA */
.pricing-card__right {
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 0;
  justify-content: flex-start;
}
@media (max-width: 720px) {
  .pricing-card__right { padding: 1.5rem; }
}

/* Ewelina persona block */
.pricing-card__persona {
  display: flex; align-items: center; gap: .85rem;
  border-top: 1px solid var(--border);
  padding: 1rem 0 .75rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.pricing-card__avatar {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(212,37,84,.2);
}
.pricing-card__avatar-placeholder {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,37,84,.12), rgba(61,26,112,.15));
  border: 2px solid rgba(212,37,84,.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .6rem; text-align: center; line-height: 1.3;
}
.pricing-card__persona-info { min-width: 0; }
.pricing-card__persona-name {
  font-weight: 700; font-size: .95rem;
  color: var(--text); display: block;
}
.pricing-card__persona-role {
  font-size: .8rem; color: var(--muted); display: block; margin-top: .1rem;
}

.pricing-card__cta-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--text-dark); margin-bottom: .4rem; margin-top: 0;
}
.pricing-card__cta-sub {
  font-size: .9rem; color: var(--text-muted); line-height: 1.55; margin-bottom: .8rem;
}

.btn-pricing {
  display: inline-block;
  background: var(--primary); color: #fff;
  padding: .9rem 2rem; border-radius: 3rem;
  font-size: .95rem; font-weight: 700; text-decoration: none;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  align-self: flex-start;
}
.btn-pricing:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,37,84,.35); }

.pricing-card__contact {
  padding-top: 0; margin-top: 1.2rem;
}
.pricing-card__contact-title { display: none; }
.pricing-card__contact ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .45rem;
}
.pricing-card__contact ul li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--text-body); line-height: 1.4;
}
.pricing-card__contact ul li .contact-icon {
  font-size: .9rem;
  flex-shrink: 0;
  color: var(--secondary);
}
.contact-card ul li .contact-icon {
  font-size: .95rem;
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
  color: var(--secondary);
}
.pricing-card__contact a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.pricing-card__contact a:hover { color: var(--primary); }

/* "Napisz po termin" button - full solid amaranth */
.btn-pricing {
  display: inline-block !important;
  background: var(--primary) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: .9rem 2rem; border-radius: 3rem;
  font-size: .95rem; font-weight: 700; text-decoration: none;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(212,37,84,.3);
  border: none;
}
.btn-pricing:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,37,84,.45); }

/* ── Dark wrapper for steps section ── */
.steps-dark-section {
  background: linear-gradient(135deg, #1a0840 0%, #2d1060 60%, #3d1a70 100%);
  position: relative;
}
.steps-dark-section .session-steps h2 { color: #fff; }
.steps-dark-section .steps-timeline__body h3 { color: rgba(255,255,255,.95); }
.steps-dark-section .steps-timeline__body p { color: rgba(255,255,255,.65); }
.steps-dark-section .steps-timeline::before { opacity: .3; }
.steps-dark-section .divider { border-color: rgba(255,255,255,.1); }

/* ── Session steps timeline ── */
.session-steps {
  padding: 1rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.session-steps::before {
  content: '';
  position: absolute; top: 0; left: -8rem;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,26,112,.06) 0%, transparent 65%);
  pointer-events: none;
}
/* Dot grid behind steps */
.session-steps::after {
  content: '';
  position: absolute; top: 2rem; right: 0;
  width: 200px; height: 300px;
  background-image: radial-gradient(rgba(212,37,84,.1) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 1rem;
  pointer-events: none;
  opacity: .5;
}
.session-steps .container { max-width: 780px; }
.session-steps h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.9rem; margin-bottom: 2rem; color: var(--text-dark); font-weight: 400; }

.steps-timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* vertical connecting line */
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary-light) 100%);
  opacity: .2;
  border-radius: 2px;
}

.steps-timeline__item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding-bottom: 2.4rem;
  position: relative;
}
.steps-timeline__item:last-child { padding-bottom: 0; }

.steps-timeline__num {
  flex-shrink: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-light) 100%);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,37,84,.25);
  position: relative;
  z-index: 1;
}

.steps-timeline__body {
  padding-top: .35rem;
}
.steps-timeline__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.steps-timeline__body p {
  font-size: .93rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ── Soft CTA strip below pricing card ── */
.pricing-soft-cta {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(61,26,112,.06) 0%, rgba(212,37,84,.04) 100%);
  border: 1px solid rgba(61,26,112,.14);
  border-radius: 1.2rem;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: nowrap;
  position: relative; overflow: hidden;
}
.pricing-soft-cta::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,37,84,.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 600px) { .pricing-soft-cta { flex-wrap: wrap; } }
.pricing-soft-cta__text {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.pricing-soft-cta__badge {
  flex-shrink: 0;
  background: var(--secondary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.pricing-soft-cta p {
  margin: 0;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.pricing-soft-cta p strong { color: var(--text-dark); font-weight: 700; }
.btn-soft {
  display: inline-block !important;
  background: var(--secondary) !important;
  color: #fff !important;
  padding: .7rem 1.8rem; border-radius: 3rem;
  font-size: .9rem; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(61,26,112,.2);
  -webkit-text-fill-color: #fff !important;
}
.btn-soft:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,26,112,.35); }

/* ══════════════════════════════════════
   BOOKING FORM — 3-step wizard
   ══════════════════════════════════════ */
.booking-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a0840 0%, #2d1060 60%, #3a1a70 100%);
  position: relative; overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,37,84,.15) 0%, transparent 65%);
  pointer-events: none;
}
.booking-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,45,158,.2) 0%, transparent 65%);
  pointer-events: none;
}
.booking-section .container { max-width: 720px; position: relative; z-index: 1; }

.booking-header { text-align: center; margin-bottom: 3rem; }
.booking-header .section-label { color: rgba(255,255,255,.5); }
.booking-header .section-label::before { background: linear-gradient(90deg, rgba(212,37,84,.6), rgba(255,255,255,.3)); }
.booking-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; font-weight: 400;
  margin-bottom: .75rem;
}
.booking-header p { color: rgba(255,255,255,.6); font-size: 1rem; }

/* Progress indicator */
.booking-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2.5rem;
}
.booking-progress__step {
  display: flex; align-items: center; gap: 0;
}
.booking-progress__dot {
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.3);
  transition: all .3s;
}
.booking-progress__dot.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 0 16px rgba(212,37,84,.5);
}
.booking-progress__dot.done {
  background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
}
.booking-progress__line {
  width: 4rem; height: 1px;
  background: rgba(255,255,255,.15);
}
.booking-progress__line.done { background: rgba(255,255,255,.3); }

/* Form card */
.booking-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

/* Step panels */
.booking-step { display: none; }
.booking-step.active { display: block; }

/* Step 1 — service tiles */
.booking-step__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem; color: #fff; font-weight: 400;
  margin-bottom: .5rem;
}
.booking-step__sub {
  font-size: .9rem; color: rgba(255,255,255,.5);
  margin-bottom: 1.8rem;
}
.service-tiles {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; margin-bottom: 1.5rem;
}
@media (max-width: 500px) { .service-tiles { grid-template-columns: 1fr; } }
.service-tile {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem; cursor: pointer;
  transition: all .2s;
  text-align: left;
}
.service-tile:hover {
  background: rgba(212,37,84,.15);
  border-color: rgba(212,37,84,.4);
}
.service-tile.selected {
  background: rgba(212,37,84,.2);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(212,37,84,.2);
}
.service-tile__name {
  font-size: 1rem; font-weight: 700; color: #fff;
  display: block; margin-bottom: .3rem;
}
.service-tile__desc {
  font-size: .88rem; color: rgba(255,255,255,.6);
}

/* Step 2 — contact fields */
.booking-fields { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.booking-field { display: flex; flex-direction: column; gap: .4rem; }
.booking-field label {
  font-size: .82rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.booking-field input, .booking-field textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem; padding: .9rem 1.1rem;
  font-size: .95rem; color: #fff; font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
}
.booking-field input::placeholder, .booking-field textarea::placeholder {
  color: rgba(255,255,255,.25);
}
.booking-field input:focus, .booking-field textarea:focus {
  border-color: rgba(212,37,84,.5);
  background: rgba(255,255,255,.1);
}
.booking-field textarea { resize: none; height: 90px; }

/* Step 3 — confirmation */
.booking-confirm {
  text-align: center; padding: 1rem 0;
}
.booking-confirm__icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #9b4dca);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(212,37,84,.35);
}
.booking-confirm h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.8rem; color: #fff; font-weight: 400;
  margin-bottom: .75rem;
}
.booking-confirm p { color: rgba(255,255,255,.6); line-height: 1.7; }
.booking-confirm__persona {
  display: flex; align-items: center; gap: .85rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  justify-content: center;
}
.booking-confirm__avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,37,84,.3), rgba(61,26,112,.3));
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: rgba(255,255,255,.5);
}
.booking-confirm__name { font-weight: 700; color: #fff; font-size: .9rem; }
.booking-confirm__role { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

/* Navigation buttons */
.booking-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0; gap: 1rem;
}
.btn-booking-next {
  background: var(--primary) !important; color: #fff !important;
  border: none; padding: .9rem 2rem; border-radius: 3rem;
  font-size: .95rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: transform .2s, box-shadow .2s;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 4px 16px rgba(212,37,84,.3);
}
.btn-booking-next:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,37,84,.45); }
.btn-booking-next:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.btn-booking-back {
  background: none; border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6); padding: .9rem 1.5rem;
  border-radius: 3rem; font-size: .9rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all .2s;
}
.btn-booking-back:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* ── Dark CTA ── */
.subpage-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a1060 100%);
  padding: 5rem 0; text-align: center; color: #fff;
}
.subpage-cta h2 { color: #fff; margin-bottom: 1rem; font-size: 2rem; }
.subpage-cta p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 2rem; }
.subpage-cta .button-primary {
  background: var(--primary); color: #fff;
  padding: 1rem 2.5rem; border-radius: 3rem;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  display: inline-block; transition: transform .2s, box-shadow .2s;
}
.subpage-cta .button-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,37,84,.4); }

/* ── About page specific ── */
.about-page-hero { padding: 7rem 0 5rem; position: relative; overflow: hidden; }
.about-page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.about-page-hero .container { position: relative; z-index: 1; }
.about-page-hero .back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary); text-decoration: none; margin-bottom: 2rem;
  opacity: .8; transition: opacity .2s;
}
.about-page-hero .back-link:hover { opacity: 1; }
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 768px) { .about-page-grid { grid-template-columns: 1fr; gap: 3rem; } }
.about-page-image-wrap { position: sticky; top: 7rem; }
.about-page-image-wrap .image-placeholder {
  aspect-ratio: 3/4; border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(212,37,84,.08), rgba(61,26,112,.1));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .9rem;
}
.about-page-content h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: .5rem; }
.about-page-content .tagline {
  font-size: 1.15rem; color: var(--primary); font-weight: 600; margin-bottom: 2rem;
}
.about-section { margin-bottom: 3rem; }
.about-section h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-dark); }
.about-section p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2rem; margin-top: 2rem;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--text-dark); }
.contact-card ul { list-style: none; padding: 0; margin: 0; }
.contact-card ul li {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  font-size: .95rem; color: var(--text-muted);
}
.contact-card ul li:last-child { border-bottom: none; }
.contact-card ul li strong { color: var(--text-dark); min-width: 80px; }
.services-list-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.2rem;
}
@media (max-width: 500px) { .services-list-mini { grid-template-columns: 1fr; } }
.service-pill-mini {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: .8rem; padding: .8rem 1rem;
  font-size: .9rem; color: var(--text-dark); font-weight: 500;
  text-decoration: none; transition: border-color .2s, color .2s;
  display: flex; align-items: center; gap: .5rem;
}
.service-pill-mini:hover { border-color: var(--primary); color: var(--primary); }

/* ── Micro-animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-item__number { animation: countUp .6s ease both; }
.stat-item:nth-child(1) .stat-item__number { animation-delay: .1s; }
.stat-item:nth-child(3) .stat-item__number { animation-delay: .25s; }
.stat-item:nth-child(5) .stat-item__number { animation-delay: .4s; }

.steps-timeline__item {
  transition: transform .2s ease;
}
.steps-timeline__item:hover { transform: translateX(4px); }

.pricing-card {
  transition: box-shadow .3s ease;
}
.pricing-card:hover {
  box-shadow: 0 8px 60px rgba(61,26,112,.15), 0 2px 12px rgba(0,0,0,.06);
}

/* ══════════════════════════════════════
   WAVE DIVIDERS between sections
   ══════════════════════════════════════ */
.wave-top,
.wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.wave-top { margin-bottom: -1px; }
.wave-bottom { margin-top: -1px; }
.wave-top svg,
.wave-bottom svg { display: block; width: 100%; }

/* ── Stats banner ── */
.stats-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a0840 100%);
  padding: 1.4rem 0;
}
.stats-banner .container {
  max-width: 780px;
  width: min(100% - 2.5rem, 780px);
  margin-inline: auto;
}
.stats-grid {
  display: flex; justify-content: space-between; align-items: center;
  gap: 0; width: 100%;
}
.stat-item {
  text-align: center; color: #fff;
  padding: .4rem 0;
  flex: 1;
}
.stat-item__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1;
  color: #fff;
}
.stat-item__label {
  font-size: .72rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-top: .25rem;
}
.stat-divider {
  width: 1px; height: 2.2rem;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media (max-width: 600px) { .stat-divider { display: none; } .stat-item { padding: .4rem 1.2rem; } }

/* ── FAQ on subpage ── */
.subpage-faq {
  padding: 4rem 0 3rem;
  position: relative; overflow: hidden;
}
.subpage-faq::before {
  content: '';
  position: absolute; bottom: 0; left: -5rem;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,26,112,.05) 0%, transparent 65%);
  pointer-events: none;
}
.subpage-faq .container { max-width: 780px !important; }
.subpage-faq h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.9rem; margin-bottom: 1.5rem; color: var(--text-dark); font-weight: 400; }

/* Override styles.css centering */
.subpage-faq .faq-list {
  max-width: 100% !important;
  margin-inline: 0 !important;
  display: block !important;
  gap: 0 !important;
}
.subpage-faq .faq-item {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.subpage-faq .faq-question {
  padding: 1rem 0 !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
}
.subpage-faq .faq-answer p {
  padding: 0 0 1rem !important;
  font-size: .95rem !important;
  color: var(--text-body) !important;
}

/* ── Services nav — sub-menu bar below main header ── */
.services-nav {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 73px; /* exact height of .site-header */
  z-index: 40;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-nav::-webkit-scrollbar { display: none; }
.services-nav .container {
  width: min(100% - 2.5rem, 68rem);
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
}
.services-nav__label { display: none; }
.services-nav__grid {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.services-nav__item {
  display: inline-flex; align-items: center;
  padding: .75rem 1.25rem;
  text-decoration: none; color: var(--muted);
  font-size: .82rem; font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap; flex-shrink: 0;
}
.services-nav__item:first-child {
  padding-left: 0;
}
.services-nav__item:hover { color: var(--primary); }
.services-nav__item.active {
  color: var(--text-dark);
  border-bottom-color: var(--primary);
  pointer-events: none;
}
.services-nav__item span { display: none; }
