@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  --pink: #F21677;
  --pink-dark: #d01266;
  --black: #111111;
  --white: #FFFFFF;
  --gray: #F7F7F7;
  --gray-dark: #e0e0e0;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .heading {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--gray-dark);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--black);
}

.logo span { color: var(--pink); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--pink-dark);
}

.btn--primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,22,119,0.35);
}

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

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

.btn--white {
  background: var(--white);
  color: var(--pink);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn--sm { padding: 10px 20px; font-size: 0.75rem; }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 72px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--pink);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
}

.hero__content {
  position: relative;
  z-index: 1;
  border: 2px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  max-width: 560px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.hero__tag {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 2px solid var(--pink-dark);
}

.hero__brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 16px;
}

.hero__brand .accent { color: var(--pink); }

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--black);
  margin-bottom: 16px;
}

.hero h1 .accent { color: var(--pink); }

.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.hero__goals-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.hero__goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-goal {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  text-decoration: none;
  background: var(--white);
  border: 2px solid rgba(17, 17, 17, 0.15);
  border-radius: 12px;
  transition: all var(--transition);
  min-height: 52px;
}

.hero-goal:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 22, 119, 0.12);
}

.hero-goal--active {
  border-color: var(--pink);
  background: var(--pink-soft);
  color: var(--pink);
}

.hero__text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__image {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.hero__video {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.about__video {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.hero__brush {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 200px;
  height: 40px;
  background: var(--pink);
  opacity: 0.6;
  transform: rotate(-5deg);
  border-radius: 4px;
}

/* Stats bar */
.stats-bar {
  background: var(--black);
  padding: 40px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-bar__item h3 {
  font-size: 2.5rem;
  color: var(--pink);
  margin-bottom: 8px;
}

.stats-bar__item p {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--gray { background: var(--gray); }
.section--dark { background: var(--black); color: var(--white); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  color: var(--pink);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section--dark .section__tag { color: var(--pink); }

.section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section--dark .section__desc { color: rgba(255,255,255,0.7); }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(242,22,119,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--pink);
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.icon--lg { width: 24px; height: 24px; }
.icon--xl { width: 28px; height: 28px; }

.card__icon .icon { width: 24px; height: 24px; }

.nav-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.sidebar__nav a:hover .nav-icon,
.sidebar__nav a.active .nav-icon { opacity: 1; color: var(--pink); }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list .icon {
  margin-top: 2px;
  color: var(--pink);
  flex-shrink: 0;
}

.offer-banner__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--white);
  opacity: 0.9;
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p { color: var(--text-light); font-size: 0.95rem; }

.card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.card--dark h3 { color: var(--white); }
.card--dark p { color: rgba(255,255,255,0.7); }

/* Direction cards */
.direction-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%),
              linear-gradient(135deg, var(--pink), #ff6b9d);
  transition: transform var(--transition);
}

.direction-card:hover { transform: scale(1.02); }

.direction-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.direction-card p { opacity: 0.9; margin-bottom: 20px; }

/* Steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  text-align: center;
  flex: 0 0 140px;
}

.step__num {
  width: 56px;
  height: 56px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}

.step p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
}

.step__arrow {
  color: var(--pink);
  font-size: 1.5rem;
  flex: 0 0 auto;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.price-card--featured {
  border-color: var(--pink);
  transform: scale(1.05);
}

.price-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.price-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--pink);
  margin-bottom: 8px;
}

.price-card__price small {
  font-size: 1.5rem;
  font-family: 'Manrope', sans-serif;
}

.price-card p { color: var(--text-light); font-size: 0.9rem; }

.offer-banner {
  background: linear-gradient(135deg, var(--pink), #ff4d94);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.offer-banner h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

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

.schedule-day {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.schedule-day h3 {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 20px;
}

.schedule-day__times {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.time-slot {
  padding: 12px 24px;
  background: var(--gray);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.time-slot:hover, .time-slot.selected {
  background: var(--pink);
  color: var(--white);
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-dark);
  padding: 24px 0;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-light);
  padding-top: 0;
}

.faq-item.open .faq-item__answer {
  max-height: 200px;
  padding-top: 16px;
}

.faq-item__toggle {
  font-size: 1.5rem;
  color: var(--pink);
  transition: transform var(--transition);
}

.faq-item.open .faq-item__toggle { transform: rotate(45deg); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(242,22,119,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}

.contact-form {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-dark);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pink);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--pink);
}

.footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active { display: flex; }

.modal__content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

/* Cabinet & Admin layouts */
.dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--black);
  color: var(--white);
  padding: 24px;
  position: fixed;
  width: 260px;
  height: 100vh;
  overflow-y: auto;
}

.sidebar__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar__logo span { color: var(--pink); }

.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.sidebar__nav a:hover,
.sidebar__nav a.active {
  background: rgba(242,22,119,0.2);
  color: var(--pink);
}

.main-content {
  margin-left: 260px;
  padding: 32px;
  background: var(--gray);
  min-height: 100vh;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.page-header h1 {
  font-size: 2rem;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat-card__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--pink);
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray);
}

th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  background: var(--gray);
}

tr:hover td { background: rgba(242,22,119,0.03); }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--success { background: #e8f5e9; color: #2e7d32; }
.badge--warning { background: #fff3e0; color: #ef6c00; }
.badge--danger { background: #ffebee; color: #c62828; }
.badge--info { background: rgba(242,22,119,0.1); color: var(--pink); }

.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.panel h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gray-dark);
  padding-bottom: 0;
}

.tab {
  padding: 12px 20px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.alert--success { background: #e8f5e9; color: #2e7d32; }
.alert--error { background: #ffebee; color: #c62828; }
.alert--info { background: rgba(242,22,119,0.1); color: var(--pink); }

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
}

.login-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.login-card h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}

.login-card__subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
}

.login-card__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gray-dark);
}

.login-card__tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.login-card__tab.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.login-card .btn { width: 100%; margin-top: 8px; }

.login-card__links {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}

.login-card__links a { color: var(--pink); font-weight: 600; }

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

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

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image { min-height: 400px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .burger { display: flex; }
  .hero__content {
    margin: 0 20px 24px;
    padding: 32px 24px;
    max-width: none;
  }
  .hero__goals { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); }
  .dashboard { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 100;
  }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .footer__grid { grid-template-columns: 1fr; }
}
