/* ===== GOLDEN LASHES — Стили ===== */
:root {
  --cream: #FDF8F4;
  --beige: #F5EDE4;
  --blush: #F2DDD5;
  --gold: #C9A96E;
  --gold-light: #D4B97A;
  --dark: #2C2420;
  --text: #4A3F3A;
  --text-light: #8A7E78;
  --white: #FFFFFF;
  --shadow: 0 4px 30px rgba(201, 169, 110, 0.08);
  --shadow-hover: 0 8px 40px rgba(201, 169, 110, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

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

.gold-text { color: var(--gold); }

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.75rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-small:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 2px;
}

.logo span { color: var(--gold); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--blush) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,221,213,0.3) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-img { position: relative; }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--beige), var(--blush));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-light);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--beige);
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
}

.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

.service-card.featured {
  border: 1.5px solid var(--gold);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-time {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--beige);
  border-radius: 50px;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-item:hover { transform: scale(1.02); }

.portfolio-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--beige), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-light);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(44,36,32,0.7));
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
}

/* (old university styles removed — new ones above) */

/* ===== REVIEWS ===== */
.reviews {
  padding: 120px 0;
  text-align: center;
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.review-card:hover { transform: translateY(-4px); }

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.review-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}

.review-role {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: var(--transition);
}

.contact-link:hover {
  background: var(--beige);
  transform: translateX(4px);
}

.contact-link-icon { font-size: 1.2rem; }

.contact-address p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 16px 20px;
  border: 1px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.contact-form select { cursor: pointer; }

.form-note {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .logo { color: var(--beige); font-size: 1.2rem; }

.footer p {
  font-size: 0.75rem;
  color: rgba(245, 237, 228, 0.5);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.75rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

/* ===== TELEGRAM FLOAT ===== */
.tg-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
  transition: var(--transition);
  z-index: 999;
  animation: pulse 3s ease-in-out infinite;
}

.tg-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(201, 169, 110, 0.6); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UNI HERO ===== */
.uni-hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #2C2420 0%, #3D322C 100%);
  overflow: hidden;
}

.uni-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(201,169,110,0.08) 0%, transparent 50%);
}

.uni-hero-content { position: relative; text-align: center; }

.uni-logo-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.uni-hero h2 {
  color: var(--beige);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.uni-hero p {
  color: rgba(245,237,228,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
}

.uni-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.uni-stat { text-align: center; }

.uni-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
}

.uni-stat-percent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.uni-stat-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(245,237,228,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.uni-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,169,110,0.3);
}

/* ===== JOURNEY ===== */
.uni-journey { padding: 100px 0; text-align: center; }

.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
}

.journey-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--blush));
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.journey-dot {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  z-index: 2;
}

.journey-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow);
  flex: 1;
}

.journey-week {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
}

.journey-card h4 { font-size: 1.2rem; margin: 8px 0; }
.journey-card p { font-size: 0.85rem; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* ===== FORMAT ===== */
.uni-format { padding: 100px 0; background: var(--white); text-align: center; }

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  padding: 32px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.format-icon { font-size: 2rem; margin-bottom: 16px; }
.format-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.format-card p { font-size: 0.8rem; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* ===== COURSES TABS ===== */
.uni-courses { padding: 100px 0; text-align: center; }

.enrollment-timer {
  margin-bottom: 40px;
}

.timer-inner {
  background: linear-gradient(135deg, #2C2420, #3D322C);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.timer-text {
  color: var(--beige);
  font-size: 0.85rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}

.timer-pulse {
  width: 8px; height: 8px;
  background: #E85D5D;
  border-radius: 50%;
  animation: timerPulse 1.5s ease-in-out infinite;
}

@keyframes timerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.timer-countdown { display: flex; align-items: center; gap: 8px; }
.timer-block { text-align: center; }
.timer-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); display: block; line-height: 1; }
.timer-label { font-size: 0.6rem; color: rgba(245,237,228,0.5); text-transform: uppercase; letter-spacing: 1px; }
.timer-sep { color: var(--gold); font-size: 1.5rem; font-weight: 300; }

.course-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.course-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 40px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.course-tab:hover { border-color: var(--gold); }

.course-tab.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.02));
  box-shadow: 0 4px 20px rgba(201,169,110,0.15);
}

.tab-emoji { font-size: 1.5rem; }
.tab-name { font-size: 0.8rem; font-weight: 500; color: var(--dark); }
.tab-price { font-size: 0.7rem; color: var(--gold); font-weight: 500; }

/* ===== COURSE PANELS ===== */
.course-panels { position: relative; }
.course-panel { display: none; animation: panelFade 0.5s ease; }
.course-panel.active { display: block; }
@keyframes panelFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.panel-level {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
}

.panel-info h3 { font-size: 2rem; margin: 8px 0 12px; }
.panel-for { font-size: 0.9rem; color: var(--text-light); font-weight: 300; margin-bottom: 28px; }

.panel-result h4 { font-size: 1rem; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; font-weight: 500; }

.result-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.result-icon { font-size: 1.3rem; margin-top: 2px; }
.result-item span { font-size: 0.85rem; font-weight: 500; color: var(--dark); }
.result-item p { font-size: 0.75rem; color: var(--text-light); font-weight: 300; margin: 2px 0 0; }

.panel-price-block {
  padding: 24px;
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
}

.panel-price { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.panel-old-price { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.panel-new-price { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); font-weight: 500; }

.panel-spots {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #C47070;
  font-weight: 500;
  margin-bottom: 16px;
}

.spots-dot {
  width: 8px; height: 8px;
  background: #C47070;
  border-radius: 50%;
  animation: timerPulse 1.5s ease-in-out infinite;
}

.panel-guarantee {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ===== ACCORDION ===== */
.panel-modules h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.module-count {
  font-size: 0.7rem;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 400;
}

.accordion { display: flex; flex-direction: column; gap: 8px; }

.accordion-item {
  border: 1px solid var(--beige);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.open { border-color: var(--gold); }

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.accordion-btn:hover { background: var(--cream); }

.acc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 24px;
}

.acc-title { flex: 1; text-align: left; font-size: 0.8rem; font-weight: 400; color: var(--dark); }

.acc-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: var(--transition);
  font-weight: 300;
}

.accordion-item.open .acc-arrow { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
}

.accordion-item.open .accordion-body {
  max-height: 200px;
  padding: 0 16px 16px;
}

.accordion-body p { font-size: 0.8rem; color: var(--text-light); font-weight: 300; line-height: 1.6; margin-bottom: 12px; }

.acc-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acc-details span {
  font-size: 0.65rem;
  background: rgba(201,169,110,0.08);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== COMPARE TABLE ===== */
.compare-table-wrap {
  margin-top: 64px;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.compare-table th {
  padding: 16px;
  background: var(--dark);
  color: var(--beige);
  font-weight: 400;
  font-size: 0.85rem;
  text-align: center;
}

.compare-table th:first-child { text-align: left; border-radius: 12px 0 0 0; }
.compare-table th:last-child { border-radius: 0 12px 0 0; }

.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--beige);
  text-align: center;
  color: var(--text);
}

.compare-table td:first-child { text-align: left; font-weight: 400; }

.compare-table tbody tr:hover { background: rgba(201,169,110,0.04); }

.compare-price-row td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  border-bottom: none;
}

/* ===== GRADUATES ===== */
.graduates { margin-top: 80px; text-align: center; }

.graduates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.graduate-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.graduate-card:hover { transform: translateY(-4px); }

.graduate-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.graduate-name { display: block; font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.graduate-city { font-size: 0.75rem; color: var(--gold); }

.graduate-story { margin: 16px 0; }

.graduate-before, .graduate-after {
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-weight: 300;
}

.graduate-before { background: rgba(200,100,100,0.06); }
.graduate-before span { color: #C47070; font-weight: 500; }
.graduate-after { background: rgba(100,180,100,0.06); }
.graduate-after span { color: #5DA05D; font-weight: 500; }

.graduate-quote {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.graduate-course {
  font-size: 0.65rem;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== COMMUNITY ===== */
.community { margin-top: 80px; }

.community-inner {
  background: linear-gradient(135deg, #2C2420, #3D322C);
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.community-text .section-tag { color: var(--gold); }
.community-text h3 { color: var(--beige); font-size: 1.8rem; margin-bottom: 16px; }
.community-text > p { color: rgba(245,237,228,0.7); font-size: 0.9rem; font-weight: 300; line-height: 1.7; margin-bottom: 24px; }

.community-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.comm-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--beige);
  font-weight: 300;
}

.community-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comm-bubble {
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px 16px 16px 4px;
  color: var(--beige);
  font-size: 0.8rem;
  font-weight: 300;
  max-width: 85%;
  animation: bubbleFloat 3s ease-in-out infinite;
}

.comm-bubble-2 { align-self: flex-end; border-radius: 16px 16px 4px 16px; animation-delay: 0.5s; }
.comm-bubble-3 { animation-delay: 1s; }
.comm-bubble-4 { align-self: flex-end; border-radius: 16px 16px 4px 16px; animation-delay: 1.5s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ===== FREE COURSE (updated) ===== */
.free-course { margin-top: 64px; }

.free-course-inner {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.free-course-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.free-course-text { flex: 1; }
.free-course h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.free-course p { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 300; margin-bottom: 16px; }

.free-course-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.free-course-includes span {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
}

.free-course .btn { background: var(--white); color: var(--gold); white-space: nowrap; }
.free-course .btn:hover { background: var(--cream); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .reviews-slider, .graduates-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .panel-grid { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; padding: 40px; }
  .timer-inner { flex-direction: column; text-align: center; }
  .course-tabs { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    background: var(--cream); flex-direction: column; justify-content: center; gap: 24px;
    padding: 40px; transition: var(--transition); box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .portfolio-grid, .reviews-slider, .graduates-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .free-course-inner { flex-direction: column; text-align: center; padding: 32px; }
  .community-features { grid-template-columns: 1fr; }
  .uni-hero-stats { flex-direction: column; gap: 20px; }
  .uni-stat-divider { width: 40px; height: 1px; }
  .hero h1 { font-size: 2.2rem; }
  .course-tab { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: column; gap: 24px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .course-tabs { flex-direction: column; }
  .course-tab { flex-direction: row; justify-content: center; gap: 12px; }
}
