/* ============================================================
   #PF_R · Аль-Куат Кумагамбетов
   Design inspired by Flow Unlock (Tilda).
   Warm milky background, gold-honey accents, bold sans, pill CTAs.
   ============================================================ */

:root {
  --bg:            #fff6eb;   /* тёплый молочный */
  --bg-2:          #fbedd9;   /* чуть глубже — soft sections */
  --card:          #ffffff;
  --ink:           #000000;
  --ink-2:         #2a2a2a;
  --muted:         #868686;
  --line:          #ece2d1;
  --line-2:        #e1e1e1;
  --gold:          #c6a46a;
  --gold-2:        #edc683;
  --gold-soft:     #f8e9c9;
  --orange:        #db933b;
  --wa:            #27d061;
  --wa-dark:       #1eb956;
  --tg:            #1d98dc;
  --radius-pill:   100px;
  --radius:        14px;
  --radius-sm:     10px;
  --radius-lg:     22px;
  --shadow-sm:     0 1px 2px rgba(0,0,0,.03), 0 2px 6px rgba(0,0,0,.03);
  --shadow:        0 4px 16px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.03);
  --shadow-lg:     0 20px 50px rgba(0,0,0,.08), 0 6px 16px rgba(0,0,0,.04);
  --ease:          cubic-bezier(.2, .7, .2, 1);
  --font:          "Manrope", -apple-system, "Segoe UI", Arial, sans-serif;
  --grad-gold:     linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--ink); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.h2 {
  font-size: clamp(34px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}
.h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.lede {
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 0 24px;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   Buttons — pill, gold gradient primary
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--grad-gold);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(198, 164, 106, .28);
}
.btn--primary:hover { filter: brightness(1.03); box-shadow: 0 8px 22px rgba(198, 164, 106, .38); }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: #1a1a1a; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }
.btn__icon { flex-shrink: 0; display: block; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 246, 235, .85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.header.scrolled { border-bottom-color: var(--line); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--grad-gold);
  color: var(--ink);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
}
.brand__mark--big { width: 52px; height: 52px; font-size: 18px; border-radius: 12px; }
.brand__name { font-size: 15px; font-weight: 700; }
.nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}
.nav__item {
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #B9B2A6;
  line-height: 1;
  transition: color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.nav__item:hover { color: #1a1a1a; }
.nav__item.is-active {
  color: #1a1a1a;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.header__cta { display: inline-flex; }

/* Scroll offset for sticky header */
#glavnaya, #price, #otzyvy, #contacts { scroll-margin-top: 92px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 72px 0 104px; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 72px;
  align-items: center;
}
.hero__title {
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero__title--accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lede {
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.hero__meta {
  display: flex;
  gap: 32px;
  margin: 0 0 40px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; padding-right: 0; }
.stat__num {
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat__lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
}
.hero__photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -18px;
  background: var(--card);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-gold);
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 100px 0; }
.section--soft { background: var(--bg-2); }
.section__head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section__head .h2 { margin-bottom: 16px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* About */
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__badges {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: rgba(255,255,255,.95);
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

/* Method */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.method-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.method-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--grad-gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 22px;
}
.method-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.method-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--card);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.callout__mark {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-gold);
  color: var(--ink);
  border-radius: 8px;
  flex-shrink: 0;
  font-weight: 700;
}
.callout p { color: var(--ink-2); font-size: 16px; }

/* Topics (Запросы) */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.topic {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.topic:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.topic__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.topic__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--grad-gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.topic__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0;
  line-height: 1.2;
}
.topic__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.topic__list li {
  position: relative;
  padding: 10px 0 10px 26px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.5;
}
.topic__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Fit / Not fit */
.fit-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}
.fit-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.fit-card--yes .fit-card__tag {
  background: var(--grad-gold);
  color: var(--ink);
}
.fit-card--no .fit-card__tag {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
}
.fit-card__intro {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.fit-card__intro strong { color: var(--ink); }
.check-list, .cross-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li, .cross-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li:last-child, .cross-list li:last-child { border-bottom: 0; }
.check-list li::before,
.cross-list li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  background: var(--grad-gold);
  color: var(--ink);
}
.cross-list li::before {
  content: "×";
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--line);
}

/* Prices */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prices-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--card);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card--feature {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.price-card--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(237, 198, 131, .18) 0%, transparent 60%);
  pointer-events: none;
}
.price-card--feature > * { position: relative; }
.price-card--feature .price-card__badge {
  background: var(--grad-gold);
  color: var(--ink);
}
.price-card--feature .price-card__meta,
.price-card--feature .price-card__list li {
  color: rgba(255, 255, 255, .7);
}
.price-card--feature .price-card__list li::before {
  background: var(--grad-gold);
}
.price-card__head { margin-bottom: 24px; }
.price-card__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.price-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.price-card__meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.price-card__price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  line-height: 1;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.price-card__list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--ink-2);
}
.price-card__section { margin-bottom: 20px; }
.price-card__section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.price-card--feature .price-card__section-title { color: rgba(255, 255, 255, .55); }
.price-card__note {
  font-size: 13px;
  color: var(--muted);
  margin: -16px 0 24px;
}
.price-card--feature .price-card__note { color: rgba(255, 255, 255, .6); }
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 12px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.prices-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
}

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  display: block;
  transition: transform .3s var(--ease);
}
.video-card:hover { transform: translateY(-4px); }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-2) center / cover no-repeat;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow .3s var(--ease);
}
.video-card:hover .video-card__thumb { box-shadow: var(--shadow); }
.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent 45%);
  pointer-events: none;
}
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-gold);
  color: var(--ink);
  border-radius: 50%;
  font-size: 16px;
  padding-left: 3px;
  z-index: 1;
  transition: transform .2s var(--ease);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.1); }
.video-card__time {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 1;
}
.video-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

/* Certificates */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card { display: block; transition: transform .3s var(--ease); }
.cert-card:hover { transform: translateY(-4px); }
.cert-card__thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease);
}
.cert-card:hover .cert-card__thumb { box-shadow: var(--shadow); }
.cert-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.cert-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card { display: block; transition: transform .3s var(--ease); }
.review-card:hover { transform: translateY(-4px); }
.review-card__thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-2) center / cover no-repeat;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}
.review-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent 40%);
  pointer-events: none;
}
.review-card__meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Schedule */
.schedule__empty {
  text-align: center;
  padding: 64px 32px;
  background: var(--card);
  border-radius: var(--radius-lg);
  max-width: 680px;
  margin: 0 auto;
}
.schedule__empty-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.schedule__empty h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.schedule__empty p { color: var(--ink-2); margin-bottom: 24px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 4px 28px;
  transition: box-shadow .2s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
  background: var(--grad-gold);
}
.faq__body {
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq__note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Disclaimer */
.disclaimer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  background: var(--card);
  border-radius: var(--radius);
}
.disclaimer__mark {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Contacts */
.contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-card--wa {
  background: var(--ink);
  color: #fff;
}
.contact-card--wa .contact-card__lbl { color: rgba(255,255,255,.6); }
.contact-card--wa:hover { background: #1a1a1a; }
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card--wa .contact-card__icon {
  background: #fff;
  padding: 0;
}
.contact-card__icon img { display: block; }
.contact-card__lbl {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-card__val {
  font-size: 15px;
  font-weight: 600;
  word-break: break-word;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 40px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand .brand__mark { background: var(--grad-gold); color: var(--ink); }
.footer__name { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.footer__role { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 2px; }
.footer__meta { font-size: 13px; color: rgba(255,255,255,.55); text-align: right; }
.footer__meta p { margin: 0 0 6px; }
.footer__disc { max-width: 380px; margin-left: auto; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px; height: 62px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 208, 97, .30), 0 4px 8px rgba(0, 0, 0, .12);
  z-index: 50;
  transition: transform .25s var(--ease);
  padding: 6px;
}
.wa-float img { width: 100%; height: 100%; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: .4;
  animation: wa-pulse 2.2s var(--ease) infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .5; }
  70%  { transform: scale(1.6);  opacity: 0; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .videos-grid, .reviews-grid, .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-grid, .method-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 48px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .hero { padding: 48px 0 80px; }
  .container { padding: 0 20px; }

  .header__cta { display: none; }
  .brand__name { display: none; }
  .header__inner { gap: 12px; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__photo { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero__badge { left: 12px; bottom: 16px; font-size: 13px; padding: 12px 18px; }
  .hero__meta { gap: 24px; }
  .stat { padding-right: 24px; }
  .stat__num { font-size: 28px; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 500px; margin: 0 auto; width: 100%; }

  .method-grid, .prices-grid, .prices-grid--two, .topics-grid { grid-template-columns: 1fr; }
  .prices-grid--two { max-width: 460px; }
  .topic { padding: 28px 24px; }
  .videos-grid, .reviews-grid, .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contacts { grid-template-columns: 1fr; }

  .fit-card { padding: 28px 24px; }
  .price-card { padding: 26px; }
  .price-card__price { font-size: 34px; }

  .callout, .disclaimer { padding: 24px; flex-direction: column; gap: 12px; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__meta { text-align: left; }
  .footer__disc { margin-left: 0; }

  .section__head { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .header__inner { gap: 8px; }
  .brand__mark { width: 34px; height: 34px; font-size: 13px; }
  .nav {
    flex: 1;
    min-width: 0;
    padding: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav__item { padding: 9px 13px; font-size: 13px; white-space: nowrap; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; width: 100%; }
  .videos-grid, .reviews-grid, .certs-grid { grid-template-columns: 1fr; }
  .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
