/* ===== STRETCHALA — GLOBAL STYLES ===== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #FF47CA;
  --accent: #F64A46;
  --highlight: #C9A0DC;
  --dark: #1a0a2e;
  --dark-2: #2d1854;
  --light: #fdf5ff;
  --white: #ffffff;
  --text: #2c1a4e;
  --text-muted: #6b5683;
  --border: rgba(201, 160, 220, 0.25);
  --shadow: 0 8px 40px rgba(255, 71, 202, 0.15);
  --shadow-sm: 0 4px 20px rgba(255, 71, 202, 0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --gradient: linear-gradient(135deg, #FF47CA 0%, #C9A0DC 50%, #F64A46 100%);
  --gradient-dark: linear-gradient(135deg, #1a0a2e 0%, #2d1854 100%);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

ul {
  list-style: none;
}

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

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

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

.section {
  padding: 100px 0;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}

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

.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(--dark);
  box-shadow: var(--shadow-sm);
}

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

.tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 71, 202, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.header.scrolled {
  background: rgba(253, 245, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(255, 71, 202, 0.1);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
}

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

.burger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
}

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

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}

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

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 71, 202, 0.3) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 220, 0.2) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

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

.hero-content {
  color: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 71, 202, 0.2);
  border: 1px solid rgba(255, 71, 202, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(255, 71, 202, 0.3);
}

.hero-image-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

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

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

.hero-image-badge-text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.hero-image-badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== SECTION: PROMO (Block 1 — image + text + form) ===== */
.promo {
  background: var(--white);
}

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

.promo-image {
  position: relative;
}

.promo-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-image-decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 71, 202, 0.1);
  border: 2px dashed var(--primary);
  z-index: -1;
}

.promo-content .tag { margin-bottom: 16px; }

.promo-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--dark);
}

.promo-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.promo-list-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SUBSCRIPTION FORM ===== */
.form-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
}

.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

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

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus {
  border-color: var(--primary);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255, 71, 202, 0.3);
  border: none;
}

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

/* ===== SLIDER / CAROUSEL (Block 2) ===== */
.slider-section {
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 100px 0;
}

.slider-section .section-title {
  color: var(--white);
}

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

.slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 24px;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

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

.carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform var(--transition);
}

.carousel-card:hover {
  transform: translateY(-8px);
}

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.carousel-card-body {
  padding: 24px;
}

.carousel-card-body h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.carousel-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.carousel-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===== ACCORDION (Block 3) ===== */
.accordion-section {
  background: var(--white);
}

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

.accordion-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.accordion-header h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 71, 202, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.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 cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== CIRCLE ABOUT BLOCK (Block 4) ===== */
.about-section {
  background: var(--light);
}

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

.about-center-image {
  position: relative;
  z-index: 2;
}

.about-center-image img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(255, 71, 202, 0.3);
}

.about-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 71, 202, 0.3);
  z-index: 1;
  animation: spin-slow 30s linear infinite;
}

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

.about-item {
  position: absolute;
  width: 180px;
  text-align: center;
  z-index: 3;
}

.about-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.about-item:nth-child(2) { top: 20%; right: 0; }
.about-item:nth-child(3) { bottom: 20%; right: 0; }
.about-item:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.about-item:nth-child(5) { bottom: 20%; left: 0; }
.about-item:nth-child(6) { top: 20%; left: 0; }

.about-item-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin: 0 auto 10px;
  box-shadow: 0 4px 16px rgba(255, 71, 202, 0.3);
}

.about-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

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

/* Fallback for mobile - grid layout */
.about-grid-fallback {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-grid-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.about-grid-item .about-item-icon {
  margin: 0 auto 12px;
}

.about-grid-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.about-grid-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== TABLE BLOCK (Block 5) ===== */
.table-section {
  background: var(--white);
}

.plans-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 48px;
}

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

.plans-table th {
  background: var(--gradient-dark);
  color: white;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.plans-table th:first-child {
  border-radius: 0;
}

.plans-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

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

.plans-table tr:nth-child(even) td {
  background: rgba(201, 160, 220, 0.05);
}

.plans-table .check {
  color: var(--primary);
  font-size: 1.1rem;
}

.plans-table .cross {
  color: #ccc;
  font-size: 1rem;
}

.plans-table .popular-col {
  background: rgba(255, 71, 202, 0.05);
}

.table-popular-badge {
  background: var(--gradient);
  color: white;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 700;
}

/* ===== PRICE CARDS (Block 6) ===== */
.pricing-section {
  background: var(--light);
}

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

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

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

.price-card.featured {
  background: var(--gradient-dark);
  border-color: var(--primary);
  color: white;
  transform: scale(1.02);
}

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

.price-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

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

.price-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

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

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

.price-amount .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

.price-card.featured .price-amount .currency {
  color: var(--highlight);
}

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

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

.price-amount .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

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

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

.price-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 71, 202, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.price-card.featured .price-feature-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* ===== CALCULATOR (Block 7) ===== */
.calculator-section {
  background: var(--gradient-dark);
  padding: 100px 0;
}

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

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

.calculator-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}

.calculator-form {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.12);
}

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

.calc-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.calc-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  -webkit-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 d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.calc-range-wrapper {
  position: relative;
}

.calc-range {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 71, 202, 0.5);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.calc-value {
  display: inline-block;
  margin-left: 12px;
  background: var(--primary);
  color: white;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.calculator-result {
  text-align: center;
}

.calc-result-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.15);
}

.calc-result-title {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

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

.calc-result-price .rub {
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-result-detail {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.calc-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 71, 202, 0.2);
  border: 1px solid rgba(255, 71, 202, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===== SELLING TEXT BLOCK (Block 8) ===== */
.selling-section {
  background: var(--white);
}

.selling-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.selling-inner .section-title {
  margin-bottom: 40px;
}

.selling-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
}

.selling-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
  text-align: left;
}

.selling-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.selling-bullet-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.selling-bullet-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.selling-bullet-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== INFOGRAPHIC (Block 9) ===== */
.infographic-section {
  background: var(--light);
}

.infographic-title {
  text-align: center;
  margin-bottom: 64px;
}

.infographic-circle-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 60px;
}

.infographic-item {
  text-align: center;
  flex: 1;
}

.infographic-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.infographic-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 71, 202, 0.3);
}

.infographic-item:nth-child(1) .infographic-circle { background: linear-gradient(135deg, #FF47CA, #C9A0DC); }
.infographic-item:nth-child(2) .infographic-circle { background: linear-gradient(135deg, #F64A46, #FF47CA); }
.infographic-item:nth-child(3) .infographic-circle { background: linear-gradient(135deg, #C9A0DC, #F64A46); }
.infographic-item:nth-child(4) .infographic-circle { background: linear-gradient(135deg, #FF47CA, #1a0a2e); }

.infographic-circle-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.infographic-circle-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.infographic-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.infographic-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

.infographic-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.timeline-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 20px;
  font-size: 1.2rem;
  color: var(--primary);
}

.timeline-num {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}

.timeline-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* ===== PHOTOS BLOCK (Block 10) ===== */
.photos-section {
  background: var(--white);
  padding: 100px 0;
}

.photos-section .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.photos-section .section-subtitle {
  text-align: center;
  margin: 0 auto 48px;
}

.photos-line {
  width: 100%;
  height: 2px;
  background: var(--gradient);
  margin: 60px 0;
  border-radius: 2px;
}

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

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

.photo-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

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

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

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

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

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

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

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

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

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

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

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

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

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

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

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

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

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

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

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

.social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-legal a {
  font-size: 0.85rem;
  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;
  background: var(--dark);
  color: white;
  padding: 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

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

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

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

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

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

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

.cookie-btn-necessary {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-necessary:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  text-decoration: underline;
  font-size: 0.85rem;
}

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

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

.legal-page .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 680px;
}

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

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

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

.legal-content ul li {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

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

.thanks-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 24px;
  color: white;
}

.thanks-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: bounce-in 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes bounce-in {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-inner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

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

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

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

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

  .about-inner {
    min-height: 800px;
  }

  .about-item {
    width: 150px;
  }

  .about-ring {
    width: 480px;
    height: 480px;
  }

  .about-item:nth-child(1) { top: -20px; }
  .about-item:nth-child(4) { bottom: -20px; }
}

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

  .nav, .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 320px;
  }

  .hero-image-badge {
    left: 12px;
    bottom: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .promo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accordion-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accordion-image {
    display: none;
  }

  .about-inner {
    flex-direction: column;
    min-height: auto;
  }

  .about-ring, .about-center-image, .about-item {
    display: none;
  }

  .about-grid-fallback {
    display: grid;
  }

  .table-section .section-title {
    text-align: center;
  }

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

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

  .calculator-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .infographic-circle-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .infographic-item {
    flex: 0 0 45%;
  }

  .infographic-timeline {
    flex-direction: column;
    gap: 24px;
  }

  .timeline-step:not(:last-child)::after {
    content: '↓';
    bottom: -20px;
    right: 50%;
    top: auto;
    transform: translateX(50%);
  }

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

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

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

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

  .footer-legal {
    justify-content: center;
  }

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

  .carousel-card {
    flex: 0 0 85%;
  }

  .slider-controls {
    align-self: flex-end;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .infographic-item {
    flex: 0 0 80%;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .form-card {
    padding: 24px;
  }
}

/* ===== SVG PLACEHOLDER IMAGES ===== */
.img-placeholder {
  background: linear-gradient(135deg, #f5d0ee 0%, #e8d5f5 50%, #fad0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 71, 202, 0.5);
  border-radius: var(--radius);
}
