/* ===== SWEETLI CSS - PURE VANILLA ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #E63244;
  --accent: #8A2BE2;
  --highlight: #ACE5EE;
  --soft-pink: #FFE4EC;
  --cream: #FFF8F0;
  --warm-white: #FFFBF5;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --border: #e8e0f0;
  --shadow: 0 4px 24px rgba(138, 43, 226, 0.08);
  --shadow-hover: 0 12px 48px rgba(230, 50, 68, 0.15);
  --radius: 20px;
  --radius-sm: 12px;
}

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

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

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

.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--soft-pink), #f0e0ff);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #c0254a);
  color: white;
  box-shadow: 0 6px 24px rgba(230, 50, 68, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(230, 50, 68, 0.45);
}

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

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

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #6a0adc);
  color: white;
  box-shadow: 0 6px 24px rgba(138, 43, 226, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(138, 43, 226, 0.45);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(138, 43, 226, 0.08);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.logo span {
  font-style: italic;
}

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

nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s;
}

nav a:hover {
  background: var(--soft-pink);
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #c0254a) !important;
  color: white !important;
  padding: 10px 24px !important;
  box-shadow: 0 4px 16px rgba(230, 50, 68, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(230, 50, 68, 0.4) !important;
  background: linear-gradient(135deg, #c0254a, var(--accent)) !important;
}

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

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

/* ===== BLOCK 1: PERVIYBLOCK ===== */
.perviyblock {
  min-height: 100vh;
  padding-top: 90px;
  background: linear-gradient(160deg, var(--cream) 0%, #f5e6ff 50%, #ffe0e8 100%);
  position: relative;
  overflow: hidden;
}

.perviyblock::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 50, 68, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.perviyblock::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

/* Upper half: three images with lightning */
.hero-upper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 40px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 360px;
  align-items: end;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: heroImgIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-img-wrap:nth-child(1) {
  height: 280px;
  animation-delay: 0.1s;
  transform-origin: bottom left;
}

.hero-img-wrap:nth-child(2) {
  height: 340px;
  animation-delay: 0.25s;
  transform-origin: bottom;
}

.hero-img-wrap:nth-child(3) {
  height: 260px;
  animation-delay: 0.4s;
  transform-origin: bottom right;
}

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

.hero-img-wrap:hover img {
  transform: scale(1.04);
}

@keyframes heroImgIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Lightning SVG between images */
.lightning-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 5;
}

.lightning-container svg {
  width: 100%;
  height: 100%;
}

.lightning-path {
  fill: none;
  stroke: url(#lightningGrad);
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(230, 50, 68, 0.6));
  animation: lightningPulse 3s ease-in-out infinite;
}

.lightning-path-2 {
  animation-delay: 1.5s;
}

@keyframes lightningPulse {
  0%, 100% { opacity: 0.15; stroke-width: 2; }
  50% { opacity: 0.85; stroke-width: 3; }
}

/* Lower half: three cells */
.hero-lower {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-cell {
  padding: 32px;
  border-radius: var(--radius);
  animation: cellIn 0.8s ease both;
}

.hero-cell:nth-child(1) { animation-delay: 0.5s; }
.hero-cell:nth-child(2) { animation-delay: 0.65s; }
.hero-cell:nth-child(3) { animation-delay: 0.8s; }

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

.hero-cell-1 {
  background: white;
  box-shadow: var(--shadow);
}

.hero-cell-1 .greeting {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero-cell-1 h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-cell-1 h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cell-1 p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-cell-2 {
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-cell-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  min-height: 300px;
  transition: transform 0.6s;
}

.hero-cell-2:hover img {
  transform: scale(1.04);
}

.hero-cell-3 {
  background: linear-gradient(160deg, var(--accent), #6a0adc);
  color: white;
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.35);
}

.hero-cell-3 h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 8px;
}

.hero-cell-3 p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}

.mini-form .form-field {
  margin-bottom: 12px;
}

.mini-form input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}

.mini-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.mini-form input:focus {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
}

.mini-form .btn {
  width: 100%;
  justify-content: center;
  background: white;
  color: var(--accent);
  font-weight: 700;
  margin-top: 4px;
}

.mini-form .btn:hover {
  background: var(--soft-pink);
  transform: translateY(-2px);
}

/* ===== BLOCK 2: SLIDER ===== */
.slider-block {
  background: white;
  overflow: hidden;
}

.slider-block .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.slider-wrapper {
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slide:nth-child(even) {
  direction: rtl;
}

.slide:nth-child(even) > * {
  direction: ltr;
}

.slide-image {
  position: relative;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.slide:hover .slide-image img {
  transform: scale(1.03);
}

.slide-content {
  background: var(--cream);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-number {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: rgba(230, 50, 68, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.slide-content h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.slide-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
  color: var(--text-dark);
}

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

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

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

/* ===== BLOCK 3: ACCORDION ===== */
.accordion-block {
  background: linear-gradient(160deg, var(--cream), #f5e6ff);
}

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

.accordion-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.accordion-left p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.accordion-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}

.accordion-item:hover {
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.accordion-header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--soft-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 1.1rem;
  color: var(--primary);
}

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

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

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

.accordion-body-inner {
  padding: 0 24px 24px;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.95rem;
}

.accordion-body-inner ul {
  list-style: none;
  margin-top: 12px;
}

.accordion-body-inner ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.accordion-body-inner ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.7rem;
  top: 9px;
}

/* ===== BLOCK 4: CIRCULAR ABOUT ===== */
.about-block {
  background: white;
}

.about-circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.about-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 8px 40px rgba(138, 43, 226, 0.2);
  z-index: 5;
}

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

.about-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  margin-left: -240px;
  margin-top: -240px;
  border: 1px dashed rgba(138, 43, 226, 0.2);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.orbit-item {
  position: absolute;
  transform-origin: center;
  animation: counterSpin 30s linear infinite;
}

.orbit-item-inner {
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  width: 140px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.orbit-item-inner:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-50%, -50%) scale(1.05);
}

.orbit-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.orbit-item-inner h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.orbit-item-inner p {
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.4;
}

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

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

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

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--soft-pink), #f0e0ff);
  border-radius: var(--radius);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ===== BLOCK 5: TABLE ===== */
.table-block {
  background: linear-gradient(160deg, #f5e6ff, var(--cream));
}

.table-block .section-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.95rem;
}

.schedule-table thead tr {
  background: linear-gradient(135deg, var(--primary), #c0254a);
  color: white;
}

.schedule-table th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.schedule-table tbody tr:hover {
  background: var(--soft-pink);
}

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

.schedule-table td {
  padding: 18px 24px;
  color: var(--text-mid);
  vertical-align: middle;
}

.schedule-table td:first-child {
  color: var(--text-dark);
  font-weight: 600;
}

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

.level-beginner {
  background: #e8f5e9;
  color: #2e7d32;
}

.level-medium {
  background: #fff3e0;
  color: #e65100;
}

.level-all {
  background: #f3e5f5;
  color: #6a0adc;
}

/* ===== BLOCK 6: PRICE CARDS ===== */
.price-block {
  background: white;
}

.price-block .section-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.price-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: white;
}

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

.price-card.featured {
  background: linear-gradient(160deg, var(--accent), #6a0adc);
  border-color: transparent;
  color: white;
}

.price-card.featured .price-name,
.price-card.featured .price-lessons,
.price-card.featured .price-duration,
.price-card.featured .price-feature {
  color: rgba(255,255,255,0.85);
}

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

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #c0254a);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.price-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 1.2rem;
  font-weight: 400;
}

.price-lessons {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.price-duration {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.price-card.featured .price-divider {
  background: rgba(255,255,255,0.2);
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-feature {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.price-card.featured .price-feature::before {
  color: rgba(255,255,255,0.9);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== BLOCK 7: CALCULATOR ===== */
.calc-block {
  background: linear-gradient(160deg, var(--text-dark), #2a1060);
  color: white;
}

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

.calc-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: white;
  margin-bottom: 20px;
}

.calc-left p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-size: 1.05rem;
}

.calc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.calc-group {
  margin-bottom: 28px;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  outline: none;
  cursor: pointer;
  margin-bottom: 8px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(230, 50, 68, 0.5);
}

.calc-slider-value {
  text-align: right;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.plan-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.plan-radio:hover {
  background: rgba(255,255,255,0.1);
}

.plan-radio input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.plan-radio span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.plan-radio input:checked ~ span {
  color: white;
  font-weight: 600;
}

.plan-radio:has(input:checked) {
  background: rgba(230, 50, 68, 0.15);
  border-color: rgba(230, 50, 68, 0.4);
}

.calc-result {
  background: linear-gradient(135deg, var(--primary), #c0254a);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  margin-top: 8px;
}

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

.calc-result-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.calc-result-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ===== BLOCK 8: SELLING TEXT ===== */
.selling-block {
  background: linear-gradient(135deg, var(--soft-pink) 0%, #f0e0ff 50%, var(--highlight) 100%);
  position: relative;
  overflow: hidden;
}

.selling-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(230, 50, 68, 0.06);
  line-height: 1;
  pointer-events: none;
}

.selling-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.selling-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.15;
}

.selling-content h2 em {
  font-style: italic;
  color: var(--primary);
}

.selling-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
  margin-bottom: 48px;
}

.selling-text-item {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.selling-text-item h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.selling-text-item h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.selling-text-item p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.95rem;
}

.selling-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary);
  padding-left: 32px;
  text-align: left;
}

/* ===== BLOCK 9: INFOGRAPHIC ===== */
.infographic-block {
  background: white;
}

.infographic-block .section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.infographic-item {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.infographic-item:nth-child(1) { background: linear-gradient(135deg, #fff0f3, #ffe4ec); }
.infographic-item:nth-child(2) { background: linear-gradient(135deg, #f3e5f5, #e8d5ff); }
.infographic-item:nth-child(3) { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
.infographic-item:nth-child(4) { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.infographic-item:nth-child(5) { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.infographic-item:nth-child(6) { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }

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

.infographic-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.infographic-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.infographic-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.infographic-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(0,0,0,0.08);
  margin-top: 20px;
  overflow: hidden;
}

.infographic-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 0;
}

.infographic-fill-1 { background: linear-gradient(90deg, var(--primary), #ff6b8a); }
.infographic-fill-2 { background: linear-gradient(90deg, var(--accent), #b388ff); }
.infographic-fill-3 { background: linear-gradient(90deg, #00acc1, var(--highlight)); }
.infographic-fill-4 { background: linear-gradient(90deg, #ff8f00, #ffd54f); }
.infographic-fill-5 { background: linear-gradient(90deg, #2e7d32, #81c784); }
.infographic-fill-6 { background: linear-gradient(90deg, #c62828, #ef9a9a); }

/* ===== BLOCK 10: GALLERY ===== */
.gallery-block {
  background: var(--cream);
}

.gallery-block .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

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

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== BLOCK 11: CARDS + POPUP ===== */
.cards-block {
  background: white;
}

.cards-block .section-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.direction-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  background: white;
}

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

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.direction-card:hover .card-image img {
  transform: scale(1.06);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-body .btn {
  width: 100%;
  justify-content: center;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-pink);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.modal-description {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.modal-form .form-group {
  margin-bottom: 16px;
}

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

.modal-form input,
.modal-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 50, 68, 0.1);
}

.plan-select-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.plan-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.plan-option:hover {
  border-color: var(--primary);
  background: var(--soft-pink);
}

.plan-option input {
  width: auto;
  margin: 0;
  accent-color: var(--primary);
}

.plan-option span {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.modal-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(160deg, var(--cream), #f5e6ff);
  padding: 80px 0;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

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

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

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

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--soft-pink);
  font-family: 'Playfair Display', serif;
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 16px;
}

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

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-pink), #f0e0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

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

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: white;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-mid);
  min-width: 300px;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
  display: block;
}

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

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

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

.footer-col h5 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

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

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--highlight);
  transition: opacity 0.2s;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

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

.footer-legal-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

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

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

/* ===== LEGAL PAGES ===== */
.legal-page {
  min-height: 100vh;
  background: var(--warm-white);
}

.legal-page header {
  position: static;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.legal-page header.scrolled {
  box-shadow: none;
}

.legal-hero {
  background: linear-gradient(135deg, var(--soft-pink), #f0e0ff);
  padding: 80px 0;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.legal-hero p {
  color: var(--text-mid);
}

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

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

.legal-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  color: var(--text-dark);
}

.legal-content p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

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

.legal-content ul li {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 8px;
}

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream), #f5e6ff);
  text-align: center;
  padding: 40px;
}

.thanks-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

.thanks-page h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.thanks-page p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

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

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

  .about-circle-container {
    width: 480px;
    height: 480px;
  }

  .about-orbit {
    width: 380px;
    height: 380px;
    margin-left: -190px;
    margin-top: -190px;
  }
}

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

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    gap: 8px;
  }

  nav.open {
    transform: translateX(0);
  }

  nav a {
    font-size: 1.2rem;
    padding: 16px 32px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .hero-upper {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 16px 0;
  }

  .hero-img-wrap:nth-child(1),
  .hero-img-wrap:nth-child(2),
  .hero-img-wrap:nth-child(3) {
    height: 200px;
  }

  .hero-img-wrap:nth-child(3) { display: none; }

  .hero-lower {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .hero-cell-2 img { min-height: 200px; }

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

  .slide-image img { height: 250px; }
  .slide-content { padding: 32px 24px; }

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

  .about-circle-container {
    width: 340px;
    height: 340px;
  }

  .about-orbit {
    width: 280px;
    height: 280px;
    margin-left: -140px;
    margin-top: -140px;
  }

  .about-center-image {
    width: 160px;
    height: 160px;
  }

  .orbit-item-inner {
    width: 110px;
    padding: 10px 12px;
  }

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

  .price-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

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

  .selling-text-grid { grid-template-columns: 1fr; }

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

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

  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .gallery-item:nth-child(8) { grid-column: span 2; }

  .cards-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

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

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

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

  .modal { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .infographic-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; }
  .slider-nav { flex-wrap: wrap; justify-content: center; }
}
