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

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

:root {
  --orange: #990066;
  --orange-light: #F984E5;
  --orange-dark: #FFCBDB;
  --mint: #CED23A;
  --mint-light: #00FF7F;
  --mint-dark: #0095B6;
  --green: #CDA4DE;
  --green-light: #C154C1;
  --green-dark: #FF1493;
  --white: #ffffff;
  --off-white: #f9faf7;
  --cream: #f1a6f1;
  --light-gray: #f3f3af;
  --gray: #8a8a7f;
  --dark: #2a2a25;
  --dark-soft: #3d3d35;
  --shadow-sm: 0 2px 8px rgba(42, 42, 37, 0.06);
  --shadow-md: 0 4px 20px rgba(42, 42, 37, 0.1);
  --shadow-lg: 0 8px 40px rgba(42, 42, 37, 0.14);
  --shadow-xl: 0 16px 60px rgba(42, 42, 37, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover {
  color: var(--orange-dark);
}

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

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 50px;
  font-weight: 300;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--mint));
  border-radius: 4px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::after {
  background: rgba(255,255,255,0.12);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(243, 98, 35, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(243, 98, 35, 0.45);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(71, 132, 48, 0.3);
}

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

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 250, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(249, 250, 247, 0.96);
  border-bottom-color: var(--light-gray);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--dark-soft);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--orange);
  background: rgba(243, 98, 35, 0.06);
}

.nav-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 36px;
  height: 36px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 7px;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-toggle span:nth-child(1) { top: 10px; }
.mobile-toggle span:nth-child(2) { top: 17px; }
.mobile-toggle span:nth-child(3) { top: 24px; }

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 37, 0.82) 0%,
    rgba(42, 42, 37, 0.55) 50%,
    rgba(71, 132, 48, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 660px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 22px;
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--mint), var(--mint-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
}

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

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

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.hero-stat span {
  font-size: 0.85rem;
  opacity: 0.75;
  font-weight: 400;
}

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

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

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

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

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

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(42,42,37,0.9) 0%, transparent 100%);
  color: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

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

.carousel-caption p {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 500px;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  transition: all var(--transition-fast);
  pointer-events: all;
  box-shadow: var(--shadow-md);
}

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

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ===== CONTENT BLOCKS (alternating) ===== */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-row.reverse .content-img {
  order: 2;
}

.content-row.reverse .content-text {
  order: 1;
}

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

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

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

.content-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.content-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--dark);
}

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

.content-text ul {
  list-style: none;
  margin: 20px 0;
}

.content-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--dark-soft);
}

.content-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.85rem;
}

/* ===== GALLERY SLIDER ===== */
.gallery-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 0;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  min-width: 340px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.gallery-card:hover {
  transform: translateY(-6px);
}

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

.gallery-card-caption {
  padding: 18px 22px;
  background: var(--white);
}

.gallery-card-caption h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

/* ===== ACCORDION ===== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: var(--orange);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  background: var(--orange);
  color: var(--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: 0 28px 24px;
  color: var(--dark-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CIRCLE TEXT BLOCK ===== */
.circle-about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.circle-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-text-wrapper {
  position: absolute;
  width: 560px;
  height: 560px;
  animation: rotateCircle 30s linear infinite;
}

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

.circle-text-item {
  position: absolute;
  width: 180px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--dark-soft);
  line-height: 1.5;
}

.circle-text-item.pos-top {
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}

.circle-text-item.pos-right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}

.circle-text-item.pos-bottom {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}

.circle-text-item.pos-left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}

.orbit-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 2px dashed var(--light-gray);
  border-radius: 50%;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge:nth-child(odd) {
  animation-delay: -1.5s;
}

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

.fb-1 { top: 60px; left: 10%; }
.fb-2 { top: 120px; right: 10%; }
.fb-3 { bottom: 80px; left: 15%; }
.fb-4 { bottom: 120px; right: 12%; }

/* ===== TABLES ===== */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.schedule-table thead {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
}

.schedule-table th {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  letter-spacing: 0.03em;
}

.schedule-table td {
  padding: 16px 22px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark-soft);
}

.schedule-table tbody tr {
  transition: background var(--transition-fast);
}

.schedule-table tbody tr:hover {
  background: rgba(152, 255, 152, 0.08);
}

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

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

.table-badge-beginner {
  background: rgba(152, 255, 152, 0.2);
  color: var(--green);
}

.table-badge-medium {
  background: rgba(243, 98, 35, 0.1);
  color: var(--orange);
}

.table-badge-advanced {
  background: rgba(243, 98, 35, 0.2);
  color: var(--orange-dark);
}

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

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  overflow: hidden;
}

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

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

.price-card:hover::before {
  background: var(--orange);
}

.price-card.popular {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.price-card.popular::before {
  background: linear-gradient(90deg, var(--orange), var(--mint));
  height: 5px;
}

.popular-tag {
  position: absolute;
  top: 8px;
  right: -28px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 22px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.price-card .price {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--orange);
  margin: 16px 0 6px;
}

.price-card .price-period {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}

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

.price-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--dark-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--cream);
}

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

.price-features li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(152, 255, 152, 0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== CALCULATOR ===== */
.calculator-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

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

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.calc-label span {
  font-weight: 600;
  font-size: 0.95rem;
}

.calc-value {
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
}

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

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(243, 98, 35, 0.35);
  transition: all var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(243, 98, 35, 0.5);
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(243, 98, 35, 0.35);
}

.calc-result {
  text-align: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(243,98,35,0.06), rgba(152,255,152,0.1));
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.calc-result .total-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.calc-result .total-price {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--orange);
}

.calc-result .total-note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 6px;
}

/* ===== SELLING TEXT BLOCK ===== */
.selling-block {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.selling-block::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(152, 255, 152, 0.08);
  border-radius: 50%;
}

.selling-block::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(243, 98, 35, 0.08);
  border-radius: 50%;
}

.selling-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.selling-block p {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.92;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.selling-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.selling-col p {
  font-size: 0.95rem;
}

/* ===== BENEFITS DIAGRAM ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
}

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

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 22px;
  position: relative;
}

.benefit-icon.icon-orange {
  background: rgba(243, 98, 35, 0.1);
  color: var(--orange);
}

.benefit-icon.icon-green {
  background: rgba(71, 132, 48, 0.1);
  color: var(--green);
}

.benefit-icon.icon-mint {
  background: rgba(152, 255, 152, 0.2);
  color: var(--green-dark);
}

.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.benefit-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

/* ===== SUBSCRIPTION FORM ===== */
.form-section {
  background: var(--cream);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition-fast);
  background: var(--off-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(243, 98, 35, 0.1);
}

.form-control::placeholder {
  color: var(--gray);
  font-weight: 300;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

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

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

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

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

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

.footer-col ul li a:hover {
  color: var(--mint);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact .icon {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
}

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

.footer-bottom p {
  font-size: 0.82rem;
}

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

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
  color: var(--mint);
}

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

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

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

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

.cookie-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

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

.cookie-settings {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.cookie-settings.visible {
  display: block;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.cookie-option label {
  font-size: 0.88rem;
  font-weight: 500;
}

.cookie-option small {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--light-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-track {
  background: var(--green);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(20px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--dark);
}

.legal-page p {
  margin-bottom: 14px;
  color: var(--dark-soft);
  line-height: 1.8;
}

.legal-page ul {
  margin: 14px 0;
  padding-left: 24px;
}

.legal-page ul li {
  margin-bottom: 8px;
  color: var(--dark-soft);
  line-height: 1.7;
}

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.thanks-card {
  max-width: 520px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(152,255,152,0.3), rgba(71,132,48,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 28px;
  animation: pulseIcon 2s ease-in-out infinite;
}

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

.thanks-card h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-row {
    gap: 40px;
  }

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

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

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

  .circle-text-wrapper {
    display: none;
  }

  .orbit-ring {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    border-top: 1px solid var(--light-gray);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

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

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .content-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-row.reverse .content-img,
  .content-row.reverse .content-text {
    order: unset;
  }

  .carousel-slide img {
    height: 300px;
  }

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

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

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

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

  .selling-block {
    padding: 50px 30px;
  }

  .calculator-card {
    padding: 32px 24px;
  }

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

  .schedule-table {
    display: block;
    overflow-x: auto;
  }

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

  .section-pad {
    padding: 60px 0;
  }

  .gallery-card {
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .header-inner {
    height: 64px;
  }

  .hero {
    padding-top: 64px;
  }

  .nav-menu {
    top: 64px;
  }
}

/* ===== SMOOTH SCROLL OFFSET ===== */
[id] {
  scroll-margin-top: 90px;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-off-white { background: var(--off-white); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
