/* ========== БУДУ МАМА — Premium Selling Design ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #e8a0bf;
  --primary-dark: #d4789f;
  --primary-light: #f5d5e0;
  --primary-lighter: #fdf0f5;
  --accent: #c06090;
  --accent-dark: #a04878;
  --accent-light: #e891b8;
  --text: #2d2d2d;
  --text-light: #555;
  --text-lighter: #888;
  --white: #fff;
  --bg-light: #fefafb;
  --bg-section: #fdf5f8;
  --gold: #f5a623;
  --green: #27ae60;
  --shadow-sm: 0 2px 12px rgba(192,96,144,0.08);
  --shadow-md: 0 8px 30px rgba(192,96,144,0.12);
  --shadow-lg: 0 16px 50px rgba(192,96,144,0.18);
  --shadow-xl: 0 20px 60px rgba(192,96,144,0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.5px; }
h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.3px; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-up { animation: fadeInUp 0.7s ease-out both; }
.animate-fade-in { animation: fadeIn 0.6s ease-out both; }
.animate-scale { animation: scaleIn 0.5s ease-out both; }

/* ========== HEADER ========== */
.site-header, .header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(192,96,144,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  border-bottom: 1px solid rgba(232,160,191,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.logo:hover { transform: scale(1.02); color: var(--accent); }
.logo-icon { font-size: 1.8rem; }
.logo-text { color: var(--accent); }
.logo span { color: var(--text); }

.main-nav, .nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a, .nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.main-nav a:hover, .nav a:hover,
.main-nav a.active, .nav a.active {
  color: var(--accent);
  background: var(--primary-lighter);
}

.main-nav a.active::after, .nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

/* Mobile menu toggle */
.mobile-menu-toggle, .menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-toggle span, .menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-lighter);
  background: var(--bg-light);
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .separator, .breadcrumbs .breadcrumb-sep { margin: 0 8px; color: var(--primary); }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #fdf0f5 0%, #f5d5e0 30%, #fce4ec 60%, #fff5f8 100%);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,160,191,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,96,144,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero .container { position: relative; z-index: 2; }

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .highlight, .hero h1 em {
  color: var(--accent);
  font-style: normal;
  position: relative;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  line-height: 1.8;
}

/* Hero image */
.hero-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.8s ease-out 0.2s both;
}
.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat-item, .hero-stat { text-align: center; }
.stat-number, .hero-stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}
.stat-label, .hero-stat .label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Hero-lite (inner pages) */
.hero-lite {
  background: linear-gradient(135deg, #fdf0f5 0%, #f5d5e0 50%, #fce4ec 100%);
  padding: 60px 0 50px;
  text-align: center;
}
.hero-lite h1 { margin-bottom: 16px; font-size: 2.4rem; }
.hero-lite p, .hero-lite-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Program meta tags */
.program-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.meta-item {
  background: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  background-size: 200% auto;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(192,96,144,0.35);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(192,96,144,0.45);
  color: var(--white);
  background-position: right center;
}

.btn-primary:active { transform: translateY(-1px); }

/* Shimmer effect on primary buttons */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,96,144,0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--accent-dark);
}

.btn-sm { padding: 10px 24px; font-size: 0.88rem; }
.btn-lg { padding: 20px 48px; font-size: 1.1rem; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== SECTIONS ========== */
section { padding: 90px 0; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg-section); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 16px;
  text-align: center;
}
.section-intro { font-size: 1.05rem; color: var(--text-light); max-width: 700px; margin: 0 auto 40px; text-align: center; }

h2 + .section-subtitle, h2 + p.section-subtitle { margin-top: -8px; margin-bottom: 48px; }
h2 + p { margin-bottom: 40px; }

/* Section images */
.section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 32px auto;
  max-width: 100%;
}
.section-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ========== CARDS ========== */
.cards-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.cards-3, .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2, .card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(232,160,191,0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

.card-accent {
  border-left: 4px solid var(--accent);
}

/* ========== PROGRAM BLOCKS ========== */
.program-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.program-block-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232,160,191,0.1);
  position: relative;
  overflow: hidden;
}
.program-block-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.block-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.program-block-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.program-block-card p { font-size: 0.9rem; color: var(--text-light); }

/* Program detail blocks */
.program-block { margin-bottom: 48px; }
.program-block .block-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
  padding: 32px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  text-align: center;
}
.program-block .block-header .block-number {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.program-block .block-header h2 { font-size: 1.8rem; margin-bottom: 8px; }
.program-block .block-header .block-description { color: var(--text-light); font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

.module-card {
  background: var(--white);
  padding: 32px;
  border-left: 4px solid var(--primary);
  margin: 16px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.module-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.module-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}
.module-header h3 { margin: 0; font-size: 1.2rem; }
.module-description { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }

.module-topics { margin: 16px 0; }
.module-topics h4 { font-size: 0.9rem; color: var(--text-light); margin-bottom: 10px; }
.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-tag {
  background: linear-gradient(135deg, var(--primary-lighter), #fce4ec);
  color: var(--text);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}
.topic-tag:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.module-assessment {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.assessment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232,160,191,0.12);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ========== PRICING ========== */
.pricing-section { padding: 90px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(232,160,191,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
  border-color: var(--accent);
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-badge {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.pricing-card-header {
  padding: 32px 28px 20px;
}
.pricing-card-header h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.pricing-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  padding: 0 28px;
  margin: 0;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(232,160,191,0.08);
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.pricing-features .featured-highlight {
  color: var(--accent) !important;
}

.pricing-card-footer {
  padding: 24px 28px 32px;
}
.pricing-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* Pricing card price */
.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  margin: 16px 0;
  line-height: 1;
}
.pricing-card .price small { font-size: 1rem; font-weight: 500; color: var(--text-light); }

/* Important note box */
.important-note { padding: 40px 0; }
.note-box {
  background: linear-gradient(135deg, var(--primary-lighter), #fce4ec);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 5px solid var(--accent);
}
.note-icon { font-size: 2rem; flex-shrink: 0; }
.note-box p { font-size: 0.95rem; line-height: 1.7; }

/* Comparison table */
.comparison-section { padding: 60px 0 90px; }
.comparison-section h2 { text-align: center; margin-bottom: 40px; }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.92rem;
}
.comparison-table th {
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.comparison-table th:first-child { text-align: left; background: var(--accent-dark); }
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table tbody tr { transition: var(--transition); }
.comparison-table tbody tr:nth-child(even) { background: var(--primary-lighter); }
.comparison-table tbody tr:hover { background: var(--primary-light); }
.featured-col { background: rgba(232,160,191,0.08) !important; }
.table-check { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.table-cross { color: var(--text-lighter); }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232,160,191,0.1);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.testimonial-author strong { display: block; color: var(--text); font-size: 1rem; }
.testimonial-author span { color: var(--text-lighter); font-size: 0.85rem; }

/* ========== STEPS ========== */
.steps, .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  margin-top: 40px;
}

.step, .step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step:hover, .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(192,96,144,0.3);
}

.step h3, .step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p, .step-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ========== FAQ ========== */
.faq-section { padding: 90px 0; }
.faq-section h2 { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(232,160,191,0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  transition: var(--transition);
  line-height: 1.4;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.35s ease;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0 24px;
}

/* FAQ OPEN STATE — unified class */
.faq-item.open .faq-answer,
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 24px;
}
.faq-item.open .faq-icon,
.faq-item.active .faq-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item.open,
.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-item.open .faq-question,
.faq-item.active .faq-question {
  color: var(--accent);
}

/* Also handle the ::after style FAQ from old CSS */
.faq-question::after { display: none; }

/* ========== BLOG CARDS ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid rgba(232,160,191,0.08);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

/* Fallback gradient for emoji placeholders */
.blog-card-img:not(:has(img)) {
  background: linear-gradient(135deg, var(--primary-light), #fce4ec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card-body { padding: 28px; }
.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
  background: var(--primary-lighter);
  padding: 4px 12px;
  border-radius: 50px;
}
.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.read-more {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========== ARTICLE PAGE ========== */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
}
.article-content h1 { font-size: 2.2rem; margin-bottom: 16px; }
.article-meta {
  color: var(--text-lighter);
  font-size: 0.9rem;
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.article-content h2 { margin: 36px 0 16px; font-size: 1.6rem; }
.article-content h3 { margin: 28px 0 14px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 18px 0; padding-left: 28px; }
.article-content li { margin-bottom: 10px; }

.article-content blockquote {
  border-left: 5px solid var(--accent);
  padding: 20px 28px;
  margin: 28px 0;
  background: linear-gradient(135deg, var(--primary-lighter), #fff);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.05rem;
}

.article-cta {
  background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 48px 0;
  border: 2px solid var(--primary);
}

/* ========== ABOUT PAGE ========== */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.about-values-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232,160,191,0.1);
}
.about-values-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.values-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.values-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-values-card h3 { margin-bottom: 10px; }
.about-values-card p { color: var(--text-light); font-size: 0.92rem; }

.story-content {
  max-width: 800px;
  margin: 0 auto;
}
.story-content p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Stats grid */
.stats-grid, .program-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232,160,191,0.1);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-card .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Founder block */
.founder-block {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.founder-info h3 { font-size: 1.6rem; margin-bottom: 6px; }
.founder-role { color: var(--accent); font-weight: 600; margin-bottom: 16px; font-size: 1.05rem; }
.founder-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.founder-contacts { margin-top: 20px; }

.team-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* E-E-A-T */
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.eeat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.eeat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.eeat-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.eeat-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }
.eeat-note { text-align: center; color: var(--text-light); font-style: italic; }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(232,160,191,0.1);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.contact-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.contact-card-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.contact-card p { color: var(--text-light); font-size: 0.9rem; }

.cta-center { text-align: center; margin-top: 48px; }

/* ========== CTA BANNER ========== */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 40%, var(--accent-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before, .cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2, .cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 2rem;
  position: relative;
}
.cta-banner p, .cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn-primary, .cta-section .btn-primary {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover, .cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
  color: var(--accent-dark);
}
.cta-banner .btn-outline, .cta-section .btn-outline,
.cta-banner .btn-secondary, .cta-section .btn-secondary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.cta-banner .btn-outline:hover, .cta-section .btn-outline:hover,
.cta-banner .btn-secondary:hover, .cta-section .btn-secondary:hover {
  background: var(--white);
  color: var(--accent);
}
.cta-block { position: relative; }

/* ========== ATTESTATION ========== */
.certification-section { padding: 90px 0; background: var(--bg-section); }
.certification-section h2 { text-align: center; margin-bottom: 16px; }
.certification-section > .container > p { text-align: center; color: var(--text-light); max-width: 700px; margin: 0 auto 48px; }

.attestation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.attestation-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.attestation-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.attestation-step .step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(192,96,144,0.3);
}
.attestation-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.attestation-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.certificate-block {
  background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 2px solid var(--primary);
}
.certificate-icon { font-size: 3.5rem; margin-bottom: 16px; }
.certificate-block h3 { font-size: 1.5rem; margin-bottom: 12px; }
.certificate-block p { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1rem; line-height: 1.7; }

/* Numbers section */
.numbers-section { background: linear-gradient(135deg, var(--accent-light), var(--accent-dark)); color: var(--white); }
.numbers-section h2 { color: var(--white); text-align: center; margin-bottom: 40px; }
.numbers-section .stat-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.numbers-section .stat-number { color: var(--white); }
.numbers-section .stat-label { color: rgba(255,255,255,0.85); }

/* ========== FOOTER ========== */
.site-footer, .footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.footer-col .logo, .footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-logo .logo-text { color: var(--primary); }
.footer-col p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

.site-footer h3, .site-footer h4, .footer h3, .footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--primary); transform: translateX(4px); }

.footer-col a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }

.footer-contacts { list-style: none; }
.footer-contacts li { margin-bottom: 10px; }
.footer-contacts a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-contacts a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons, .floating-contacts {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.35s ease;
  text-decoration: none;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.floating-btn-tg, .floating-telegram, .floating-btn--telegram { background: linear-gradient(135deg, #2aabee, #0088cc); }
.floating-btn-phone, .floating-phone, .floating-btn--phone { background: linear-gradient(135deg, #66bb6a, #43a047); }

/* Pulse animation on telegram button */
.floating-btn-tg::before, .floating-telegram::before, .floating-btn--telegram::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #0088cc;
  animation: pulse 2s ease-in-out infinite;
  opacity: 0.5;
}

/* ========== PROCESS STEPS (legacy) ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 28px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(192,96,144,0.3);
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ========== URGENCY / SOCIAL PROOF ========== */
.urgency-banner {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  margin: 32px auto;
  max-width: 500px;
  background: var(--primary-lighter);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.social-proof-avatars {
  display: flex;
}
.social-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  overflow: hidden;
}
.social-proof-avatar:first-child { margin-left: 0; }
.social-proof-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cards-3, .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .program-stats { grid-template-columns: repeat(2, 1fr); }
  .eeat-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .attestation-steps { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  section, .section { padding: 60px 0; }
  .hero { padding: 60px 0 50px; }
  .hero-lite { padding: 40px 0 32px; }

  .main-nav, .nav { display: none; }
  .main-nav.open, .nav.open, .main-nav.active, .nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    gap: 4px;
    z-index: 100;
    border-bottom: 2px solid var(--primary-light);
  }

  .mobile-menu-toggle, .menu-toggle { display: block; }

  .hero-stats { gap: 24px; }
  .cards-grid, .cards-3, .cards-2, .card-grid, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .steps, .steps-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid, .program-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .attestation-steps { grid-template-columns: 1fr; }
  .eeat-grid { grid-template-columns: 1fr; }
  .founder-block { flex-direction: column; align-items: center; text-align: center; }
  .founder-block .team-photo-placeholder { margin-bottom: 24px; }
  .program-blocks { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero { padding: 40px 0; }
  .steps, .steps-grid, .process-steps { grid-template-columns: 1fr; }
  .program-blocks { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-number, .hero-stat .number { font-size: 2rem; }
  .program-meta { flex-direction: column; align-items: center; }
}
