:root {
  --primary: #6A5ACD;
  --primary-dark: #5245B0;
  --primary-light: #8B7DD8;
  --accent: #F984E5;
  --highlight: #DE4C8A;
  --white: #ffffff;
  --off-white: #faf9ff;
  --light-bg: #f4f2fc;
  --text-dark: #1a1530;
  --text-mid: #3d3560;
  --text-light: #6b6490;
  --border: #e2dff7;
  --gradient-hero: linear-gradient(135deg, #6A5ACD 0%, #9B59B6 50%, #DE4C8A 100%);
  --gradient-soft: linear-gradient(135deg, #f4f2fc 0%, #fce4f7 100%);
  --gradient-card: linear-gradient(160deg, #f9f7ff 0%, #fce8fa 100%);
  --shadow-sm: 0 2px 12px rgba(106,90,205,0.08);
  --shadow-md: 0 6px 24px rgba(106,90,205,0.14);
  --shadow-lg: 0 16px 48px rgba(106,90,205,0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

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

section {
  padding: 80px 0;
}

/* ============================
   TYPOGRAPHY
   ============================ */

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

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

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

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ============================
   BUTTONS
   ============================ */

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

.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: 0 8px 24px rgba(106,90,205,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(106,90,205,0.45);
  color: white;
}

.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 24px rgba(0,0,0,0.12);
  font-weight: 800;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  color: var(--primary);
}

.hero-actions .btn-outline {
  color: white !important;
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.25);
  color: white;
  border-color: white;
}

/* ============================
   HEADER / NAVIGATION
   ============================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(106,90,205,0.1);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

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

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--light-bg);
}

.nav-cta {
  background: var(--gradient-hero);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(106,90,205,0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,90,205,0.4);
  color: #000 !important;
}

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

.burger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  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);
}

/* ============================
   HERO SECTION
   ============================ */

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: #F984E5;
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: #ffffff;
  bottom: -80px;
  left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

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

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

.hero h1 {
  color: white;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: #F984E5;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease both;
}

.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card-1 {
  bottom: 60px;
  left: -40px;
}

.hero-floating-card-2 {
  top: 40px;
  right: -30px;
  animation-delay: -3s;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--light-bg);
}

.hero-card-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.hero-card-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================
   ABOUT / PROMO BLOCK
   ============================ */

.about {
  background: var(--off-white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-hero);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-float strong {
  font-size: 1.8rem;
  display: block;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  margin: 28px 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 500;
}

.about-features li:last-child {
  border-bottom: none;
}

.about-features li span.ico {
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ============================
   SLIDER / CAROUSEL BLOCK
   ============================ */

.sessions {
  background: white;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-top: 16px;
}

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

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

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

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,5,30,0.85) 0%, transparent 100%);
  color: white;
  padding: 48px 40px 36px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.carousel-caption h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.carousel-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  max-width: 500px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 2px solid var(--border);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

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

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

/* ============================
   SELLING TEXT BLOCK
   ============================ */

.selling-text {
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.selling-text::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  color: rgba(106,90,205,0.04);
  top: -60px;
  right: -40px;
  line-height: 1;
}

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

.selling-inner h2 {
  margin-bottom: 32px;
}

.selling-inner p {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.85;
}

.selling-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}

.selling-point {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: transform var(--transition);
}

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

.selling-point-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.selling-point h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

.selling-point p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================
   ACCORDION BLOCK
   ============================ */

.faq {
  background: white;
}

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

.accordion-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: all var(--transition);
}

.accordion-btn:hover {
  color: var(--primary);
  background: var(--off-white);
}

.accordion-btn.active {
  color: var(--primary);
  background: var(--light-bg);
}

.accordion-icon {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: all var(--transition);
}

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

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

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

.accordion-body-inner p {
  margin-bottom: 10px;
}

.accordion-body-inner ul {
  padding-left: 20px;
  margin-top: 8px;
}

.accordion-body-inner ul li {
  margin-bottom: 6px;
}

/* ============================
   CIRCLE / ABOUT STUDIO BLOCK
   ============================ */

.studio {
  background: var(--gradient-soft);
  padding: 100px 0;
}

.studio-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.studio-center-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 12px white, 0 0 0 24px rgba(106,90,205,0.15), var(--shadow-lg);
  z-index: 5;
  position: relative;
}

.studio-text-items {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-text-item {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
  text-align: center;
  border-top: 3px solid var(--accent);
  transition: transform var(--transition);
}

.studio-text-item:hover {
  transform: scale(1.06);
}

.studio-text-item .item-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.studio-text-item h4 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.studio-text-item p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Positioning 6 items around the circle */
.studio-text-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.studio-text-item:nth-child(2) { top: 60px; right: 0; }
.studio-text-item:nth-child(3) { bottom: 60px; right: 0; }
.studio-text-item:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.studio-text-item:nth-child(5) { bottom: 60px; left: 0; }
.studio-text-item:nth-child(6) { top: 60px; left: 0; }

.studio-text-item:nth-child(1):hover { transform: translateX(-50%) scale(1.06); }
.studio-text-item:nth-child(4):hover { transform: translateX(-50%) scale(1.06); }

/* ============================
   TABLE BLOCK
   ============================ */

.plans-table {
  background: white;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}

thead {
  background: var(--gradient-hero);
  color: white;
}

thead th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

tbody tr:hover {
  background: var(--off-white);
}

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

tbody td {
  padding: 16px 24px;
  color: var(--text-mid);
}

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

.table-check {
  color: #2ecc71;
  font-size: 1.1rem;
}

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

.table-highlight td {
  background: var(--light-bg);
  font-weight: 600;
}

/* ============================
   PRICE CARDS BLOCK
   ============================ */

.pricing {
  background: var(--off-white);
}

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

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

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.price-card:hover::before {
  opacity: 1;
}

.price-card.featured {
  background: var(--gradient-hero);
  border-color: transparent;
  color: white;
  transform: scale(1.05);
}

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

.price-card.featured::before {
  display: none;
}

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

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

.price-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

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

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

.price-amount strong {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

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

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

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

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

.price-card.featured .price-duration {
  color: rgba(255,255,255,0.75);
}

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

.price-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
}

.price-card.featured .price-features li {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.price-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(106,90,205,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 20px;
  min-height: 20px;
}

.price-card.featured .price-features li::before {
  background: rgba(255,255,255,0.2);
  color: white;
}

.price-features li:last-child {
  border-bottom: none;
}

/* ============================
   CALCULATOR BLOCK
   ============================ */

.calculator {
  background: white;
}

.calc-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.calc-value {
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}

.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-hero);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(106,90,205,0.4);
  transition: transform var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-plan-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.calc-plan-opt {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  background: white;
}

.calc-plan-opt.selected {
  border-color: var(--primary);
  background: var(--light-bg);
  color: var(--primary);
}

.calc-plan-opt:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.calc-result {
  background: var(--gradient-hero);
  color: white;
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  margin-top: 32px;
}

.calc-result-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

.calc-result-price {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.calc-result-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 8px;
}

/* ============================
   INFOGRAPHIC BLOCK
   ============================ */

.infographic {
  background: var(--gradient-soft);
}

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

.infographic-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.infographic-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.infographic-item {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition);
  border-bottom: 3px solid var(--primary);
}

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

.infographic-item:nth-child(2) { border-color: var(--accent); }
.infographic-item:nth-child(3) { border-color: var(--highlight); }
.infographic-item:nth-child(4) { border-color: #5DADE2; }

.infographic-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.infographic-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.infographic-item:nth-child(2) .infographic-num { color: var(--accent); }
.infographic-item:nth-child(3) .infographic-num { color: var(--highlight); }
.infographic-item:nth-child(4) .infographic-num { color: #5DADE2; }

.infographic-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================
   4 PHOTO BLOCK
   ============================ */

.gallery {
  background: white;
}

.gallery-divider {
  width: 100%;
  height: 3px;
  background: var(--gradient-hero);
  border-radius: 2px;
  margin: 40px 0;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  group: true;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,5,30,0.85) 0%, transparent 60%);
  padding: 24px 20px 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  line-height: 1.4;
}

.gallery-caption {
  margin-top: 16px;
  text-align: center;
}

.gallery-caption h4 {
  color: var(--primary);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================
   TESTIMONIALS
   ============================ */

.testimonials {
  background: var(--off-white);
}

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

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

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

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

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

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  min-width: 48px;
}

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

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

/* ============================
   FORM BLOCK
   ============================ */

.signup {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.signup::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  top: -200px;
  right: -200px;
}

.signup::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
  bottom: -150px;
  left: -100px;
}

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

.signup-content h2 {
  color: white;
  margin-bottom: 20px;
}

.signup-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}

.signup-features {
  list-style: none;
  margin-top: 28px;
}

.signup-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.signup-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 24px;
  min-height: 24px;
}

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-card .form-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

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

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}

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

.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--primary);
  background: white;
}

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

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

/* ============================
   COOKIE BANNER
   ============================ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  z-index: 9999;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
}

.cookie-icon {
  font-size: 1.4rem;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
}

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

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

.cookie-btn-necessary {
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.cookie-btn-necessary:hover {
  background: var(--light-bg);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--primary);
  text-decoration: underline;
  font-size: 0.8rem;
  padding: 8px 12px;
}

/* ============================
   FOOTER
   ============================ */

.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

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

.footer-brand .logo-name {
  color: white;
  font-size: 1.3rem;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.4);
}

.footer-desc {
  font-size: 0.9rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}

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

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

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

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.contact-item span:first-child {
  font-size: 1rem;
  min-width: 20px;
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

.footer-bottom-links a:hover {
  color: white;
}

/* ============================
   LEGAL PAGES
   ============================ */

.legal-hero {
  background: var(--gradient-hero);
  padding: 120px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  color: white;
}

.legal-hero p {
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
}

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

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

.legal-content p, .legal-content li {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

/* ============================
   THANKS PAGE
   ============================ */

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-soft);
  padding: 40px 24px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 32px;
  animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-page h1 {
  margin-bottom: 20px;
}

.thanks-page p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 12px;
}

.thanks-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */

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

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

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

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

/* ============================
   ROBOTS & SITEMAP
   ============================ */

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .studio-inner { min-height: 500px; }
  .studio-text-item { max-width: 160px; padding: 12px 14px; }
}

@media (max-width: 900px) {
  section { padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-floating-card-1, .hero-floating-card-2 { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-float { display: none; }
  .studio-inner { min-height: auto; display: block; }
  .studio-center-img { margin: 0 auto 32px; display: block; width: 200px; height: 200px; }
  .studio-text-items { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
  .studio-text-item { position: static !important; transform: none !important; max-width: none; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .signup-inner { grid-template-columns: 1fr; gap: 40px; }
  .selling-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .nav { display: none; flex-direction: column; position: fixed; inset: 0; top: 73px; background: white; padding: 24px; gap: 4px; z-index: 999; align-items: stretch; }
  .nav.open { display: flex; }
  .nav-link { padding: 14px 20px; border-radius: var(--radius-sm); font-size: 1rem; }
  .burger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .calc-wrap { padding: 28px 20px; }
  .calc-plan-select { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cookie-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
