/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #FF47CA;
  --accent: #F64A46;
  --highlight: #C9A0DC;
  --dark: #1a0a2e;
  --dark-2: #2d1354;
  --light: #fff9fe;
  --gray: #f3eef9;
  --gray-2: #e8dff5;
  --text: #1a0a2e;
  --text-muted: #6b5b8a;
  --white: #ffffff;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(255,71,202,0.12);
  --shadow-lg: 0 20px 60px rgba(255,71,202,0.18);
  --font: 'Montserrat', 'Inter', Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,71,202,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,71,202,0.5);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--gray);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(255,71,202,0.08);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-decoration: none;
}

.header.scrolled .logo {
  color: var(--dark);
}

.logo__icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}

.header.scrolled .nav__link {
  color: var(--text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after {
  width: 100%;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(80vw, 320px);
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  z-index: 1001;
  flex-direction: column;
  padding: 80px 32px 32px;
  transition: right var(--transition);
  gap: 1.5rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-2);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--primary);
}

.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}

.mobile-menu__overlay.open {
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1354 60%, #1a0a2e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

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

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

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,71,202,0.15);
  border: 1px solid rgba(255,71,202,0.3);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero__title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

.hero__image-wrap {
  position: relative;
}

.hero__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition);
}

.hero__image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero__floating {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.hero__floating--1 {
  top: 20px;
  right: -20px;
  animation-delay: -2s;
}

.hero__floating--2 {
  bottom: 30px;
  left: -20px;
  animation-delay: -4s;
}

.hero__floating-icon {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

/* ===== SECTIONS GENERAL ===== */
section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== FEATURES / ABOUT ===== */
.features {
  background: var(--gray);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255,71,202,0.1), rgba(201,160,220,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PROMO BLOCK WITH FORM ===== */
.promo {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF47CA' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.promo__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promo__subtitle {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promo__title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.promo__text {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.promo__list {
  margin-bottom: 2rem;
}

.promo__list li {
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.promo__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.promo__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promo__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-card__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,71,202,0.1);
}

.form-input::placeholder {
  color: rgba(107,91,138,0.5);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b5b8a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(255,71,202,0.35);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,71,202,0.5);
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== SLIDER / CAROUSEL ===== */
.gallery {
  background: var(--white);
  overflow: hidden;
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  gap: 24px;
}

.carousel__slide {
  min-width: calc(33.333% - 16px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  flex-shrink: 0;
}

.carousel__slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition);
}

.carousel__slide:hover img {
  transform: scale(1.05);
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,10,46,0.85));
  padding: 1.5rem 1.2rem 1rem;
  color: white;
}

.carousel__caption h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.carousel__caption p {
  font-size: 0.8rem;
  opacity: 0.85;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-2);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--dark);
}

.carousel__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,71,202,0.05);
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-2);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.carousel__dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== ACCORDION ===== */
.faq {
  background: var(--gray);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-2);
}

.accordion__header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: all var(--transition);
}

.accordion__header:hover {
  color: var(--primary);
}

.accordion__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.accordion__item.open .accordion__icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion__body-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.accordion__item.open .accordion__body {
  max-height: 400px;
}

/* ===== CIRCLE PHOTO BLOCK ===== */
.about-circle {
  background: var(--white);
  overflow: hidden;
}

.about-circle__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.about-circle__photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 10px rgba(255,71,202,0.1), 0 0 0 20px rgba(255,71,202,0.05), 0 20px 60px rgba(255,71,202,0.2);
  flex-shrink: 0;
}

.about-circle__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-circle__orbit {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px dashed rgba(255,71,202,0.2);
  border-radius: 50%;
  animation: spin-slow 40s linear infinite;
}

.about-circle__item {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow);
  max-width: 200px;
  text-align: center;
  transition: all var(--transition);
  z-index: 3;
}

.about-circle__item:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(255,71,202,0.15);
}

.about-circle__item-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.about-circle__item-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.about-circle__item-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-circle__item--top { top: 5%; left: 50%; transform: translateX(-50%); }
.about-circle__item--right { top: 50%; right: 3%; transform: translateY(-50%); }
.about-circle__item--bottom { bottom: 5%; left: 50%; transform: translateX(-50%); }
.about-circle__item--left { top: 50%; left: 3%; transform: translateY(-50%); }
.about-circle__item--top-right { top: 15%; right: 10%; }
.about-circle__item--bottom-left { bottom: 15%; left: 10%; }

/* ===== COMPARISON TABLE ===== */
.plans-table {
  background: var(--gray);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

table.comparison th {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  padding: 1.2rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

table.comparison th.col-feature {
  background: rgba(255,255,255,0.05);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

table.comparison th.col-highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
}

table.comparison th.col-highlight::after {
  content: '★ Хит';
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 700;
}

table.comparison td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-2);
  color: var(--text);
}

table.comparison td:first-child {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
}

table.comparison tr:last-child td {
  border-bottom: none;
}

table.comparison tr:hover td {
  background: rgba(255,71,202,0.02);
}

table.comparison .check {
  color: #22c55e;
  font-size: 1.1rem;
}

table.comparison .cross {
  color: #ccc;
  font-size: 1.1rem;
}

table.comparison td.col-highlight-data {
  background: rgba(255,71,202,0.04);
  font-weight: 600;
  color: var(--dark);
}

/* ===== PRICE CARDS ===== */
.pricing {
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 2px solid var(--gray-2);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-2);
  transition: background var(--transition);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.price-card:hover::before {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  transform: scale(1.03);
}

.price-card.featured::before {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.price-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.price-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.price-card.featured .price-card__name {
  color: rgba(255,255,255,0.7);
}

.price-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-card.featured .price-card__price {
  color: white;
}

.price-card__period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-card.featured .price-card__period {
  color: rgba(255,255,255,0.6);
}

.price-card__features {
  margin-bottom: 1.8rem;
}

.price-card__feature {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-2);
}

.price-card.featured .price-card__feature {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.1);
}

.price-card__feature .checkmark {
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.price-card__feature .dimmed {
  color: #ccc;
}

.price-card.featured .btn-white {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
}

.price-card .btn-outline {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* ===== CALCULATOR ===== */
.calculator {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  position: relative;
  overflow: hidden;
}

.calculator::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,220,0.1) 0%, transparent 70%);
  right: -100px;
  top: -100px;
}

.calculator__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.calculator__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.calculator__desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.calc-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
}

.calc-form__label {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.calc-form__select,
.calc-form__range {
  width: 100%;
  margin-bottom: 1.5rem;
  font-family: var(--font);
}

.calc-form__select {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  appearance: none;
}

.calc-form__select option {
  background: var(--dark);
  color: white;
}

.range-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.calc-form__range {
  flex: 1;
  accent-color: var(--primary);
  height: 4px;
  margin-bottom: 0;
}

.range-value {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  min-width: 30px;
  text-align: right;
}

.calc-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255,71,202,0.2), rgba(246,74,70,0.2));
  border: 1px solid rgba(255,71,202,0.3);
  border-radius: var(--radius-sm);
  text-align: center;
}

.calc-result__label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.calc-result__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.calc-result__note {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.calc-result__saving {
  display: inline-block;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* ===== SELLING TEXT ===== */
.selling {
  background: var(--gray);
}

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

.selling__text h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.selling__text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.9;
  font-size: 0.97rem;
}

.selling__highlight {
  background: linear-gradient(135deg, rgba(255,71,202,0.08), rgba(201,160,220,0.08));
  border-left: 4px solid var(--primary);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.selling__highlight p {
  font-style: italic;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
}

.selling__bullets li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.selling__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== INFOGRAPHIC ===== */
.infographic {
  background: var(--white);
  padding-bottom: 100px;
}

.infographic__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.infographic__card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.infographic__card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.infographic__visual {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255,71,202,0.15), rgba(201,160,220,0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.infographic__content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.infographic__content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.infographic__bar {
  height: 6px;
  background: var(--gray-2);
  border-radius: 3px;
  margin-top: 1rem;
  overflow: hidden;
}

.infographic__bar-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 3px;
  width: 0;
  transition: width 1.2s ease;
}

/* ===== PHOTOS GRID ===== */
.photos-grid {
  background: var(--dark);
  padding: 90px 0;
}

.photos-grid__title {
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}

.photos-grid__desc {
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.photos-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin-bottom: 2.5rem;
}

.photos-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.photo-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card:hover img {
  transform: scale(1.08);
}

.photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26,10,46,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  transition: all var(--transition);
}

.photo-card:hover .photo-card__overlay {
  background: linear-gradient(transparent 20%, rgba(26,10,46,0.95));
}

.photo-card__tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-card__title {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.photo-card__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--gray);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-2);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(255,71,202,0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.testimonial__stars {
  color: #FBBF24;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial__text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== SCHEDULE TABLE ===== */
.schedule {
  background: var(--white);
}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

table.schedule-table th {
  padding: 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

table.schedule-table th:first-child {
  background: var(--dark);
  color: white;
  text-align: left;
}

table.schedule-table th:not(:first-child) {
  background: linear-gradient(135deg, rgba(255,71,202,0.1), rgba(201,160,220,0.1));
  color: var(--dark);
}

table.schedule-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--gray-2);
  text-align: center;
  vertical-align: middle;
}

table.schedule-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  font-size: 0.9rem;
  background: rgba(26,10,46,0.02);
}

table.schedule-table tr:last-child td {
  border-bottom: none;
}

.class-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.class-tag--yoga { background: rgba(255,71,202,0.1); color: var(--primary); }
.class-tag--meditate { background: rgba(201,160,220,0.2); color: #8b5cf6; }
.class-tag--breath { background: rgba(34,197,94,0.1); color: #16a34a; }
.class-tag--power { background: rgba(246,74,70,0.1); color: var(--accent); }
.class-tag--rest { color: var(--text-muted); font-size: 0.75rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}

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

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
}

.footer__socials {
  display: flex;
  gap: 0.8rem;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--primary);
}

.footer__contact-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--primary);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  border-top: 2px solid var(--primary);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.2rem 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font);
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.cookie-btn--accept:hover {
  box-shadow: 0 4px 15px rgba(255,71,202,0.4);
}

.cookie-btn--necessary {
  background: var(--gray);
  color: var(--text);
}

.cookie-btn--necessary:hover {
  background: var(--gray-2);
}

.cookie-btn--settings {
  background: transparent;
  color: var(--text-muted);
  text-decoration: underline;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes float-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 100;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255,71,202,0.4);
}

.scroll-top.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255,71,202,0.5);
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 120px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.legal-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.legal-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  color: var(--dark);
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.thanks-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  max-width: 560px;
  width: 100%;
}

.thanks-card__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 4s ease-in-out infinite;
}

.thanks-card h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thanks-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: linear-gradient(135deg, rgba(255,71,202,0.1), rgba(201,160,220,0.15));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.img-placeholder .ph-icon {
  font-size: 2.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__image { display: none; }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calculator__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .selling__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-circle__inner {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
  }
  .about-circle__item {
    position: static;
    transform: none !important;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .about-circle__item-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
  }
  .about-circle__orbit { display: none; }
  .about-circle__items-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
  }

  .infographic__grid {
    grid-template-columns: 1fr;
  }

  .photos-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel__slide {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .about-circle__items-wrap {
    grid-template-columns: 1fr;
  }

  .photos-grid__grid {
    grid-template-columns: 1fr;
  }

  .carousel__slide {
    min-width: 85%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .table-wrap {
    border-radius: var(--radius-sm);
  }

  .thanks-card {
    padding: 2.5rem 1.5rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__badge { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

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

/* ===== GRADIENT TEXT UTILITY ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
}

/* ===== LOADING SKELETON ===== */
@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== NUMBER COUNTER ===== */
.count-up {
  display: inline-block;
}

/* ===== BACK TO MAIN BTN (legal pages) ===== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: gap var(--transition);
}

.back-btn:hover {
  gap: 0.8rem;
}

/* ===== PAGE HEADER SIMPLE ===== */
.page-header-simple {
  background: var(--dark);
  padding: 80px 0 40px;
}

.page-header-simple .container {
  text-align: center;
}

.page-header-simple h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-header-simple p {
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ===== MOBILE MENU CLOSE ===== */
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}
