/* ═══════════════════════════════════════════════════════════════
   index.css — стили главной страницы gvpitanie.ru
   Только классы, которых нет в base-style.css
   Переменные, reset, header, footer — из base-style.css
═══════════════════════════════════════════════════════════════ */

/* --- HERO (переопределение для главной) --- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0 64px;
  min-height: auto;
  position: relative;
  margin-bottom: 0;
  background: none;
}
.hero h1 strong {
  font-weight: 500;
  color: var(--rose);
  font-style: italic;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-right {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}
.hero-trust-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--mint-bg);
  border: 1px solid var(--mint-soft);
  border-radius: var(--r-md);
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mint-text);
  width: fit-content;
  margin-top: 4px;
}
.hero-trust-tagline svg { flex-shrink: 0; }
.hero-decor-circle {
  position: absolute;
  top: 8%; right: 8%;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--rose-soft);
  opacity: 0.45;
}
.hero-decor-leaf {
  position: absolute;
  top: 20%; left: 10%;
  font-size: 32px;
  opacity: 0.35;
  font-style: normal;
}
.hero-photo-svg {
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 320px;
}
.hero-floating {
  position: absolute;
  left: 20px; bottom: 28px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-md);
  max-width: 240px;
  z-index: 2;
}
.hero-floating-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--mint-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mint);
}
.hero-floating-text { font-size: 13px; line-height: 1.4; }
.hero-floating-text b { display: block; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.hero-floating-text span { color: var(--muted); font-size: 12px; }

/* --- EYEBROW (pill-тег заголовка секции) --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--rose-bg);
  border: 1px solid var(--rose-soft);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: .12em;
  width: fit-content;
}

/* --- ЗАГОЛОВОК СЕКЦИИ --- */
.sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.sec-head .section-label {
  display: inline-flex;
}
.sec-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.2;
  margin: 0 0 14px;
}
.sec-head p {
  font-size: 16px;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- TRUST STRIP --- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin-bottom: 0;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { stroke: currentColor; }
.trust-icon--rose { background: var(--rose-bg); color: var(--rose); }
.trust-icon--mint { background: var(--mint-bg); color: var(--mint); }
.trust-icon--sky  { background: var(--sky-bg); color: var(--sky-deep); }
.trust-icon--peach{ background: var(--peach-bg); color: var(--peach-dk); }
.trust-num {
  font-family: var(--ff-head);
  font-size: 22px; font-weight: 600;
  color: var(--dark); line-height: 1;
}
.trust-label { font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.3; }

/* --- PATHWAYS --- */
.pathways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pathway {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 26px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.pathway:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26,37,53,.1);
  border-color: var(--rose-soft);
}
.pathway--1 { background: linear-gradient(180deg, var(--rose-bg) 0%, #fff 60%); }
.pathway--2 { background: linear-gradient(180deg, var(--mint-bg) 0%, #fff 60%); }
.pathway--3 { background: linear-gradient(180deg, var(--sky-bg) 0%, #fff 60%); }
.pathway-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  width: fit-content; color: #fff;
}
.pathway--1 .pathway-tag { background: var(--rose); }
.pathway--2 .pathway-tag { background: var(--mint); }
.pathway--3 .pathway-tag { background: var(--sky-deep); }
.pathway-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.pathway-icon svg { stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pathway--1 .pathway-icon svg { stroke: var(--rose); }
.pathway--2 .pathway-icon svg { stroke: var(--mint); }
.pathway--3 .pathway-icon svg { stroke: var(--sky-deep); }
.pathway-title {
  font-family: var(--ff-head);
  font-size: 22px; font-weight: 600;
  color: var(--dark); line-height: 1.25; margin: 0;
}
.pathway-text { font-size: 14.5px; color: var(--mid); line-height: 1.6; flex: 1; margin: 0; }
.pathway-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--rose);
  margin-top: 8px;
}
.pathway-link svg {
  stroke: currentColor; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .18s;
}
.pathway:hover .pathway-link svg { transform: translateX(5px); }

/* --- HUB GRID (переопределение для главной — 3 колонки) --- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 22px 20px;
  gap: 14px;
  min-height: 180px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26,37,53,.08);
  border-color: var(--rose-soft);
}
.hub-card-head { display: flex; align-items: flex-start; gap: 14px; }
.hub-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hub-card-icon svg { stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke: currentColor; }
.hub-card--osnovy   .hub-card-icon { background: #FAF5FF; color: #7C3AED; }
.hub-card--posle    .hub-card-icon { background: #FFF1F2; color: #E11D48; }
.hub-card--pervyj   .hub-card-icon { background: var(--sky-bg); color: var(--sky-deep); }
.hub-card--menu     .hub-card-icon { background: var(--rose-bg); color: var(--rose); }
.hub-card--produkty .hub-card-icon { background: var(--mint-bg); color: var(--mint); }
.hub-card--nelzya   .hub-card-icon { background: var(--warn-bg); color: var(--warn-text); }
.hub-card-num {
  font-family: var(--ff-head);
  font-size: 14px; font-weight: 600;
  color: var(--muted); margin-left: auto;
}
.hub-card-title {
  font-family: var(--ff-head);
  font-size: 20px; font-weight: 600;
  color: var(--dark); line-height: 1.3; margin: 0;
}
.hub-card-desc { font-size: 14px; color: var(--mid); line-height: 1.6; flex: 1; margin: 0; }
.hub-card-arrow {
  align-self: flex-end;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rose-bg);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
  flex-shrink: 0;
}
.hub-card-arrow svg { stroke: var(--rose); fill: none; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s; }
.hub-card:hover .hub-card-arrow { background: var(--rose); }
.hub-card:hover .hub-card-arrow svg { stroke: #fff; transform: translateX(2px); }

/* --- ACCESS BLOCK --- */
.access {
  background: linear-gradient(135deg, var(--rose-bg) 0%, #FFEFF3 100%);
  border: 1px solid var(--rose-soft);
  border-radius: 32px;
  padding: 48px 42px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.access-text { display: flex; flex-direction: column; gap: 18px; }
.access h2 { font-size: clamp(22px, 2.8vw, 32px); line-height: 1.2; margin: 0; }
.access-lead { font-size: 15px; color: var(--mid); line-height: 1.7; margin: 0; }
.access-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin: 4px 0; }
.access-li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--dark); line-height: 1.5;
}
.access-li svg { stroke: var(--mint); fill: none; flex-shrink: 0; margin-top: 4px; }
.access-prices { display: flex; flex-direction: column; gap: 12px; }
.access-price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  position: relative;
}
.access-price-card--main { border: 2px solid var(--rose); }
.access-price-card-label {
  font-family: var(--ff-head);
  font-size: 16px; font-weight: 600; color: var(--dark);
}
.access-price-card-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.access-price-card-val {
  font-family: var(--ff-body);
  font-size: 26px; font-weight: 700;
  color: var(--rose); letter-spacing: -0.02em; white-space: nowrap;
}
.access-price-card-val small { font-size: 13px; color: var(--muted); font-weight: 500; }
.access-price-badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--rose); color: #fff;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.access-cta { margin-top: 6px; align-self: stretch; justify-content: center; display: flex; }

/* --- EXPERT BLOCK --- */
.expert {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.expert-photo {
  border-radius: 32px;
  overflow: hidden;
}
.expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}
.expert-content { display: flex; flex-direction: column; gap: 16px; }
.expert-quote-mark {
  font-family: var(--ff-head);
  font-size: 80px; line-height: 0.6;
  font-style: italic; color: var(--rose-soft);
  margin-bottom: -10px;
}
.expert-quote {
  font-family: var(--ff-head);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4; font-weight: 400; font-style: italic;
  color: var(--dark); margin: 0;
}
.expert-name {
  font-family: var(--ff-head);
  font-size: 20px; font-weight: 600; color: var(--dark);
}
.expert-role { font-size: 14px; color: var(--rose); font-weight: 600; margin-top: 3px; }
.expert-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.expert-cred {
  padding: 6px 14px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--mid);
  display: inline-flex; align-items: center; gap: 6px;
}
.expert-cred svg { stroke: var(--rose); fill: none; }
.expert-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--rose); font-weight: 700; font-size: 14px;
  text-decoration: none; margin-top: 8px;
}
.expert-link svg { stroke: currentColor; fill: none; transition: transform .18s; }
.expert-link:hover svg { transform: translateX(4px); }

/* --- OTHER SECTIONS GRID --- */
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.other-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-decoration: none; color: inherit;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 160px;
}
.other-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,37,53,.07);
  border-color: var(--border-2);
}
.other-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.other-icon svg { stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke: currentColor; }
.other-card--zd  .other-icon { background: var(--mint-bg); color: var(--mint); }
.other-card--biz .other-icon { background: var(--peach-bg); color: var(--peach-dk); }
.other-card--web .other-icon { background: var(--sky-bg); color: var(--sky-deep); }
.other-tag {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.other-title {
  font-family: var(--ff-head);
  font-size: 18px; font-weight: 600;
  color: var(--dark); line-height: 1.3; margin: 0;
}
.other-desc { font-size: 13.5px; color: var(--mid); line-height: 1.55; flex: 1; margin: 0; }
.other-arrow {
  align-self: flex-end;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.other-arrow svg { stroke: var(--mid); fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* --- FAQ (переопределение для главной — без аккордеона) --- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  padding: 18px 22px;
  cursor: default;
}
.faq-item:hover { border-color: var(--rose-soft); }
.faq-q {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 700; color: var(--dark);
}
.faq-q-arrow {
  margin-left: auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--rose-bg);
  border: 1px solid var(--rose-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--rose);
}
.faq-q-arrow svg { stroke: currentColor; fill: none; }

/* --- CTA FINAL --- */
.cta-final {
  background: linear-gradient(135deg, var(--rose-bg) 0%, #FFE9EE 100%);
  border-radius: 32px;
  padding: 56px 40px;
  text-align: center;
  margin: 40px 0 60px;
  position: relative; overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: '';
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.55);
  pointer-events: none;
}
.cta-final::before { top: -60px; right: -60px; width: 200px; height: 200px; }
.cta-final::after  { bottom: -50px; left: 5%; width: 180px; height: 180px; }
.cta-final-inner {
  position: relative; z-index: 1;
  max-width: 620px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.cta-final h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 14px; line-height: 1.2;
}
.cta-final p {
  font-size: 16px; color: var(--mid);
  margin: 0 0 26px;
  max-width: 500px; line-height: 1.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 48px;
  }
  .hero-right { aspect-ratio: 4/3; max-width: 540px; margin: 0 auto; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px; }
  .pathways { grid-template-columns: 1fr; gap: 14px; }
  .hub-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .access { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .access-list { grid-template-columns: 1fr; }
  .expert { grid-template-columns: 1fr; gap: 32px; }
  .other-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hub-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .access-price-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .access-price-card-val { font-size: 22px; }
  .cta-final { padding: 40px 24px; }
  .hero-floating { max-width: 200px; }
}
