/* ============================================
   STEPITY — GLOBAL STYLES
   ============================================ */

:root {
  --yellow: #FFDC33;
  --yellow-acc: #FFCF48;
  --yellow-dark: #FFB02E;
  --yellow-light: #FFF5C0;
  --dark: #1A1A2E;
  --dark2: #16213E;
  --mid: #2C2C54;
  --text: #2D2D2D;
  --text-light: #666;
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --card-bg: #FFFFFF;
  --border: #E8E8E8;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --transition: 0.3s 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', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   LAYOUT
   ============================================ */

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

section {
  padding: 80px 0;
}

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

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

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(255,220,51,0.4);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,220,51,0.5);
}

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

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

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

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

.btn-white {
  background: var(--white);
  color: var(--dark);
}

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

/* ============================================
   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(255,220,51,0.2);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--dark);
}

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

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

.nav-menu a {
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

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

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

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

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

.hero {
  padding-top: 100px;
  min-height: 100vh;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,220,51,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,176,46,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,220,51,0.15);
  border: 1px solid rgba(255,220,51,0.3);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: slideInDown 0.6s ease both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: slideInLeft 0.7s ease 0.1s both;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
  animation: slideInLeft 0.7s ease 0.2s both;
}

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

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

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

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  animation: slideInRight 0.8s ease 0.2s both;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  bottom: -20px;
  left: -30px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  top: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-floating-card .card-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-floating-card .card-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.hero-floating-card .card-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: #8B6F00;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.section-desc {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.1rem;
}

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

.section-head {
  margin-bottom: 56px;
}

/* ============================================
   STEP MAP / TIMELINE BLOCK
   ============================================ */

#stepmap {
  background: linear-gradient(180deg, #FAFAFA 0%, #FFF9E6 100%);
}

.step-map {
  position: relative;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 64px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-item.visible {
  opacity: 1;
  transform: none;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,220,51,0.5);
  position: relative;
}

.step-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.step-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* mini price cards */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.mini-price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.mini-price-card:hover,
.mini-price-card.popular {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255,220,51,0.25);
}

.mini-price-card .popular-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.mini-price-card .price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
}

.mini-price-card .price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.mini-price-card .plan-name {
  font-weight: 700;
  color: var(--dark);
  margin: 4px 0;
}

.mini-price-card .plan-detail {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* booking form (top) */
.booking-form-top {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--yellow-light);
  max-width: 640px;
  margin: 0 auto 32px;
}

.booking-form-top h3 {
  text-align: center;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: white;
  box-shadow: 0 0 0 4px rgba(255,220,51,0.15);
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

.scroll-down-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
}

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

#classes {
  background: var(--dark);
  color: white;
}

#classes .section-tag {
  background: rgba(255,220,51,0.2);
  color: var(--yellow);
}

#classes .section-title {
  color: white;
}

#classes .section-desc {
  color: rgba(255,255,255,0.6);
}

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

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

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

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 32px;
  border-radius: 0 0 var(--radius) var(--radius);
}

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

.slide-caption p {
  color: rgba(255,255,255,0.7);
}

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

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

.carousel-btn:hover {
  background: var(--yellow);
  color: var(--dark);
}

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

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

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

/* ============================================
   ACCORDION / FAQ
   ============================================ */

#faq {
  background: var(--white);
}

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

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

.accordion-item.open {
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(255,220,51,0.2);
}

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

.accordion-header:hover {
  background: var(--yellow-light);
}

.accordion-item.open .accordion-header {
  background: var(--yellow-light);
}

.accordion-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-icon {
  font-size: 1.3rem;
}

.accordion-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--text-light);
  flex-shrink: 0;
}

.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
  color: var(--yellow-dark);
}

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

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

.accordion-content {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   CIRCULAR ABOUT BLOCK
   ============================================ */

#about {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  overflow: hidden;
}

#about .section-tag {
  background: rgba(255,220,51,0.2);
  color: var(--yellow);
}

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

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

.about-orbit {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--yellow);
  box-shadow: 0 0 60px rgba(255,220,51,0.3);
  z-index: 2;
}

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

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px dashed rgba(255,220,51,0.25);
  animation: rotateSlow 20s linear infinite;
}

.orbit-ring-1 {
  width: 300px;
  height: 300px;
}

.orbit-ring-2 {
  width: 400px;
  height: 400px;
  animation-direction: reverse;
  animation-duration: 30s;
}

.orbit-node {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  transition: var(--transition);
}

.orbit-node:hover {
  transform: translate(-50%,-50%) scale(1.15);
  box-shadow: 0 8px 32px rgba(255,220,51,0.4);
}

.orbit-node span {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-top: 2px;
}

.about-text h2 {
  color: white;
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--yellow);
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-fact {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px;
}

.about-fact strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
}

.about-fact span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

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

#schedule {
  background: var(--bg);
}

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

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

.schedule-table th {
  background: var(--dark);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 20px;
  text-align: left;
}

.schedule-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

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

.schedule-table tr:nth-child(even) td {
  background: rgba(255,220,51,0.04);
}

.schedule-table tr:hover td {
  background: rgba(255,220,51,0.1);
}

.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.level-begin { background: #D1FAE5; color: #065F46; }
.level-mid   { background: #FEF3C7; color: #92400E; }
.level-adv   { background: #FEE2E2; color: #991B1B; }

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

#prices {
  background: linear-gradient(180deg, #FFF9E6 0%, #FAFAFA 100%);
}

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

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

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

.price-card:hover::before,
.price-card.featured::before {
  transform: scaleX(1);
}

.price-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,220,51,0.2);
}

.price-card.featured {
  border-color: var(--yellow);
  background: var(--dark);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.price-card .featured-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
}

.price-card .plan-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.price-card .plan-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

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

.price-card .plan-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.price-card.featured .plan-sub {
  color: rgba(255,255,255,0.5);
}

.price-card .plan-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}

.price-card.featured .plan-price {
  color: var(--yellow);
}

.price-card .plan-price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.price-card.featured .plan-price-note {
  color: rgba(255,255,255,0.4);
}

.price-card .plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

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

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

.feature-check {
  width: 20px;
  height: 20px;
  background: rgba(255,220,51,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  color: #8B6F00;
}

.price-card.featured .feature-check {
  background: rgba(255,220,51,0.25);
  color: var(--yellow);
}

.plan-cta {
  width: 100%;
  padding: 12px;
}

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

#calculator {
  background: var(--dark);
}

#calculator .section-tag {
  background: rgba(255,220,51,0.15);
  color: var(--yellow);
}

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

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

.calc-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
}

.calc-form label {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.slider-wrap {
  margin-bottom: 28px;
}

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

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

.slider-val {
  text-align: right;
  font-weight: 800;
  color: var(--yellow);
  font-size: 1.1rem;
}

.calc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.calc-tab {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.calc-tab.active,
.calc-tab:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

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

.calc-result-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.calc-price {
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.calc-price-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.calc-per {
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.calc-per strong {
  color: var(--yellow);
}

.calc-savings {
  display: inline-block;
  background: rgba(255,220,51,0.15);
  border: 1px solid rgba(255,220,51,0.3);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 12px;
}

/* ============================================
   PROMO TEXT BLOCK
   ============================================ */

#promo {
  background: var(--yellow);
  overflow: hidden;
  position: relative;
}

#promo::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

#promo::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.promo-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.promo-inner p {
  color: rgba(26,26,46,0.75);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.promo-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

.promo-tag {
  background: rgba(26,26,46,0.1);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(26,26,46,0.15);
}

.promo-quote {
  background: rgba(26,26,46,0.08);
  border-left: 4px solid var(--dark);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 32px 0;
  text-align: left;
}

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

#infographic {
  background: var(--bg);
}

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

.infographic-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.infographic-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: var(--transition);
}

.infographic-card:hover {
  border-color: var(--yellow-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.infographic-card:hover::after {
  transform: scaleX(1);
}

.infographic-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  background: var(--yellow-light);
}

.infographic-card h4 {
  margin-bottom: 8px;
}

.infographic-stat {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow-dark);
  line-height: 1;
  margin: 12px 0 4px;
}

.infographic-card p {
  font-size: 0.875rem;
}

/* ============================================
   GALLERY BLOCK
   ============================================ */

#gallery {
  background: white;
}

.gallery-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  margin: 48px 0;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/14;
  cursor: pointer;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 20px 16px 14px;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(4px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: none;
}

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

#testimonials {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow-dark);
  font-size: 1rem;
  margin-bottom: 12px;
}

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

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dark);
}

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

/* ============================================
   CTA SECTION
   ============================================ */

#cta {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  text-align: center;
}

#cta h2 {
  color: white;
  margin-bottom: 16px;
}

#cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

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

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

.footer {
  background: #0D0D1A;
  color: rgba(255,255,255,0.5);
  padding: 60px 0 24px;
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-col h5 {
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

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

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

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

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

.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

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

.company-details {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
  line-height: 1.6;
}

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

#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,220,51,0.2);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#cookie-banner.show {
  transform: none;
}

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

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

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

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

.cookie-btn-accept {
  background: var(--yellow);
  color: var(--dark);
}

.cookie-btn-accept:hover {
  background: var(--yellow-dark);
}

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

.cookie-btn-minimal:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,220,51,0.8);
  border: 1px solid rgba(255,220,51,0.3);
}

.cookie-btn-settings:hover {
  background: rgba(255,220,51,0.1);
  color: var(--yellow);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.slide-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: none;
}

.slide-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: none;
}

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

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

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

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: none; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,220,51,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(255,220,51,0); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: var(--transition);
}

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

.mobile-menu a {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--yellow);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

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

.legal-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  color: white;
}

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

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

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

.legal-body h3 {
  font-size: 1.1rem;
  margin: 20px 0 8px;
  color: var(--dark);
}

.legal-body p,
.legal-body li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.8;
}

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

.legal-body ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 16px;
}

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

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  text-align: center;
  padding: 40px 24px;
}

.thanks-card {
  background: white;
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

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

.thanks-card p {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

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

  .steps-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .steps-timeline::before {
    display: none;
  }

  .about-orbit {
    width: 320px;
    height: 320px;
  }

  .orbit-ring-1 {
    width: 240px;
    height: 240px;
  }

  .orbit-ring-2 {
    width: 310px;
    height: 310px;
  }

  .orbit-center {
    width: 160px;
    height: 160px;
  }

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

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

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

  .nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-image-wrap {
    order: -1;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .steps-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .mini-prices {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .about-orbit {
    width: 280px;
    height: 280px;
  }

  .orbit-ring-2 {
    width: 278px;
    height: 278px;
  }

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

  .price-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-form-top {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

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