/* ============================================================
   DESIGN SYSTEM — Лариса Голышева Психолог
   Palette: soft rose, cream, dusty pink
   Fonts: Lora (headings) + Raleway (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       #C4637A;
  --rose-light: #E8A0B0;
  --rose-pale:  #F5D5DC;
  --cream:      #FDF5F0;
  --cream-dark: #F7ECE8;
  --text:       #2C2022;
  --text-muted: #7A5C62;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(196,99,122,.12);
  --shadow-sm:  0 2px 12px rgba(196,99,122,.08);
  --radius:     16px;
  --radius-sm:  10px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1,h2,h3,h4 { font-family: 'Lora', serif; line-height: 1.25; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.accent { color: var(--rose); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 50px; font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer;
  text-decoration: none; transition: all var(--transition); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: #b0566c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,99,122,.35); }
.btn-outline { background: transparent; color: var(--rose); border-color: var(--rose); }
.btn-outline:hover { background: var(--rose-pale); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* SECTION COMMON */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-title { font-size: clamp(24px, 3vw, 32px); text-align: center; margin-bottom: 48px; color: var(--text); }
.section-title-left { font-size: clamp(22px, 2.5vw, 28px); margin-bottom: 28px; color: var(--text); }

/* ============================================================ NAVBAR */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,99,122,.1);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding-top: 16px; padding-bottom: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Lora', serif; font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.2; }
.logo-sub { font-size: 11px; color: var(--text-muted); }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--rose); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--rose); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; flex-direction: column; gap: 16px; padding: 20px 24px; border-top: 1px solid var(--rose-pale); background: var(--white); }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 16px; }

/* ============================================================ HERO */
.hero { padding: 72px 0 80px; background: var(--cream); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
.hero-title { font-size: clamp(36px, 5vw, 60px); margin-bottom: 20px; color: var(--text); }
.hero-desc { font-size: 17px; color: var(--text-muted); max-width: 440px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--rose-pale);
  padding: 8px 16px; border-radius: 50px; font-size: 13px;
  color: var(--text-muted); font-weight: 500;
}
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-blob {
  position: absolute; width: 420px; height: 420px; border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--rose-pale) 0%, #f5e8f0 100%);
  animation: blobMove 8s ease-in-out infinite; z-index: 0;
}
@keyframes blobMove {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  50% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}
.hero-photo-wrap { position: relative; z-index: 1; width: 340px; height: 420px; border-radius: var(--radius); overflow: hidden; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: var(--radius); display: block; }
.hero-photo-placeholder {
  width: 100%; height: 100%; background: rgba(255,255,255,.7);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; border: 2px dashed var(--rose-pale);
}
.flower { position: absolute; font-size: 48px; z-index: 2; animation: float 4s ease-in-out infinite; }
.flower-1 { top: -20px; right: -10px; animation-delay: 0s; }
.flower-2 { bottom: 20px; left: -20px; animation-delay: 2s; font-size: 36px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================ ISSUE CARDS */
.cards-5 { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.issue-card {
  flex: 0 1 180px; background: var(--white);
  border: 1px solid var(--rose-pale); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  transition: all var(--transition); cursor: default;
  box-shadow: var(--shadow-sm);
}
.issue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rose-light); }
.issue-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--rose-pale); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; color: var(--rose);
}
.issue-icon svg { width: 26px; height: 26px; }
.issue-card p { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ============================================================ STEPS */
.steps { display: flex; align-items: flex-start; gap: 8px; justify-content: center; flex-wrap: wrap; }
.step { text-align: center; max-width: 200px; flex: 0 1 200px; }
.step-num { font-family: 'Lora', serif; font-size: 36px; color: var(--rose-pale); font-weight: 700; margin-bottom: 12px; }
.step h3 { font-size: 18px; color: var(--rose); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.step-arrow { font-size: 28px; color: var(--rose-light); margin-top: 20px; flex-shrink: 0; }

/* ============================================================ DIRECTIONS */
.directions-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.direction-card {
  border-radius: var(--radius-sm); padding: 0 0 100% 0; position: relative;
  cursor: default; transition: transform var(--transition); overflow: hidden;
}
.direction-card:hover { transform: scale(1.03); }
.direction-card p {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px; font-size: 13px; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,.7); backdrop-filter: blur(4px);
  text-align: center; line-height: 1.3;
}

/* ============================================================ ISSUES GRID v2 */
.issues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.issue-card-v2 { background: var(--white); border: 1.5px solid var(--rose-pale); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow var(--transition), transform var(--transition); }
.issue-card-v2:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.issue-card-v2 .issue-icon { width: 48px; height: 48px; background: var(--rose-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.issue-card-v2 .issue-icon svg { width: 22px; height: 22px; color: var(--rose); }
.issue-card-v2 h3 { font-family: 'Lora', serif; font-size: 16px; color: var(--text); }
.issue-card-v2 p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================ DIRECTIONS v2 */
.directions-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dir-card { background: var(--dc-bg, var(--cream)); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: box-shadow var(--transition), transform var(--transition); }
.dir-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.dir-card-icon { width: 80px; height: 80px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dir-card h3 { font-family: 'Lora', serif; font-size: 17px; color: var(--text); }
.dir-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.dir-cta { background: none; border: 1.5px solid var(--dc-accent, #C4637A); color: var(--dc-accent, #C4637A); border-radius: 50px; padding: 8px 18px; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all var(--transition); align-self: flex-start; margin-top: 4px; }
.dir-cta:hover { background: var(--dc-accent, #C4637A); color: #fff; }

/* ============================================================ ABOUT FULL */
.about-full { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.about-photo-col { display: flex; flex-direction: column; gap: 24px; }
.about-photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-photo { width: 100%; height: 460px; object-fit: cover; object-position: center top; display: block; }
.about-quick-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.quick-fact { background: var(--white); border: 1px solid var(--rose-pale); border-radius: var(--radius-sm); padding: 16px 12px; text-align: center; }
.quick-fact-num { display: block; font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: var(--rose); }
.quick-fact-label { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.3; }

.about-content-col { display: flex; flex-direction: column; gap: 28px; }
.about-lead { font-size: 17px; line-height: 1.7; color: var(--text); }
.about-why { background: var(--white); border-left: 3px solid var(--rose); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; }
.about-why h3 { font-size: 16px; color: var(--rose); margin-bottom: 10px; }
.about-why p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.about-why p:last-child { margin-bottom: 0; }
.about-promise { border-top: 1px solid var(--rose-pale); padding-top: 10px; color: var(--text) !important; }

.about-tabs { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-tab-btns { display: flex; border-bottom: 1px solid var(--rose-pale); }
.about-tab-btn { flex: 1; padding: 14px 16px; background: none; border: none; font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all var(--transition); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.about-tab-btn:hover { color: var(--rose); }
.about-tab-btn.active { color: var(--rose); border-bottom-color: var(--rose); }
.about-tab-content { display: none; padding: 24px; }
.about-tab-content.active { display: block; }

.edu-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.edu-item { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.edu-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--rose-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.diplomas { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--rose-pale); padding-top: 16px; }
.diploma-card { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); background: var(--cream); padding: 10px 14px; border-radius: var(--radius-sm); }

.exp-highlight { display: flex; gap: 20px; align-items: flex-start; background: var(--cream); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 16px; }
.exp-badge { background: var(--rose); color: var(--white); font-family: 'Lora', serif; font-size: 14px; font-weight: 700; padding: 8px 14px; border-radius: 50px; white-space: nowrap; }
.exp-highlight p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.exp-personal { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.exp-personal svg { flex-shrink: 0; margin-top: 2px; }

.pub-highlight { display: flex; gap: 20px; align-items: flex-start; }
.pub-num { font-family: 'Lora', serif; font-size: 48px; font-weight: 700; color: var(--rose); line-height: 1; flex-shrink: 0; }
.pub-highlight strong { font-size: 16px; display: block; margin-bottom: 8px; color: var(--text); }
.pub-highlight p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ABOUT old styles kept for safety */
.about-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-inner { display: flex; gap: 20px; align-items: flex-start; }
.about-photo-wrap { width: 100px; height: 120px; flex-shrink: 0; background: var(--rose-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.about-photo-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.about-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.about-facts { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.about-facts li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text); }

.pricing-cards { display: flex; flex-direction: column; gap: 16px; }
.pricing-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.price-card {
  background: var(--white); border: 1px solid var(--rose-pale);
  border-radius: var(--radius-sm); padding: 20px 24px;
  transition: box-shadow var(--transition);
}
.price-card:hover { box-shadow: var(--shadow); }
.price-card--free { border-color: var(--rose-light); background: #fff8fa; }
.price-card--main { border: 2px solid var(--rose); }
.price-card h4 { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; font-family: 'Raleway', sans-serif; font-weight: 600; }
.price-heart { font-size: 24px; color: var(--rose); margin-bottom: 4px; }
.price-amount { font-family: 'Lora', serif; font-size: 26px; font-weight: 700; color: var(--rose); margin-bottom: 6px; }
.price-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================ FAQ + REVIEWS */
.faq-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--rose-pale); cursor: pointer; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 15px; font-weight: 500; color: var(--text);
  gap: 12px;
}
.faq-q:hover { color: var(--rose); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--rose); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 16px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.link-more { display: inline-block; margin-top: 20px; color: var(--rose); font-size: 14px; font-weight: 600; text-decoration: none; }
.link-more:hover { text-decoration: underline; }

.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  background: var(--white); border: 1px solid var(--rose-pale);
  border-radius: var(--radius-sm); padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.review-quote { font-size: 36px; color: var(--rose-light); line-height: 1; margin-bottom: 8px; font-family: Georgia, serif; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.review-author { font-size: 13px; font-weight: 600; color: var(--rose); }
.review-dots { display: flex; gap: 8px; margin-top: 16px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose-pale); }
.dot-active { background: var(--rose); }

/* ============================================================ CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #f9e8ec 0%, #f5d5e8 100%); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-left { display: flex; align-items: center; gap: 24px; }
.cta-flower { font-size: 64px; flex-shrink: 0; }
.cta-left h2 { font-size: clamp(22px, 3vw, 32px); color: var(--text); }
.cta-right { text-align: center; flex-shrink: 0; }
.cta-note { margin-top: 10px; font-size: 13px; color: var(--text-muted); }

/* ============================================================ FOOTER */
.footer { background: var(--text); padding: 48px 0 0; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-contact { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.5; }
.footer-item small { display: block; color: rgba(255,255,255,.5); font-size: 12px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: 12px;
  font-weight: 600; transition: all var(--transition);
}
.social-link:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.footer-copy { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; font-size: 13px; color: rgba(255,255,255,.4); }

/* ============================================================ FOOTER NEW */
.footer { background: #1e1014; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo span { font-family: 'Lora', serif; font-size: 16px; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); text-decoration: none; font-size: 11px; font-weight: 700; transition: all var(--transition); cursor: pointer; }
.social-link:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.footer-nav h4 { font-family: 'Lora', serif; font-size: 14px; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-nav a:hover { color: var(--rose-light); }
.footer-contact-col h4 { font-family: 'Lora', serif; font-size: 14px; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.footer-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; }
.footer-item svg { flex-shrink: 0; margin-top: 1px; }
.footer-item small { display: block; color: rgba(255,255,255,.35); font-size: 11px; }
.footer-cta { padding: 12px 24px; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 12px; align-items: center; }
.footer-legal a { color: rgba(255,255,255,.3); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--rose-light); }
.footer-legal span { color: rgba(255,255,255,.2); }

/* ============================================================ MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(30,10,20,.7); backdrop-filter: blur(6px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: 24px; padding: 40px; width: 100%; max-width: 480px; position: relative; max-height: 90vh; overflow-y: auto; transform: translateY(20px) scale(.97); transition: transform .25s ease; box-shadow: 0 24px 80px rgba(196,99,122,.25); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--cream); border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); transition: all var(--transition); }
.modal-close:hover { background: var(--rose-pale); color: var(--rose); }
.modal-header { text-align: center; margin-bottom: 28px; }
.modal-icon { font-size: 40px; margin-bottom: 12px; }
.modal-header h2 { font-size: 24px; color: var(--text); margin-bottom: 8px; }
.modal-header p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group label span { color: var(--rose); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--rose-pale); border-radius: var(--radius-sm); font-family: 'Raleway', sans-serif; font-size: 15px; color: var(--text); background: var(--white); transition: border-color var(--transition); outline: none; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(196,99,122,.1); }
.form-group input.error, .form-group textarea.error { border-color: #e05555; }
.form-error { font-size: 12px; color: #e05555; min-height: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--rose); cursor: pointer; }
.form-check label { font-size: 13px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-check a { color: var(--rose); }
.form-submit { width: 100%; margin-top: 4px; position: relative; }
.form-submit:disabled { opacity: .7; cursor: not-allowed; }
.modal-success { text-align: center; padding: 20px 0; }
.success-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--rose), #e8a0b0); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; margin: 0 auto 20px; font-weight: 700; }
.modal-success h3 { font-size: 22px; color: var(--text); margin-bottom: 10px; }
.modal-success p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.modal-error { background: #fff5f5; border: 1px solid #f5c6c6; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; color: #c0392b; margin-top: 8px; }
.modal-error a { color: var(--rose); font-weight: 600; }


/* ============================================================ RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-inner { gap: 40px; }
  .hero-title { font-size: 38px; }
  .about-full { grid-template-columns: 220px 1fr; gap: 32px; }
  .directions-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-contact-col { grid-column: 1 / -1; }
  .pricing-row { gap: 16px; }
}

/* ============================================================ RESPONSIVE — MOBILE */
@media (max-width: 768px) {

  /* --- BASE --- */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; margin-bottom: 32px; }

  /* --- NAVBAR --- */
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .navbar { padding: 0 16px; }

  /* --- HERO --- */
  .hero { padding: 100px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 32px; line-height: 1.2; }
  .hero-subtitle { font-size: 16px; }
  .hero-desc { font-size: 15px; margin: 0 auto 28px; max-width: 420px; }
  .hero-badges { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .hero-btns { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 320px; }

  /* --- DIRECTIONS --- */
  .directions-grid-v2 { grid-template-columns: 1fr; gap: 14px; }
  .dir-card { padding: 20px; flex-direction: row; flex-wrap: wrap; gap: 12px; align-items: flex-start; }
  .dir-card-icon { width: 56px; height: 56px; flex-shrink: 0; }
  .dir-card-icon svg { width: 28px; height: 28px; }
  .dir-card h3 { font-size: 15px; flex: 1; align-self: center; margin: 0; }
  .dir-card p { width: 100%; font-size: 13px; order: 3; }
  .dir-cta { order: 4; }

  /* --- HOW IT WORKS --- */
  .steps { flex-direction: column; gap: 20px; align-items: flex-start; }
  .step-arrow { display: none; }
  .step { width: 100%; display: flex; gap: 16px; align-items: flex-start; }
  .step-num { font-size: 28px; line-height: 1; flex-shrink: 0; }
  .step h3 { margin-bottom: 4px; }

  /* --- ABOUT --- */
  .about-full { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-col { display: flex; flex-direction: row; gap: 20px; align-items: flex-start; }
  .about-photo-frame { width: 140px; flex-shrink: 0; }
  .about-photo { height: 180px; width: 140px; }
  .about-quick-facts { grid-template-columns: 1fr; gap: 10px; flex: 1; }
  .quick-fact { padding: 12px; }
  .quick-fact-num { font-size: 20px; }
  .about-tabs { flex-wrap: wrap; gap: 8px; }
  .about-tab-btn { font-size: 13px; padding: 8px 14px; }
  .edu-item { flex-direction: column; gap: 8px; }
  .diploma-cards { grid-template-columns: 1fr; }

  /* --- PRICING --- */
  .about-pricing { grid-template-columns: 1fr; gap: 32px; }
  .pricing-row { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
  .price-card { padding: 20px; }
  .price-amount { font-size: 28px; }

  /* --- REVIEWS / FAQ --- */
  .faq-reviews { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { gap: 14px; }
  .review-card { padding: 20px; }
  .faq-list { gap: 10px; }
  .faq-question { font-size: 15px; padding: 16px; }
  .faq-answer { padding: 0 16px 16px; font-size: 14px; }

  /* --- CTA BANNER --- */
  .cta-banner { padding: 40px 0; }
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-left { flex-direction: column; align-items: center; gap: 12px; }
  .cta-right { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .cta-right .btn { width: 100%; max-width: 320px; }
  .cta-inner h2 { font-size: 24px; }

  /* --- FOOTER --- */
  .footer { padding: 40px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-contact-col { grid-column: auto; }
  .footer-contact { flex-direction: column; gap: 16px; }
  .footer-item { font-size: 14px; }
  .footer-social { gap: 12px; }
  .social-link { width: 40px; height: 40px; }
  .footer-nav ul { columns: 2; gap: 8px 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .footer-cta { width: 100%; }

  /* --- MODAL --- */
  .modal-box { margin: 16px; width: calc(100% - 32px); max-height: calc(100dvh - 32px); border-radius: 16px; }
  .modal-header { padding: 20px 20px 0; }
  .modal-body { padding: 16px 20px 20px; }
  .modal-title { font-size: 20px; }
  .modal-subtitle { font-size: 14px; }
  .form-group input, .form-group textarea { font-size: 16px; } /* prevents iOS zoom */
}

/* ============================================================ RESPONSIVE — SMALL PHONES */
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 22px; }
  .about-photo-col { flex-direction: column; }
  .about-photo-frame { width: 100%; }
  .about-photo { width: 100%; height: 240px; }
  .about-quick-facts { grid-template-columns: repeat(3, 1fr); }
  .dir-card { flex-direction: column; }
  .dir-card h3 { flex: none; align-self: flex-start; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .price-amount { font-size: 26px; }
  .steps { gap: 16px; }
  .step { gap: 12px; }
}

/* ============================================================ ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ============================================================ COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--rose-pale);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(196, 99, 122, 0.15);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  opacity: 0;
  max-width: 420px;
}

#cookie-banner.show {
  transform: translateY(-140px);
  opacity: 1;
}

@media (min-width: 768px) {
  #cookie-banner {
    left: auto;
    right: 40px;
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.cookie-link:hover {
  border-color: var(--rose);
}

.cookie-btn {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.cookie-btn:hover {
  background: #b05268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 99, 122, 0.3);
}

@media (max-width: 768px) {
  #cookie-banner.show {
    transform: translateY(-40px);
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

