/* ── LUXURY FEMININE MED SPA PALETTE ── */
:root {
  --bg: #FCF7F5;
  --bg2: #FBF4F1;
  --blush: #F5E8E4;
  --blush2: #EDD5CE;
  --pink: #E7CFC7;
  --rose: #CFA59A;
  --rose-dark: #9E6B62;
  --mauve: #6E5B56;
  --charcoal: #1F1B1A;
  --charcoal2: #2D2522;
  --stone: #8A7470;
  --stone2: #B5A09C;
  --gold: #C9A882;
  --gold2: #DEC09E;
  --cream: #F7EDE9;
  --warm: #EDD8D2;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { cursor: pointer; }

.promo-banner {
  background: linear-gradient(135deg, var(--mauve) 0%, var(--rose-dark) 100%);
  padding: .65rem 2rem;
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  border-bottom: 1px solid rgba(207,165,154,.2);
}
.promo-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
}
.promo-text { font-size: .72rem; color: rgba(255,255,255,.9); letter-spacing: .05em; }
.promo-text strong { color: #FFE4DC; }
.promo-cta {
  background: rgba(255,255,255,.2); color: #fff; padding: .28rem .9rem;
  border-radius: 100px; text-decoration: none; font-size: .68rem;
  font-weight: 500; letter-spacing: .08em; border: 1px solid rgba(255,255,255,.3);
  transition: all .3s;
}
.promo-cta:hover { background: rgba(255,255,255,.35); }
.promo-close { background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: .9rem; }

nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  padding: 1.1rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s;
  background: rgba(252,247,245,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(207,165,154,.18);
}
nav.scrolled {
  background: rgba(252,247,245,0.97);
  border-bottom: 1px solid rgba(207,165,154,.3);
  padding: .8rem 4rem; top: 0;
  box-shadow: 0 4px 30px rgba(110,91,86,.06);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-cta {
  background: var(--charcoal); color: var(--bg) !important;
  padding: .7rem 1.8rem; border-radius: 100px;
  text-decoration: none; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; transition: all .3s;
  border: 1px solid var(--charcoal); white-space: nowrap; font-weight: 500;
}
.nav-cta:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: all .3s; }
.footer-logo-img { height: 65px; width: auto; object-fit: contain; }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 400;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 300; color: var(--charcoal); text-decoration: none;
}
.mobile-menu a:hover { color: var(--rose); }
.mobile-cta {
  background: var(--charcoal); color: var(--bg) !important;
  padding: .8rem 2.2rem; border-radius: 100px; font-family: 'Jost', sans-serif !important;
  font-size: 1rem !important;
}
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.8rem; cursor: pointer; color: var(--stone); background: none; border: none; }

.floating-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 190; opacity: 0; transform: translateY(10px); transition: all .4s; pointer-events: none; }
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  background: var(--charcoal); color: var(--bg);
  padding: .85rem 1.6rem; border-radius: 50px;
  text-decoration: none; font-size: .75rem; font-weight: 500; letter-spacing: .06em;
  box-shadow: 0 8px 30px rgba(31,27,26,.2); transition: all .3s;
  display: flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(207,165,154,.3);
}
.float-btn:hover { background: var(--rose-dark); transform: translateY(-2px); }

.hero {
  min-height: 100svh; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('hero.png') center center / cover no-repeat;
  z-index: 0; transform: translateZ(0);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,10,9,.72) 0%, rgba(15,10,9,.82) 100%);
  z-index: 1;
}
.hero-center {
  position: relative; z-index: 2;
  text-align: center; padding: 10rem 2rem 6rem;
  max-width: 900px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(207,165,154,.15); border: 1px solid rgba(207,165,154,.35);
  border-radius: 100px; padding: .45rem 1.3rem; margin-bottom: 2.2rem;
  opacity: 0; animation: fadeUp .7s ease .2s forwards;
}
.badge-dot { width: 6px; height: 6px; background: var(--rose); border-radius: 50%; animation: pulse 2s ease infinite; flex-shrink: 0; }
.badge-text { font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 400; line-height: 1.06; color: #fff;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp .9s ease .35s forwards;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
  letter-spacing: -.01em;
}
.hero-h1 em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,.75);
  max-width: 580px; margin: 0 auto 2.8rem;
  opacity: 0; animation: fadeUp .9s ease .5s forwards;
  font-weight: 300;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s ease .65s forwards; margin-bottom: 2.5rem;
}
.btn-hero-primary {
  background: var(--rose); color: var(--white);
  padding: 1.1rem 2.8rem; text-decoration: none;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  border-radius: 100px; transition: all .3s;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--rose);
}
.btn-hero-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(158,107,98,.4); }
.btn-hero-secondary {
  background: rgba(255,255,255,.1); color: #fff;
  padding: 1.1rem 2.8rem; text-decoration: none;
  font-size: .78rem; font-weight: 400; letter-spacing: .1em;
  border-radius: 100px; transition: all .3s;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.hero-pills {
  display: flex; align-items: center; justify-content: center; gap: .7rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s ease .8s forwards; margin-bottom: 2.2rem;
}
.hero-pill {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: .38rem 1rem;
  font-size: .68rem; color: rgba(255,255,255,.82); letter-spacing: .06em;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; animation: fadeUp .9s ease 1s forwards; flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; color: var(--rose); line-height: 1; }
.trust-lbl { font-size: .58rem; color: rgba(255,255,255,.45); letter-spacing: .12em; margin-top: 2px; text-transform: uppercase; }
.trust-div { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

.marquee-wrap { background: var(--mauve); padding: .9rem 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 35s linear infinite; white-space: nowrap; }
.mq-item {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); flex-shrink: 0; padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}

.s-tag { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 1rem; }
.s-tag-light { color: var(--rose); }
.s-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--charcoal);
  letter-spacing: -.01em;
}
.s-h2 em { font-style: italic; color: var(--rose); }
.s-h2-light { color: #fff; }
.s-body { font-size: .9rem; line-height: 1.9; color: var(--stone); margin-top: 1rem; font-weight: 300; }
.s-body-light { color: rgba(255,255,255,.65); }

.btn-primary {
  background: var(--charcoal); color: var(--bg);
  padding: 1rem 2.6rem; text-decoration: none;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 100px; transition: all .3s; display: inline-block;
  border: 1px solid var(--charcoal); font-weight: 500;
}
.btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); }
.btn-block { display: block; text-align: center; width: 100%; }

.calc-section { padding: 9rem 4rem; background: linear-gradient(135deg, #FCF1EE 0%, #FAF0EC 100%); }
.calc-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.loss-math { margin-top: 2rem; border: 1px solid var(--blush2); border-radius: 16px; overflow: hidden; }
.loss-row { display: flex; justify-content: space-between; align-items: center; padding: .9rem 1.3rem; border-bottom: 1px solid var(--blush2); font-size: .84rem; }
.loss-row:last-child { border-bottom: none; }
.loss-label { color: var(--stone); }
.loss-val { font-weight: 500; color: var(--charcoal); }
.loss-row-highlight { background: rgba(207,165,154,.08); }
.loss-red { color: var(--rose-dark); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.calc-card {
  background: var(--white); border-radius: 24px; padding: 2.8rem;
  box-shadow: 0 20px 80px rgba(110,91,86,.09), 0 4px 20px rgba(207,165,154,.08);
  border: 1px solid var(--blush2); position: relative; overflow: hidden;
}
.calc-card-glow { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(207,165,154,.18) 0%, transparent 70%); pointer-events: none; }
.calc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--charcoal); margin-bottom: .4rem; }
.calc-subtitle { font-size: .78rem; color: var(--stone); margin-bottom: 2.2rem; }
.calc-field { margin-bottom: 1.6rem; }
.calc-field-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.calc-field label { font-size: .76rem; color: var(--stone); letter-spacing: .04em; text-transform: uppercase; }
.calc-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--rose-dark); }
input[type=range] { width: 100%; appearance: none; height: 3px; border-radius: 2px; background: var(--blush2); outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--rose); cursor: pointer; box-shadow: 0 2px 10px rgba(207,165,154,.5); }
.calc-result { background: linear-gradient(135deg, var(--cream) 0%, #F5E8E3 100%); border-radius: 14px; padding: 1.3rem; margin-bottom: 1.8rem; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; font-size: .8rem; color: var(--stone); border-bottom: 1px solid rgba(207,165,154,.2); }
.calc-result-row:last-child { border-bottom: none; }
.calc-result-big { padding: .8rem 0; }
.calc-money { font-weight: 500; color: var(--charcoal); }
.calc-money-big { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--rose-dark); }
.calc-money-year { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--stone); }
.btn-calc { display: block; text-align: center; background: var(--rose); color: var(--white); padding: 1rem; border-radius: 100px; text-decoration: none; font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: all .3s; }
.btn-calc:hover { background: var(--rose-dark); transform: translateY(-2px); }

.how { background: linear-gradient(135deg, var(--mauve) 0%, #3D2E2A 100%); padding: 9rem 4rem; overflow: hidden; position: relative; }
.how::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(207,165,154,.08) 0%, transparent 70%); pointer-events: none; }
.how-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.how-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; margin-bottom: 5rem; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.05); }
.step { background: rgba(255,255,255,.02); padding: 3rem 2.5rem; transition: background .3s; border-bottom: 1px solid rgba(207,165,154,.08); }
.step:hover { background: rgba(207,165,154,.06); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: rgba(207,165,154,.15); line-height: 1; margin-bottom: 1.5rem; }
.step-icon { width: 48px; height: 48px; border: 1px solid rgba(207,165,154,.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.5rem; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: #fff; margin-bottom: .8rem; }
.step-desc { font-size: .82rem; line-height: 1.8; color: rgba(255,255,255,.45); font-weight: 300; }

.features { padding: 9rem 4rem; max-width: 1280px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 4rem; }
.tab-nav { display: flex; justify-content: center; margin-bottom: 4.5rem; background: var(--cream); border-radius: 100px; padding: .3rem; width: fit-content; margin-left: auto; margin-right: auto; border: 1px solid var(--blush2); }
.tab-btn { padding: .65rem 1.8rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; background: transparent; border: none; cursor: pointer; color: var(--stone); transition: all .3s; font-family: 'Jost', sans-serif; border-radius: 100px; }
.tab-btn.active { background: var(--charcoal); color: var(--bg); }
.tab-btn:not(.active):hover { color: var(--charcoal); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tab-img { border-radius: 28px; overflow: hidden; box-shadow: 0 30px 80px rgba(110,91,86,.14); position: relative; }
.tab-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,27,26,.2) 0%, transparent 50%); pointer-events: none; }
.tab-img img { width: 100%; display: block; transition: transform .7s ease; filter: brightness(.95) saturate(1.05); }
.tab-img:hover img { transform: scale(1.04); filter: brightness(1); }
.feat-list { display: flex; flex-direction: column; gap: 1.8rem; }
.feat-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.feat-icon { width: 46px; height: 46px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 1px solid var(--blush2); transition: all .3s; }
.feat-item:hover .feat-icon { background: var(--blush2); transform: scale(1.05); }
.feat-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--charcoal); margin-bottom: .35rem; }
.feat-desc { font-size: .82rem; line-height: 1.75; color: var(--stone); font-weight: 300; }

.audio-section { background: linear-gradient(135deg, #2D2522 0%, #1F1B1A 100%); padding: 9rem 4rem; position: relative; overflow: hidden; }
.audio-section::before { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(207,165,154,.05) 0%, transparent 70%); pointer-events: none; }
.audio-inner { max-width: 1100px; margin: 0 auto; }
.audio-header { text-align: center; margin-bottom: 4.5rem; }
.audio-header .s-h2 { color: #fff; }
.audio-header .s-body { max-width: 580px; margin-left: auto; margin-right: auto; }
.voice-chips { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.8rem; }
.voice-chip { background: rgba(207,165,154,.1); border: 1px solid rgba(207,165,154,.25); border-radius: 100px; padding: .35rem .9rem; font-size: .66rem; color: var(--rose); letter-spacing: .07em; }
.audio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.audio-card { background: rgba(255,255,255,.03); border: 1px solid rgba(207,165,154,.18); border-radius: 24px; padding: 2.5rem; transition: all .3s; }
.audio-card:hover { border-color: rgba(207,165,154,.4); background: rgba(207,165,154,.05); }
.audio-lang { display: inline-flex; align-items: center; gap: .5rem; background: rgba(207,165,154,.12); border-radius: 100px; padding: .35rem .9rem; margin-bottom: 1.5rem; }
.audio-lang-flag { font-size: 1rem; }
.audio-lang-text { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose); }
.audio-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: #fff; margin-bottom: .6rem; }
.audio-desc { font-size: .8rem; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 2rem; font-weight: 300; }
.audio-player { background: rgba(255,255,255,.05); border-radius: 14px; padding: 1.2rem 1.5rem; }
.ap-top { display: flex; align-items: center; gap: 1rem; margin-bottom: .9rem; }
.ap-play { width: 46px; height: 46px; border-radius: 50%; background: var(--rose); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; flex-shrink: 0; }
.ap-play:hover { background: var(--rose-dark); transform: scale(1.05); }
.ap-play svg { fill: #fff; }
.ap-info { flex: 1; min-width: 0; }
.ap-title-text { font-size: .78rem; font-weight: 500; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ap-time { font-size: .63rem; color: rgba(255,255,255,.4); margin-top: 2px; }
.ap-bar { position: relative; height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; cursor: pointer; margin-top: .5rem; }
.ap-progress { height: 100%; background: var(--rose); border-radius: 2px; width: 0%; transition: width .1s linear; pointer-events: none; }

.stats { background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%); }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block { padding: 4.5rem 2.5rem; border-right: 1px solid var(--blush2); text-align: center; }
.stat-block:last-child { border-right: none; }
.stat-big { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--charcoal); line-height: 1; letter-spacing: -.02em; }
.stat-big span { color: var(--rose); }
.stat-lbl { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone); margin-top: .6rem; }

.trust-band { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal2) 100%); padding: 2.2rem 4rem; border-top: 1px solid rgba(207,165,154,.12); }
.trust-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; }
.trust-item-lg { display: flex; align-items: center; gap: .6rem; font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .08em; }
.trust-icon { font-size: 1rem; }

.testimonials { padding: 9rem 4rem; background: var(--bg); }
.test-header { text-align: center; margin-bottom: 4.5rem; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1280px; margin: 0 auto; }
.test-card { background: var(--white); border: 1px solid var(--blush2); border-radius: 24px; padding: 2.5rem; transition: all .35s; position: relative; overflow: hidden; box-shadow: 0 4px 30px rgba(110,91,86,.06); }
.test-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--rose), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .5s; }
.test-card:hover { box-shadow: 0 20px 60px rgba(110,91,86,.12); transform: translateY(-4px); }
.test-card:hover::before { transform: scaleX(1); }
.test-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: .7; color: var(--blush2); font-weight: 300; margin-bottom: 1rem; display: block; }
.test-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-style: italic; line-height: 1.8; color: var(--charcoal2); margin-bottom: 2rem; }
.test-bottom { display: flex; align-items: center; gap: 1rem; }
.test-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--blush2); }
.test-name { font-size: .84rem; font-weight: 500; color: var(--charcoal); line-height: 1.3; }
.test-role { font-size: .7rem; color: var(--stone); margin-top: 2px; }
.test-stars { color: var(--rose); font-size: .78rem; letter-spacing: 2px; margin-top: 3px; }
.test-badge { margin-left: auto; flex-shrink: 0; background: linear-gradient(135deg, rgba(207,165,154,.15), rgba(222,192,158,.2)); border: 1px solid rgba(207,165,154,.3); border-radius: 100px; padding: .3rem .9rem; font-size: .66rem; color: var(--rose-dark); letter-spacing: .06em; font-weight: 500; white-space: nowrap; }

.pricing-section { padding: 9rem 4rem; background: linear-gradient(135deg, var(--mauve) 0%, #3D2E2A 100%); }
.pricing-inner { max-width: 1280px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 4.5rem; }
.pricing-trial-badge { display: inline-block; background: rgba(207,165,154,.12); border: 1px solid rgba(207,165,154,.3); border-radius: 100px; padding: .5rem 1.5rem; font-size: .7rem; color: var(--rose); letter-spacing: .07em; margin-top: 1.8rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; align-items: start; }
.pricing-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 24px; padding: 2.2rem; transition: all .3s; position: relative; }
.pricing-card:hover { border-color: rgba(207,165,154,.3); transform: translateY(-4px); }
.pricing-card-featured { background: rgba(207,165,154,.1); border-color: rgba(207,165,154,.4); transform: scale(1.02); }
.pricing-card-featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-popular { display: inline-block; background: var(--rose); color: #fff; font-size: .58rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; padding: .22rem .8rem; border-radius: 100px; margin-bottom: 1.2rem; }
.pricing-plan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; }
.pricing-card-featured .pricing-plan-name { color: var(--rose); }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; color: #fff; line-height: 1; margin-bottom: .3rem; letter-spacing: -.02em; }
.pricing-price span { font-size: .95rem; color: rgba(255,255,255,.4); font-family: 'Jost', sans-serif; font-weight: 300; }
.pricing-minutes { font-size: .68rem; color: var(--rose); letter-spacing: .08em; margin-bottom: 1rem; text-transform: uppercase; }
.pricing-desc { font-size: .78rem; line-height: 1.7; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; font-weight: 300; }
.pricing-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .7rem; font-size: .77rem; color: rgba(255,255,255,.5); line-height: 1.5; font-weight: 300; }
.pf-check { color: rgba(207,165,154,.7); font-size: .8rem; flex-shrink: 0; margin-top: 1px; }
.pf-rose { color: var(--rose) !important; }
.pricing-features li:has(.pf-rose) { color: rgba(255,255,255,.8); }
.pf-muted { color: rgba(255,255,255,.15); font-size: .8rem; flex-shrink: 0; }
.pricing-features li:has(.pf-muted) { color: rgba(255,255,255,.2); }
.btn-pricing { display: block; text-align: center; padding: .9rem; border-radius: 100px; text-decoration: none; font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: all .3s; background: rgba(255,255,255,.07); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); }
.btn-pricing:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-1px); }
.btn-pricing-featured { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn-pricing-featured:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.pricing-overage { font-size: .62rem; color: rgba(255,255,255,.25); text-align: center; margin-top: .8rem; letter-spacing: .04em; }
.pricing-footer { text-align: center; margin-top: 3rem; font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.9; }
.pricing-footer strong { color: var(--rose); }

.why-section { padding: 9rem 4rem; background: var(--bg2); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 4.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { background: var(--white); border: 1px solid var(--blush2); border-radius: 20px; padding: 2.2rem 1.8rem; text-align: center; transition: all .3s; box-shadow: 0 2px 20px rgba(110,91,86,.04); }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(110,91,86,.1); border-color: var(--rose); }
.why-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--charcoal); margin-bottom: .6rem; }
.why-desc { font-size: .8rem; line-height: 1.75; color: var(--stone); font-weight: 300; }

.book-section { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal2) 100%); padding: 9rem 4rem; }
.book-inner { max-width: 1100px; margin: 0 auto; }
.book-header { margin-bottom: 4rem; }
.book-options { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.book-card { background: rgba(255,255,255,.04); border: 1px solid rgba(207,165,154,.18); border-radius: 24px; padding: 2.8rem; transition: all .3s; }
.book-card:hover { border-color: rgba(207,165,154,.35); }
.book-card-featured { background: rgba(207,165,154,.08); border-color: rgba(207,165,154,.35); }
.book-card-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.book-card-tag { display: inline-block; background: var(--rose); color: #fff; font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; padding: .22rem .8rem; border-radius: 100px; margin-bottom: 1rem; font-weight: 500; }
.book-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; color: #fff; margin-bottom: .7rem; }
.book-card-desc { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 2rem; font-weight: 300; }
.book-card-note { font-size: .68rem; color: rgba(255,255,255,.3); margin-top: 1rem; text-align: center; letter-spacing: .04em; }
.contact-form { display: flex; flex-direction: column; gap: .8rem; }
.form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: .8rem 1.1rem; font-size: .84rem; color: #fff; font-family: 'Jost', sans-serif; outline: none; transition: border-color .3s; resize: none; font-weight: 300; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--rose); }

footer { background: var(--charcoal2); padding: 4rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(207,165,154,.12); flex-wrap: wrap; gap: 1.5rem; }
.footer-left {}
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.3); margin-top: .4rem; letter-spacing: .04em; }
.footer-tagline { font-size: .63rem; color: rgba(207,165,154,.35); margin-top: 4px; letter-spacing: .07em; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: .68rem; color: rgba(255,255,255,.3); text-decoration: none; letter-spacing: .07em; transition: color .3s; }
.footer-links a:hover { color: var(--rose); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blush2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

@media(max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 900px) {
  nav, nav.scrolled { padding: 1rem 1.5rem; top: 0; }
  .promo-banner { position: relative; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-center { padding: 7rem 1.5rem 4rem; }
  .hero-h1 { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero-trust { gap: 1.2rem; }
  .trust-div { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-pills { gap: .5rem; }
  .floating-cta { bottom: 1rem; right: 1rem; }
  .calc-section { padding: 6rem 1.5rem; }
  .calc-inner { grid-template-columns: 1fr; gap: 3rem; }
  .how { padding: 6rem 1.5rem; }
  .how-header { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps { grid-template-columns: 1fr; gap: 1px; }
  .features { padding: 6rem 1.5rem; }
  .tab-nav { flex-wrap: wrap; width: 100%; border-radius: 16px; }
  .tab-btn { flex: 1; min-width: 100px; font-size: .6rem; padding: .55rem 1rem; }
  .tab-content.active { grid-template-columns: 1fr; gap: 2.5rem; }
  .tab-img { max-height: 280px; overflow: hidden; }
  .audio-section { padding: 6rem 1.5rem; }
  .audio-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid var(--blush2); padding: 2.5rem 1.5rem; }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--blush2); }
  .stat-block:nth-last-child(-n+2) { border-bottom: none; }
  .trust-band { padding: 2rem 1.5rem; }
  .trust-band-inner { gap: 1rem; }
  .testimonials { padding: 6rem 1.5rem; }
  .test-grid { grid-template-columns: 1fr; }
  .pricing-section { padding: 6rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .why-section { padding: 6rem 1.5rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .book-section { padding: 6rem 1.5rem; }
  .book-options { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media(max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .audio-card { padding: 1.8rem 1.3rem; }
  .voice-chips { gap: .4rem; }
  .voice-chip { font-size: .6rem; padding: .28rem .7rem; }
  .why-grid { grid-template-columns: 1fr; }
  .promo-text { font-size: .63rem; text-align: center; }
  .test-badge { display: none; }
}

.calc-section { padding: 10rem 5rem; }
.how { padding: 10rem 5rem; }
.features { padding: 10rem 5rem; }
.audio-section { padding: 10rem 5rem; }
.testimonials { padding: 10rem 5rem; }
.pricing-section { padding: 10rem 5rem; }
.why-section { padding: 10rem 5rem; }
.book-section { padding: 10rem 5rem; }
.features { background: linear-gradient(to bottom, #FEFAF8 0%, var(--bg) 100%); }
.why-section { background: linear-gradient(to bottom, var(--bg) 0%, #FBF3F0 100%); }
.hero-center { padding: 12rem 3rem 8rem; max-width: 820px; }
.hero-h1 { margin-bottom: 2rem; letter-spacing: -.02em; }
.hero-sub { font-size: 1.08rem; max-width: 540px; line-height: 2; }
.s-h2 { letter-spacing: -.02em; }
.feat-list { gap: 2.2rem; }
.feat-item { padding: 1.8rem; background: var(--white); border-radius: 18px; border: 1px solid var(--blush2); box-shadow: 0 2px 20px rgba(110,91,86,.04); transition: all .3s; }
.feat-item:hover { box-shadow: 0 12px 40px rgba(110,91,86,.09); transform: translateY(-2px); border-color: var(--rose); }
.feat-item:hover .feat-icon { background: var(--blush); transform: none; }
.feat-icon { background: var(--bg); border: 1px solid var(--blush2); }
.tab-content.active { gap: 6rem; }
.tab-img { border-radius: 32px; box-shadow: 0 40px 100px rgba(110,91,86,.16); }
.calc-card { border-radius: 28px; padding: 3.2rem; }
.calc-section { background: var(--bg2); }
.calc-inner { gap: 7rem; }
.step { padding: 3.5rem 3rem; }
.step-num { font-size: 6rem; margin-bottom: 2rem; }
.audio-card { border-radius: 28px; padding: 3rem; }
.stat-block { padding: 5rem 3rem; }
.stat-big { font-size: 5rem; }
.test-card { padding: 3rem; border-radius: 28px; }
.test-quote-mark { font-size: 6rem; margin-bottom: 1.5rem; color: var(--pink); }
.test-quote { font-size: 1.12rem; line-height: 1.85; margin-bottom: 2.5rem; }
.test-photo { width: 58px; height: 58px; border: 2px solid var(--rose); }
.pricing-card { padding: 2.8rem; border-radius: 28px; }
.pricing-card-featured { padding: 3rem; }
.pricing-price { font-size: 3.6rem; margin-bottom: .5rem; }
.pricing-features { gap: .8rem; margin-bottom: 2.5rem; }
.pricing-features li { font-size: .8rem; }
.book-card { padding: 3.2rem; border-radius: 28px; }
.why-card { padding: 2.6rem 2rem; border-radius: 24px; }
.why-icon { font-size: 2.2rem; margin-bottom: 1.5rem; }
.why-title { font-size: 1.4rem; margin-bottom: .8rem; }
.why-desc { font-size: .84rem; line-height: 1.8; }
.reveal { transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); transform: translateY(40px); }
.s-h2, .hero-h1, .calc-title { text-wrap: balance; }
footer { padding: 5rem; }
.how::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(207,165,154,.04) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(207,165,154,.04) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.how-inner { position: relative; z-index: 1; }
.pricing-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 50%, rgba(207,165,154,.06) 0%, transparent 40%), radial-gradient(circle at 90% 50%, rgba(207,165,154,.06) 0%, transparent 40%); pointer-events: none; }
.pricing-section { position: relative; }
.pricing-inner { position: relative; z-index: 1; }
.trust-band { padding: 2.5rem 5rem; }
.trust-item-lg { font-size: .74rem; gap: .7rem; }
.trust-icon { font-size: 1.1rem; }
@media(max-width: 900px) {
  .calc-section, .how, .features, .audio-section, .testimonials, .pricing-section, .why-section, .book-section { padding: 6rem 1.8rem; }
  .trust-band { padding: 2rem 1.8rem; }
  footer { padding: 3rem 1.8rem; }
  .hero-center { padding: 8rem 1.8rem 5rem; }
  .feat-item { padding: 1.4rem; }
  .step { padding: 2.5rem 2rem; }
}

.feat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 4rem; }
.feat-card { background: var(--white); border: 1px solid var(--blush2); border-radius: 20px; padding: 2rem 1.6rem; transition: all .35s; position: relative; overflow: hidden; box-shadow: 0 2px 20px rgba(110,91,86,.04); }
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--rose), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(110,91,86,.1); border-color: var(--rose); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--blush2); line-height: 1; margin-bottom: .8rem; letter-spacing: -.02em; }
.feat-card-icon { font-size: 1.5rem; margin-bottom: .8rem; }
.feat-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--charcoal); margin-bottom: .5rem; line-height: 1.2; }
.feat-card-desc { font-size: .78rem; line-height: 1.75; color: var(--stone); font-weight: 300; }
.features-header .s-body { margin-left: auto; margin-right: auto; }
.ap-time { font-style: italic; }
@media(max-width: 1100px) { .feat-cards { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .feat-cards { grid-template-columns: 1fr; } }

section, .calc-section, .how, .features, .audio-section, .testimonials, .pricing-section, .why-section, .book-section { padding-top: 10rem; padding-bottom: 10rem; }
body { background: var(--bg); }
.hero-h1 { font-weight: 300; letter-spacing: -.02em; }
.s-h2 { font-weight: 300; letter-spacing: -.015em; }
.s-body { line-height: 2; }
.feat-desc, .step-desc, .why-desc, .audio-desc, .book-card-desc { line-height: 1.9; }
.pricing-divider { opacity: .5; }
.stat-block { position: relative; }
.stat-big { font-weight: 200; }
.test-card, .why-card, .book-card, .calc-card, .audio-card, .pricing-card { border-width: 1px; }
.calc-section { background: linear-gradient(160deg, #FBF0EC 0%, #F9EDEA 100%); }
.features { background: var(--bg); }
.why-section { background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%); }
.test-quote { font-size: 1.12rem; }
.test-quote-mark { font-size: 6rem; opacity: .6; }
.nav-links a { letter-spacing: .16em; }

.feat-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1100px; margin: 5rem auto 0; }
.feat-card { background: var(--white); border: 1px solid var(--blush2); border-radius: 24px; padding: 2.4rem; transition: all .35s; box-shadow: 0 2px 24px rgba(110,91,86,.05); position: relative; overflow: hidden; }
.feat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--rose), transparent); opacity: 0; transition: opacity .4s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(110,91,86,.1); border-color: rgba(207,165,154,.5); }
.feat-card:hover::after { opacity: 1; }
.feat-card-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 0; overflow: hidden; background: linear-gradient(135deg, var(--cream) 0%, #F5E4DF 100%); }
.feat-card-img { height: 320px; overflow: hidden; }
.feat-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.95) saturate(1.05); transition: transform .7s ease; }
.feat-card-wide:hover .feat-card-img img { transform: scale(1.04); }
.feat-card-body { padding: 2.5rem 2.5rem 2.5rem 0; }
.feat-card-tag { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--rose); margin-bottom: .8rem; display: block; }
.feat-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--charcoal); line-height: 1.2; margin-bottom: 1rem; letter-spacing: -.01em; }
.feat-card-desc { font-size: .84rem; line-height: 1.85; color: var(--stone); font-weight: 300; margin-bottom: 1.5rem; }
.feat-card-pills { display: flex; gap: .6rem; flex-wrap: wrap; }
.feat-card-pills span { background: rgba(207,165,154,.15); border: 1px solid rgba(207,165,154,.3); border-radius: 100px; padding: .28rem .8rem; font-size: .65rem; color: var(--rose-dark); letter-spacing: .07em; }
.feat-card-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.feat-card:not(.feat-card-wide) .feat-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: .6rem; letter-spacing: -.01em; }
.feat-card:not(.feat-card-wide) .feat-card-desc { font-size: .82rem; color: var(--stone); line-height: 1.8; }
.ap-time { font-size: .62rem; color: rgba(255,255,255,.4); margin-top: 3px; font-style: italic; }
@media(max-width: 900px) {
  section, .calc-section, .how, .features, .audio-section, .testimonials, .pricing-section, .why-section, .book-section { padding-top: 6rem; padding-bottom: 6rem; }
  .feat-cards-grid { grid-template-columns: 1fr; }
  .feat-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .feat-card-img { height: 220px; }
  .feat-card-body { padding: 1.8rem; }
}

.hero-split { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1280px; margin: 0 auto; padding: 17rem 4rem 7rem; width: 100%; }
.hero-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-left .hero-h1 { font-size: clamp(2.6rem, 4.5vw, 5.5rem); }
.hero-left .hero-badge { margin-bottom: 2rem; margin-top: 1rem; }
.hero-left .hero-sub { margin: 0 0 2.5rem; max-width: 480px; }
.hero-left .hero-btns { justify-content: flex-start; margin-bottom: 2.5rem; }
.hero-left .hero-trust { justify-content: flex-start; }
.hero-right { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; position: relative; }
.phone-mockup { position: relative; width: 220px; align-self: center; }
.phone-frame { width: 220px; height: 420px; background: linear-gradient(145deg, #1a1410 0%, #0d0b08 100%); border-radius: 44px; padding: 14px; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.1); position: relative; }
.phone-notch { width: 80px; height: 24px; background: #0d0b08; border-radius: 0 0 16px 16px; margin: 0 auto 10px; position: relative; z-index: 2; }
.phone-notch::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; background: #1a1410; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.06); }
.phone-screen { background: linear-gradient(160deg, #1a0f0c 0%, #0d0806 100%); border-radius: 32px; height: 350px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.phone-screen::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(207,165,154,.12) 0%, transparent 60%); }
.call-ui { display: flex; flex-direction: column; align-items: center; gap: .5rem; position: relative; z-index: 1; padding: 1rem; }
.call-avatar { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(207,165,154,.2) 0%, rgba(158,107,98,.3) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border: 2px solid rgba(207,165,154,.3); margin-bottom: .3rem; box-shadow: 0 0 30px rgba(207,165,154,.2); }
.call-label { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(207,165,154,.7); }
.call-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; font-weight: 400; }
.call-sub { font-size: .6rem; color: rgba(255,255,255,.4); letter-spacing: .05em; }
.call-actions { display: flex; gap: 1.5rem; margin-top: .8rem; }
.call-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 600; cursor: pointer; }
.call-decline { background: rgba(220,80,80,.25); color: #ff6b6b; border: 1px solid rgba(220,80,80,.3); }
.call-accept { background: rgba(100,200,120,.25); color: #6dd68a; border: 1px solid rgba(100,200,120,.3); animation: callPulse 2s ease infinite; }
@keyframes callPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(100,200,120,.3); } 50% { box-shadow: 0 0 0 8px rgba(100,200,120,.0); } }
.booking-toast { position: absolute; bottom: -18px; right: -60px; background: rgba(252,247,245,.96); backdrop-filter: blur(20px); border: 1px solid rgba(207,165,154,.35); border-radius: 16px; padding: .75rem 1rem; display: flex; align-items: center; gap: .7rem; box-shadow: 0 16px 40px rgba(31,27,26,.25); width: 190px; animation: toastFloat 3s ease infinite; }
@keyframes toastFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.toast-icon { width: 28px; height: 28px; background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .7rem; font-weight: 700; flex-shrink: 0; }
.toast-title { font-size: .72rem; font-weight: 500; color: var(--charcoal); line-height: 1.2; }
.toast-detail { font-size: .62rem; color: var(--stone); margin-top: 1px; }
.revenue-card { background: rgba(252,247,245,.06); backdrop-filter: blur(20px); border: 1px solid rgba(207,165,154,.2); border-radius: 20px; padding: 1.4rem 1.6rem; width: 100%; max-width: 300px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.revenue-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.revenue-card-label { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(207,165,154,.7); }
.revenue-card-dot { width: 7px; height: 7px; background: #6dd68a; border-radius: 50%; box-shadow: 0 0 8px rgba(109,214,138,.5); animation: livePulse 2s ease infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.revenue-card-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 1rem; letter-spacing: -.02em; }
.revenue-card-stats { display: flex; gap: 1.2rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.rev-stat { display: flex; flex-direction: column; gap: 1px; }
.rev-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: #fff; line-height: 1; }
.rev-stat-lbl { font-size: .56rem; color: rgba(255,255,255,.35); letter-spacing: .06em; }
.revenue-bar-wrap { display: flex; flex-direction: column; gap: .4rem; }
.revenue-bar-track { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.revenue-bar-fill { height: 100%; width: 67%; background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%); border-radius: 2px; }
.revenue-bar-label { font-size: .58rem; color: rgba(207,165,154,.5); letter-spacing: .05em; }
@media(max-width: 1000px) {
  .hero-split { grid-template-columns: 1fr; padding: 8rem 2rem 5rem; text-align: center; }
  .hero-left { align-items: center; text-align: center; }
  .hero-left .hero-sub { margin: 0 auto 2.5rem; }
  .hero-left .hero-btns { justify-content: center; }
  .hero-left .hero-trust { justify-content: center; }
  .hero-right { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .phone-mockup { width: 180px; }
  .phone-frame { width: 180px; height: 340px; }
  .booking-toast { right: -40px; bottom: -14px; width: 160px; }
  .revenue-card { max-width: 260px; }
}
@media(max-width: 600px) { .hero-right { display: none; } .hero-split { padding: 7rem 1.5rem 4rem; } }

.call-time { font-size: .58rem; color: rgba(255,255,255,.35); letter-spacing: .08em; margin-bottom: .3rem; align-self: flex-start; padding-left: 2px; }
.call-wave { display: flex; align-items: flex-end; gap: 3px; height: 22px; margin: .4rem 0 .2rem; }
.call-wave span { display: block; width: 3px; background: var(--rose); border-radius: 2px; opacity: .7; animation: wave 1.2s ease infinite; }
.call-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.call-wave span:nth-child(2) { height: 16px; animation-delay: .1s; }
.call-wave span:nth-child(3) { height: 22px; animation-delay: .2s; }
.call-wave span:nth-child(4) { height: 14px; animation-delay: .3s; }
.call-wave span:nth-child(5) { height: 8px; animation-delay: .4s; }
@keyframes wave { 0%, 100% { transform: scaleY(.5); opacity: .4; } 50% { transform: scaleY(1); opacity: .9; } }
.call-duration { font-size: .68rem; color: rgba(255,255,255,.4); letter-spacing: .1em; font-family: 'Jost', monospace; }
.call-actions { display: none; }

.hero-proof-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.proof-pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: .45rem 1rem; font-size: .72rem; color: rgba(255,255,255,.9); letter-spacing: .04em; }

.compare-bar { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; margin-top: 4rem; background: rgba(255,255,255,.03); border: 1px solid rgba(207,165,154,.15); border-radius: 24px; padding: 2.5rem; }
.compare-label { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; display: block; }
.compare-bad { color: rgba(255,100,100,.7); }
.compare-good { color: var(--rose); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.compare-list li { font-size: .82rem; color: rgba(255,255,255,.4); padding-left: 1rem; position: relative; }
.compare-list li::before { content: '✕'; position: absolute; left: 0; color: rgba(255,100,100,.5); font-size: .7rem; }
.compare-list-good li { color: rgba(255,255,255,.75); }
.compare-list-good li::before { content: '✓'; color: var(--rose); }
.compare-divider { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: rgba(207,165,154,.3); align-self: center; font-weight: 300; }

.pricing-note { margin-top: 2.5rem; }
.pricing-note-inner { display: flex; align-items: flex-start; gap: 1rem; background: rgba(207,165,154,.1); border: 1px solid rgba(207,165,154,.25); border-radius: 14px; padding: 1.2rem 1.5rem; font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.pricing-note-inner strong { color: var(--rose); }
.pricing-note-icon { font-size: 1.2rem; flex-shrink: 0; }

@media(max-width: 900px) {
  .compare-bar { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.8rem; }
  .compare-divider { text-align: center; }
  .hero-proof-pills { gap: .4rem; }
  .proof-pill { font-size: .65rem; padding: .38rem .8rem; }
}

.pricing-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 820px; margin: 0 auto; }
.pricing-card-2 { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 28px; padding: 2.8rem; position: relative; transition: all .3s; }
.pricing-card-2:hover { transform: translateY(-4px); border-color: rgba(207,165,154,.4); }
.pricing-card-2-featured { background: rgba(207,165,154,.12); border-color: rgba(207,165,154,.5); transform: scale(1.03); }
.pricing-card-2-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular-2 { display: inline-block; background: var(--rose); color: #fff; font-size: .58rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; padding: .22rem .9rem; border-radius: 100px; margin-bottom: 1rem; }
.pricing-was-price { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: .3rem; letter-spacing: .03em; }
.pricing-strikethrough { text-decoration: line-through; color: rgba(255,100,100,.6); font-weight: 500; }
.pricing-price-2 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 200; color: #fff; line-height: 1; margin-bottom: .4rem; letter-spacing: -.02em; }
.pricing-price-2 span { font-size: 1rem; color: rgba(255,255,255,.45); font-family: 'Jost', sans-serif; font-weight: 300; }
.btn-pricing-2 { display: block; text-align: center; padding: 1rem; border-radius: 100px; text-decoration: none; font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: all .3s; background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.15); margin-top: 1.5rem; }
.btn-pricing-2:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-pricing-2-featured { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn-pricing-2-featured:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.pricing-timer-wrap { margin: 2rem auto 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.pricing-timer-label { font-size: .72rem; color: rgba(207,165,154,.8); letter-spacing: .1em; text-transform: uppercase; }
.pricing-timer { display: flex; align-items: center; gap: .5rem; background: rgba(0,0,0,.3); border: 1px solid rgba(207,165,154,.3); border-radius: 14px; padding: .8rem 1.5rem; }
.timer-block { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.timer-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--rose); line-height: 1; letter-spacing: -.02em; }
.timer-lbl { font-size: .55rem; color: rgba(255,255,255,.35); letter-spacing: .1em; margin-top: 2px; }
.timer-sep { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: rgba(207,165,154,.4); font-weight: 300; margin-bottom: 8px; }

.testimonials-slim { padding: 5rem 4rem; background: var(--bg); }
.test-slim-header { text-align: center; margin-bottom: 3rem; }
.test-slim-header .s-h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.test-slim-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.test-slim-card { background: var(--white); border: 1px solid var(--blush2); border-radius: 18px; padding: 1.8rem; transition: all .3s; box-shadow: 0 2px 20px rgba(110,91,86,.05); position: relative; }
.test-slim-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--rose), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .4s; border-radius: 18px 18px 0 0; }
.test-slim-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(110,91,86,.1); }
.test-slim-card:hover::before { transform: scaleX(1); }
.test-slim-stars { color: var(--rose); font-size: .85rem; letter-spacing: 2px; margin-bottom: .8rem; }
.test-slim-quote { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; line-height: 1.7; color: var(--charcoal2); margin-bottom: 1.2rem; }
.test-slim-name { font-size: .76rem; font-weight: 500; color: var(--charcoal); }
.test-slim-name span { font-weight: 300; color: var(--stone); }
.test-slim-badge { display: inline-block; margin-top: .8rem; background: linear-gradient(135deg, rgba(207,165,154,.15), rgba(222,192,158,.2)); border: 1px solid rgba(207,165,154,.3); border-radius: 100px; padding: .22rem .8rem; font-size: .63rem; color: var(--rose-dark); letter-spacing: .06em; font-weight: 500; }

@media(max-width:900px) {
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card-2-featured { transform: none; }
  .testimonials-slim { padding: 4rem 1.8rem; }
  .test-slim-grid { grid-template-columns: 1fr; }
  .pricing-timer { padding: .6rem 1rem; }
  .timer-num { font-size: 1.8rem; }
}
.pricing-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1100px;margin:0 auto}
@media(max-width:900px){.pricing-grid-3{grid-template-columns:1fr;max-width:480px}}