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

:root {
  --primary: #9370D8;
  --accent: #8B008B;
  --highlight: #BA55D3;
  --primary-light: #c4a0f0;
  --primary-dark: #6a45c0;
  --white: #ffffff;
  --light-bg: #f8f4ff;
  --dark-bg: #1a0d2e;
  --dark-card: #2a1a45;
  --text-dark: #1a0d2e;
  --text-muted: #6b5b8a;
  --text-light: #e8d5ff;
  --border: #d4b8f0;
  --gradient-1: linear-gradient(135deg, #9370D8 0%, #BA55D3 50%, #8B008B 100%);
  --gradient-2: linear-gradient(135deg, #f8f4ff 0%, #ede0ff 100%);
  --gradient-hero: linear-gradient(135deg, #1a0d2e 0%, #2d1654 40%, #4a2080 100%);
  --shadow-sm: 0 2px 8px rgba(147, 112, 216, 0.15);
  --shadow-md: 0 8px 24px rgba(147, 112, 216, 0.2);
  --shadow-lg: 0 16px 48px rgba(147, 112, 216, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

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

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  background: rgba(147, 112, 216, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(147, 112, 216, 0.2);
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 8px 20px rgba(147, 112, 216, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(147, 112, 216, 0.55);
}

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

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

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 13, 46, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 13, 46, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--primary-light);
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 16px;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(26, 13, 46, 0.98);
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(147, 112, 216, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(186, 85, 211, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(147, 112, 216, 0.2);
  border: 1px solid rgba(147, 112, 216, 0.4);
  border-radius: 100px;
  padding: 8px 18px;
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-light), 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.15rem;
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  animation: fadeInDown 0.7s ease 0.4s both;
}

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

.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-card-bottom {
  bottom: -24px;
  left: -24px;
}

.hero-card-top {
  top: 24px;
  right: -24px;
}

.hero-card-live {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-live .live-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-card-live .live-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-card-members {
  text-align: center;
}

.hero-card-members .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-card-members .label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(-10px) rotate(-5deg); }
}

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

/* section:nth-child(even) {
  background: var(--light-bg);
} */

/* ===== BLOCK 1: Live Yoga ===== */
.block-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.block-split.reverse {
  direction: rtl;
}

.block-split.reverse > * {
  direction: ltr;
}

.block-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.block-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.block-image:hover img {
  transform: scale(1.04);
}

.block-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 13, 46, 0.6) 100%);
}

.block-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ef4444;
  color: white;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.live-badge .dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.image-stat {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
}

.image-stat .num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.image-stat .label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.block-content { }

.feature-list {
  list-style: none;
  margin: 24px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: rgba(147, 112, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(147, 112, 216, 0.2);
}

.feature-text h4 {
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

/* ===== FORM ===== */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-card-dark {
  background: var(--dark-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-title-dark {
  color: white;
}

.form-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-desc-dark {
  color: rgba(255, 255, 255, 0.6);
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-label-dark {
  color: rgba(255, 255, 255, 0.8);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(147, 112, 216, 0.1);
}

.form-input-dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.form-input-dark::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input-dark:focus {
  border-color: var(--primary);
  background: rgba(147, 112, 216, 0.15);
  box-shadow: 0 0 0 4px rgba(147, 112, 216, 0.2);
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

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

.form-privacy-dark {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== SLIDER ===== */
.slider-section {
  background: var(--dark-bg);
  color: white;
}

.slider-section .section-title {
  color: white;
}

.slider-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 13, 46, 0.85) 100%);
  border-radius: var(--radius-lg);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
}

.slide-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(147, 112, 216, 0.6);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.slide h3 {
  color: white;
  margin-bottom: 8px;
}

.slide p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ===== ACCORDION ===== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(147, 112, 216, 0.04);
}

.accordion-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(147, 112, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.accordion-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(147, 112, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 28px 28px;
  color: var(--text-muted);
  line-height: 1.75;
}

.accordion-content ul {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-content li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion-content li::before {
  content: '✦';
  color: var(--primary);
  font-size: 0.7rem;
}

/* ===== ABOUT / CIRCLE PHOTO ===== */
.about-section {
  background: var(--dark-bg);
  color: white;
}

.about-section .section-title {
  color: white;
}

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

.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo-ring {
  position: relative;
  width: 440px;
  height: 440px;
}

.about-photo-main {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(147, 112, 216, 0.5);
  box-shadow: 0 0 60px rgba(147, 112, 216, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(147, 112, 216, 0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

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

.about-ring-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
}

.about-ring-item .ring-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(147, 112, 216, 0.4);
}

.about-ring-item .ring-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.rr1 { top: -20px; left: 50%; transform: translateX(-50%); }
.rr2 { top: 50%; right: -30px; transform: translateY(-50%); }
.rr3 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.rr4 { top: 50%; left: -30px; transform: translateY(-50%); }

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
}

.about-highlight .num {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-highlight .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--gradient-1);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-table th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.compare-table th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.compare-table tbody tr:hover {
  background: rgba(147, 112, 216, 0.04);
}

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

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

.compare-table .cross {
  color: #ef4444;
  font-size: 1.1rem;
}

.compare-table .highlight-row {
  background: rgba(147, 112, 216, 0.07);
  font-weight: 600;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  background: white;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}

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

.pricing-popular {
  background: var(--gradient-1);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-header {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-features {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.pricing-feat .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-feat.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-feat.disabled .icon {
  background: rgba(107, 91, 138, 0.1);
  color: var(--text-muted);
}

.pricing-footer {
  padding: 0 28px 28px;
}

/* ===== CALCULATOR ===== */
.calculator-section {
  background: var(--gradient-hero);
}

.calculator-section .section-title {
  color: white;
}

.calculator-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.calc-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-value {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 800;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  outline: none;
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: var(--gradient-1);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(147, 112, 216, 0.5);
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(147, 112, 216, 0.7);
}

.calc-type-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.calc-type-btn {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.calc-type-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(147, 112, 216, 0.4);
}

.calc-type-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.calc-result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-result-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-result-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.calc-result-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.calc-result-currency {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.calc-result-period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.calc-result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.calc-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.calc-breakdown-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.calc-breakdown-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

/* ===== SELL TEXT ===== */
.sell-section {
  background: var(--light-bg);
}

.sell-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sell-text h2 {
  margin-bottom: 32px;
}

.sell-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.sell-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sell-point-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}

.sell-point-content h4 {
  color: var(--text-dark);
  margin-bottom: 6px;
}

.sell-point-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.sell-big-quote {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: sticky;
  top: 96px;
}

.sell-quote-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 28px;
}

.sell-quote-text span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sell-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sell-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.sell-benefit .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

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

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

.info-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(147, 112, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid rgba(147, 112, 216, 0.2);
}

.info-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.info-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.info-progress {
  height: 6px;
  background: rgba(147, 112, 216, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.info-bar {
  height: 100%;
  background: var(--gradient-1);
  border-radius: 100px;
  transition: width 1.5s ease;
  width: 0;
}

.info-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== PHOTOS GRID (Block with 4 vertical photos) ===== */
.photos-section {
  background: white;
  padding: 96px 0;
}

.photos-divider {
  height: 2px;
  background: var(--gradient-1);
  border-radius: 100px;
  margin: 48px 0;
}

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

.photo-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

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

.photo-img-wrap:hover img {
  transform: scale(1.06);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 13, 46, 0.7) 100%);
  opacity: 0;
  transition: var(--transition);
}

.photo-img-wrap:hover .photo-overlay {
  opacity: 1;
}

.photo-caption h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.photo-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--light-bg);
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-section {
  background: var(--gradient-1);
  padding: 96px 0;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 13, 46, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-text h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}

.cookie-btn-accept {
  background: var(--gradient-1);
  color: white;
}

.cookie-btn-minimal {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

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

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 96px 0;
  padding-top: 140px;
  min-height: 100vh;
}

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

.legal-content h1 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin: 40px 0 16px;
}

.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-inner {
  max-width: 600px;
  padding: 48px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 3px solid rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 32px;
  animation: fadeInDown 0.6s ease;
}

.thanks-inner h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.thanks-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-card-top { display: none; }

  .block-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .block-split.reverse { direction: ltr; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-wrap { display: none; }

  .sell-inner {
    grid-template-columns: 1fr;
  }

  .sell-big-quote { position: static; }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

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

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

  .nav { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.2rem; }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-inner {
    flex-direction: column;
    gap: 20px;
  }

  .calc-type-buttons {
    grid-template-columns: 1fr;
  }

  .hero-card-bottom { display: none; }

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

  .table-wrap {
    font-size: 0.82rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
  }
}
