/* ========== BASE ========== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Manrope, system-ui, sans-serif; background: #eceae6; color: #2b2b2f; -webkit-font-smoothing: antialiased; }
a { color: #8a5e86; text-decoration: none; }
a:hover { color: #744d70; }
::selection { background: #ece0e8; }

/* ========== PAGE WRAPPER ========== */
.page-wrapper { background: #eceae6; min-height: 100vh; }

/* ========== CONTAINERS ========== */
.container { max-width: 1160px; margin: 0 auto; padding: 56px 32px; }
.container--hero    { padding: 64px 32px 40px; }
.container--statement { padding: 40px 32px; }
.container--faq     { padding: 56px 32px 40px; }
.container--cta     { padding: 40px 32px 64px; }

/* ========== CARDS ========== */
.card { border-radius: 32px; padding: 56px; }
.card--white { background: #fff; }
.card--dark  { background: #2b2b2f; }
.card--pink  { background: #ece0e8; }
.card--blue  { background: #dde6ec; }
.card--statement { padding: 72px 56px; }

/* ========== NAV ========== */
.nav {
  max-width: 1160px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 32px;
  position: absolute; left: -4px; top: -77px;
}
.nav__title  { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; white-space: nowrap; }
.nav__links  { flex: 1; display: flex; gap: 28px; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; color: #55555a; }
.nav__link   { color: #55555a; }
.nav__cta    { background: #8a5e86; color: #fff; font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 999px; white-space: nowrap; }
.nav__cta:hover { background: #744d70; color: #fff; }

/* ========== HERO ========== */
.hero__grid  { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.badge       { display: inline-block; background: #8ea3b6; color: #fff; font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 999px; margin-bottom: 28px; }
.hero__title { font-size: clamp(40px,5vw,60px); line-height: 1.04; font-weight: 800; letter-spacing: -0.025em; margin: 0 0 24px; }
.hero__desc  { font-size: 20px; line-height: 1.5; color: #55555a; margin: 0 0 36px; max-width: 520px; }
.hero__btns  { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__photo { position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; background: #ddd; }
.hero__img   { max-width: 100%; /*height: 455px;*/ display: block; object-fit: cover; /*width: 372px;*/ }

/* ========== ACCENT ========== */
.accent       { color: #8a5e86; }
.accent--light { color: #c3d3de; }

/* ========== BUTTONS ========== */
.btn             { font-weight: 700; font-size: 16px; padding: 16px 30px; border-radius: 999px; }
.btn--primary    { color: #fff; background-color: #8a5e86; }
.btn--primary:hover { background: #744d70; color: #fff; }
.btn--secondary  { background: #fff; color: #2b2b2f; border: 1px solid rgba(43,43,47,0.1); }
.btn--secondary:hover { background: #f6f5f3; color: #2b2b2f; }
.btn--dark-cta   { display: inline-flex; align-items: center; gap: 10px; background: #8a5e86; color: #fff; font-weight: 700; font-size: 16px; padding: 16px 30px; border-radius: 999px; }
.btn--dark-cta:hover { background: #744d70; color: #fff; }
.btn--card-secondary { display: block; text-align: center; background: #eef0ec; color: #2b2b2f; font-weight: 700; font-size: 16px; padding: 15px; border-radius: 999px; }
.btn--card-secondary:hover { background: #e4e6e1; color: #2b2b2f; }
.btn--card-primary { display: block; text-align: center; background: #8a5e86; color: #fff; font-weight: 700; font-size: 16px; padding: 15px; border-radius: 999px; }
.btn--card-primary:hover { background: #744d70; color: #fff; }
.btn--final  { display: inline-flex; background: #8a5e86; color: #fff; font-weight: 700; font-size: 17px; padding: 18px 40px; border-radius: 999px; }
.btn--final:hover { background: #744d70; color: #fff; }

/* ========== SECTION LABELS / TITLES ========== */
.section-label    { font-weight: 700; font-size: 15px; color: #8a5e86; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.section__title   { font-size: clamp(28px,3.4vw,40px); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 40px; max-width: 820px; }
.section__title--mb8 { font-size: clamp(28px,3.4vw,40px); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.section__subtitle { font-size: 18px; color: #55555a; margin: 0 0 40px; }

/* ========== GRIDS ========== */
.grid-3       { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-3--gap20 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2       { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-2--gap18 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.price-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }

/* ========== FOR WHOM ========== */
.for-whom-card       { border-radius: 24px; padding: 32px; }
.for-whom-card--pink { background: #ece0e8; }
.for-whom-card--blue { background: #dde6ec; }
.for-whom-card--sand { background: #e8e3d9; }
.for-whom-card__num  { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.for-whom-card__num--pink { color: #8a5e86; }
.for-whom-card__num--blue { color: #4f7089; }
.for-whom-card__num--sand { color: #9c7f57; }
.card__text { font-size: 17px; line-height: 1.5; color: #2b2b2f; font-weight: 600; }

/* ========== STATEMENT ========== */
.statement__title { font-size: clamp(30px,4vw,48px); line-height: 1.1; font-weight: 800; letter-spacing: -0.025em; margin: 0 0 24px; color: #fff; max-width: 900px; }
.statement__desc  { font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.62); margin: 0 0 40px; max-width: 640px; }

/* ========== BENEFITS ========== */
.benefit-item       { background: #fff; border-radius: 24px; padding: 28px 30px; display: flex; gap: 18px; align-items: flex-start; }
.check-icon         { flex-shrink: 0; width: 36px; height: 36px; border-radius: 11px; background: #8ea3b6; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 18px; }
.benefit-item__text { font-size: 17px; line-height: 1.5; color: #2b2b2f; font-weight: 600; padding-top: 4px; }

/* ========== WHY NEEDED ========== */
.why-grid  { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.why__title { font-size: clamp(26px,3vw,36px); line-height: 1.14; font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.why__p1   { font-size: 19px; line-height: 1.55; color: #2b2b2f; margin: 0 0 20px; }
.why__p2   { font-size: 18px; line-height: 1.55; color: #55555a; margin: 0; }

/* ========== WHY A YEAR ========== */
.year-reasons       { display: flex; flex-direction: column; gap: 36px; }
.year-reason        { display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start; padding-bottom: 36px; border-bottom: 1px solid rgba(43,43,47,0.08); }
.year-reason__num   { font-size: 48px; font-weight: 800; color: #c9b3c5; line-height: 1; }
.year-reason__title { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; }
.year-reason__text  { font-size: 17px; line-height: 1.55; color: #55555a; }
.year-compare       { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.year-compare__card { border-radius: 22px; padding: 32px; }
.year-compare__card--pink { background: #ece0e8; }
.year-compare__card--blue { background: #dde6ec; }
.year-compare__title      { font-weight: 800; font-size: 18px; margin-bottom: 10px; }
.year-compare__text       { font-size: 16px; line-height: 1.5; }
.year-compare__text--pink { color: #6a4f66; }
.year-compare__text--blue { color: #3c5468; }

/* ========== HOW MEETINGS ========== */
.meeting-card        { background: #fff; border-radius: 24px; padding: 34px 30px; border-top: 5px solid #8ea3b6; }
.meeting-card__icon  { width: 44px; height: 44px; border-radius: 13px; background: #e7edf2; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: #4f7089; margin-bottom: 22px; }
.meeting-card__title { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; }
.meeting-card__text  { font-size: 16px; line-height: 1.55; color: #55555a; }
.chat-banner         { margin-top: 24px; background: #2b2b2f; border-radius: 24px; padding: 30px 36px; display: flex; align-items: center; gap: 20px; }
.chat-banner__icon   { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.chat-banner__text   { font-size: 17px; line-height: 1.5; color: rgba(255,255,255,0.9); }

/* ========== WHY IT WORKS ========== */
.works-item        { background: #fff; border-radius: 20px; padding: 28px 30px; }
.works-item__title { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.works-item__text  { font-size: 16px; line-height: 1.5; color: #55555a; }

/* ========== CONDITIONS ========== */
.conditions-grid         { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; align-items: start; }
.conditions-card         { background: #fff; border-radius: 28px; padding: 44px; }
.conditions__title       { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 28px; }
.conditions-list         { display: flex; flex-direction: column; gap: 20px; }
.condition-item          { border-bottom: 1px solid rgba(43,43,47,0.08); padding-bottom: 20px; }
.condition-item__label   { font-size: 14px; color: #8a8a90; font-weight: 600; margin-bottom: 4px; }
.condition-item__val     { font-size: 19px; font-weight: 700; }
.condition-item__val--accent { font-size: 19px; font-weight: 700; color: #8a5e86; }

/* ========== DATES ========== */
.dates-card     { background: #2b2b2f; border-radius: 28px; padding: 44px; }
.dates__title   { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; color: #fff; }
.dates__desc    { font-size: 15px; color: rgba(255,255,255,0.55); margin: 0 0 28px; }
.dates-grid     { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.date-item      { background: rgba(255,255,255,0.08); border-radius: 13px; padding: 14px 12px; text-align: center; }
.date-item__day { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.date-item__mon { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 5px; }

/* ========== PRICING ========== */
.price-card             { background: #fff; border-radius: 28px; padding: 44px; }
.price-card--dark       { background: #2b2b2f; border-radius: 28px; padding: 44px; position: relative; }
.price-badge            { position: absolute; top: -13px; left: 44px; background: #8ea3b6; color: #223440; font-weight: 800; font-size: 13px; padding: 7px 16px; border-radius: 999px; }
.price-card__label      { font-size: 15px; font-weight: 700; color: #8a8a90; margin-bottom: 16px; }
.price-card__label--dark { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.price-card__price-row  { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price-card__price-row--wide { gap: 12px; }
.price-card__amount     { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; }
.price-card__amount--dark { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.price-card__unit       { font-size: 18px; color: #8a8a90; }
.price-card__old        { font-size: 20px; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.price-card__desc       { font-size: 16px; color: #55555a; margin-bottom: 32px; }
.price-card__desc--dark { font-size: 16px; color: rgba(255,255,255,0.62); margin-bottom: 32px; }
.card--included         { background: #fff; border-radius: 28px; padding: 44px; margin-top: 24px; }
.included__title        { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.included-item          { display: flex; gap: 14px; align-items: flex-start; }
.check-icon--sm         { flex-shrink: 0; width: 28px; height: 28px; border-radius: 9px; background: #8ea3b6; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 15px; }
.included-item__text    { font-size: 16px; line-height: 1.5; color: #2b2b2f; font-weight: 600; padding-top: 2px; }

/* ========== FACILITATOR ========== */
.facilitator-grid  { background: #ece0e8; border-radius: 32px; padding: 56px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.facilitator__photo { position: relative; /*aspect-ratio: 1/1;*/ border-radius: 24px; overflow: hidden; background: #d9c6d4; }
.facilitator__img  { max-width: 100%; /*height: 265px;*/ display: block; object-fit: cover; /*width: 379px;*/ }
.facilitator__name { font-size: clamp(26px,3vw,36px); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 28px; }
.creds-list { display: flex; flex-direction: column; gap: 14px; }
.cred-item  { display: flex; gap: 14px; align-items: flex-start; }
.cred-dot   { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: #8a5e86; margin-top: 9px; }
.cred-text  { font-size: 17px; line-height: 1.5; color: #2b2b2f; }

/* ========== FAQ ========== */
.faq-list         { display: flex; flex-direction: column; gap: 14px; }
.faq-item         { background: #fff; border-radius: 22px; overflow: hidden; }
.faq-item__q      { cursor: pointer; padding: 26px 32px; display: flex; align-items: center; gap: 20px; }
.faq-item__q-text { flex: 1; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.faq-item__sign   { flex-shrink: 0; font-size: 24px; font-weight: 700; color: #8a5e86; line-height: 1; }
.faq-item__a      { padding: 0 32px 28px; font-size: 17px; line-height: 1.6; color: #55555a; max-width: 820px; }

/* ========== FINAL CTA ========== */
.final-cta        { background: #2b2b2f; border-radius: 32px; padding: 64px 56px; text-align: center; }
.final-cta__title { font-size: clamp(30px,4vw,46px); line-height: 1.1; font-weight: 800; letter-spacing: -0.025em; margin: 0 0 20px; color: #fff; }
.final-cta__desc  { font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.62); margin: 0 auto 36px; max-width: 560px; }

/* ========== FOOTER ========== */
.footer        { border-top: 1px solid rgba(43,43,47,0.08); }
.footer__inner { max-width: 1160px; margin: 0 auto; padding: 36px 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__title { font-weight: 800; font-size: 18px; }
.footer__meta  { font-size: 14px; color: #8a8a90; }
