/* ===================================================
   MOVEORA — Main Stylesheet
   Primary: #FF69B4 | Accent: #8A2BE2 | Highlight: #00FFFF
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #FF69B4;
  --violet: #8A2BE2;
  --cyan: #00FFFF;
  --dark: #0d0b1a;
  --dark2: #16132a;
  --dark3: #1e1a36;
  --light: #f8f0ff;
  --text: #e8d8ff;
  --text-muted: #b8a4d8;
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(255,105,180,0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(138,43,226,0.25);
  --shadow-pink: 0 8px 32px rgba(255,105,180,0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Georgia', 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--pink); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--cyan); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-header { text-align: center; margin-bottom: 3rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,105,180,0.5); color: #fff; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-secondary:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}

.btn-outline-cyan {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  font-size: 0.9rem;
  padding: 10px 24px;
}
.btn-outline-cyan:hover {
  background: var(--cyan);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ---- Header / Nav ---- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(13,11,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,105,180,0.1);
  transition: var(--transition);
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
nav ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
nav ul a:hover {
  color: var(--pink);
  border-color: var(--pink);
}
nav ul .btn { padding: 10px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Sections ---- */
section {
  padding: 100px 2rem;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Animation Classes ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- Decorative elements ---- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.glow-pink { background: rgba(255,105,180,0.15); }
.glow-violet { background: rgba(138,43,226,0.15); }
.glow-cyan { background: rgba(0,255,255,0.08); }

/* ======================================================
   BLOCK 1: CHUUROS — Hero Section
   ====================================================== */
.chuuros {
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.chuuros-top {
  flex: 1;
  position: relative;
  min-height: 55vh;
  overflow: hidden;
}

.chuuros-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
  animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.chuuros-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,11,26,0.4) 0%,
    rgba(13,11,26,0.2) 40%,
    rgba(13,11,26,0.95) 100%
  );
}

.chuuros-badge {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,105,180,0.15);
  border: 1px solid rgba(255,105,180,0.4);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: pulseBadge 3s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,105,180,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,105,180,0); }
}

.chuuros-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
}
.chuuros-diagonal svg {
  width: 100%;
  height: 100%;
}

.chuuros-bottom {
  background: var(--dark2);
  position: relative;
  z-index: 2;
}

.chuuros-cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  gap: 3rem;
  align-items: center;
}

.chuuros-greeting {
  animation: fadeSlideUp 0.9s ease 0.2s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.chuuros-greeting .eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.chuuros-greeting h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.chuuros-greeting h1 .brand {
  display: block;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.chuuros-greeting p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2rem;
}

.chuuros-form-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.9s ease 0.4s both;
  box-shadow: var(--shadow);
}
.chuuros-form-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #fff;
}
.chuuros-form-box .form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,105,180,0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus {
  border-color: var(--pink);
  background: rgba(255,105,180,0.08);
  box-shadow: 0 0 0 3px rgba(255,105,180,0.15);
}
.form-group select option { background: var(--dark2); color: #fff; }
.chuuros-form-box .btn { width: 100%; margin-top: 0.5rem; }

/* ======================================================
   BLOCK 2: SLIDER / CAROUSEL
   ====================================================== */
#slider {
  background: var(--dark);
  overflow: hidden;
}

.slider-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 2.5rem 2.5rem;
  background: linear-gradient(0deg, rgba(13,11,26,0.95) 0%, transparent 100%);
}
.slide-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,255,255,0.1);
  border: 1px solid rgba(0,255,255,0.3);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.slide-caption h3 { font-size: 1.8rem; color: #fff; margin-bottom: 0.5rem; }
.slide-caption p { color: var(--text-muted); max-width: 500px; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,105,180,0.1);
  border: 2px solid rgba(255,105,180,0.3);
  color: var(--pink);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  transform: scale(1.1);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,105,180,0.3);
  border: none;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--pink);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255,105,180,0.6);
}

/* ======================================================
   BLOCK 3: ACCORDION
   ====================================================== */
#accordion {
  background: var(--dark2);
}

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

.accordion-visual {
  position: sticky;
  top: 100px;
}
.accordion-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 480px;
}
.accordion-visual-badge {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-pill {
  background: rgba(255,105,180,0.1);
  border: 1px solid rgba(255,105,180,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-pill strong { color: var(--pink); font-size: 1.1rem; }

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

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover { border-color: rgba(255,105,180,0.5); }
.accordion-item.open { border-color: var(--pink); box-shadow: var(--shadow-pink); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
}
.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.accordion-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.accordion-header h4 { font-size: 1rem; color: #fff; font-family: var(--font); font-weight: 600; }

.accordion-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,105,180,0.1);
  border: 1px solid rgba(255,105,180,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }

.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 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.accordion-body-inner ul {
  list-style: none;
  margin-top: 0.8rem;
}
.accordion-body-inner ul li {
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.accordion-body-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: bold;
}

/* ======================================================
   BLOCK 4: CIRCULAR ABOUT
   ====================================================== */
#about {
  background: var(--dark3);
  overflow: hidden;
}

.about-circle-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.about-circle-container {
  position: relative;
  width: 560px;
  height: 560px;
  max-width: 90vw;
}

.about-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pink);
  box-shadow: 0 0 40px rgba(255,105,180,0.4), 0 0 80px rgba(138,43,226,0.3);
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255,105,180,0.2);
  animation: spinOrbit 30s linear infinite;
}
.orbit-ring-1 { width: 370px; height: 370px; }
.orbit-ring-2 { width: 480px; height: 480px; animation-direction: reverse; animation-duration: 45s; }

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

.orbit-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: counterSpin 30s linear infinite;
  cursor: default;
  transition: var(--transition);
}
.orbit-node:hover { border-color: var(--pink); color: var(--pink); transform: scale(1.2); }
.orbit-node .node-icon { font-size: 1.4rem; margin-bottom: 3px; }

@keyframes counterSpin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.orbit-ring-2 .orbit-node { animation-direction: reverse; animation-duration: 45s; }

/* Position nodes around ring-1 */
.node-1 { top: -40px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: -40px; transform: translateY(-50%); }
.node-3 { bottom: -40px; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: -40px; transform: translateY(-50%); }

/* Nodes on ring-2 */
.node-5 { top: -40px; left: 50%; transform: translateX(-50%); }
.node-6 { top: 20%; right: -40px; }
.node-7 { bottom: 20%; right: -40px; }
.node-8 { bottom: -40px; left: 50%; transform: translateX(-50%); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
}
.about-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.about-stat-card:hover { border-color: var(--pink); transform: translateY(-5px); box-shadow: var(--shadow-pink); }
.about-stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.about-stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

.about-description {
  max-width: 750px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ======================================================
   BLOCK 5: SCHEDULE TABLE
   ====================================================== */
#schedule {
  background: var(--dark);
}

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

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.schedule-table thead {
  background: linear-gradient(135deg, var(--pink), var(--violet));
}
.schedule-table thead th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-table tbody tr {
  border-bottom: 1px solid rgba(255,105,180,0.1);
  transition: var(--transition);
}
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: rgba(255,105,180,0.05); }

.schedule-table tbody td {
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.schedule-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.schedule-table tbody tr:nth-child(even):hover { background: rgba(255,105,180,0.05); }

.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.level-beginner { background: rgba(0,255,255,0.1); color: var(--cyan); border: 1px solid rgba(0,255,255,0.3); }
.level-intermediate { background: rgba(255,105,180,0.1); color: var(--pink); border: 1px solid rgba(255,105,180,0.3); }
.level-all { background: rgba(138,43,226,0.15); color: #b87cff; border: 1px solid rgba(138,43,226,0.3); }

.class-name { color: #fff; font-weight: 600; }
.class-icon { margin-right: 0.5rem; }

/* ======================================================
   BLOCK 6: PRICE CARDS
   ====================================================== */
#pricing {
  background: var(--dark2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  opacity: 0;
  transition: var(--transition);
}
.price-card:hover::before { opacity: 1; }
.price-card:hover { transform: translateY(-8px); border-color: var(--pink); box-shadow: var(--shadow-pink); }
.price-card.featured { border-color: var(--violet); box-shadow: var(--shadow); }
.price-card.featured::before { opacity: 1; }

.price-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px 6px;
  border-radius: 0 0 10px 10px;
}

.price-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.price-plan { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; }
.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-amount sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.5rem; }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}
.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--pink); font-weight: 700; }
.price-card .btn { width: 100%; }

/* ======================================================
   BLOCK 7: INTERACTIVE CALCULATOR
   ====================================================== */
#calculator {
  background: var(--dark3);
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-left h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.calc-left > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.calc-field { margin-bottom: 1.8rem; }
.calc-field label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-field .val-display {
  color: var(--cyan);
  font-size: 1rem;
}
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,105,180,0.2);
  outline: none;
  cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255,105,180,0.5);
  transition: transform 0.2s;
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.plan-option:hover { background: rgba(255,105,180,0.08); border-color: rgba(255,105,180,0.2); }
.plan-option input[type="radio"] { accent-color: var(--pink); width: 16px; height: 16px; }
.plan-option span { font-size: 0.95rem; color: var(--text-muted); }
.plan-option.selected { background: rgba(255,105,180,0.1); border-color: var(--pink); }
.plan-option.selected span { color: #fff; }

.calc-result {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,105,180,0.05), rgba(138,43,226,0.05));
}
.calc-result > * { position: relative; z-index: 1; }

.result-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.result-price {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  transition: var(--transition);
}
.result-unit { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.result-per-lesson { font-size: 1rem; color: var(--cyan); font-weight: 600; margin-bottom: 2rem; }
.result-savings {
  background: rgba(0,255,255,0.1);
  border: 1px solid rgba(0,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  font-size: 0.9rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

/* ======================================================
   BLOCK 8: SELLING TEXT
   ====================================================== */
#selling {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

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

.selling-inner .big-quote {
  font-size: 6rem;
  color: rgba(255,105,180,0.15);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -2rem;
}

.selling-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.selling-inner h2 .highlight {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.selling-paragraphs { display: flex; flex-direction: column; gap: 1.5rem; }

.selling-paragraphs p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.selling-paragraphs p strong { color: var(--pink); }

.selling-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.selling-pulse-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

/* Floating words */
.float-word {
  position: absolute;
  font-size: 8rem;
  font-family: Georgia, serif;
  font-weight: 700;
  opacity: 0.03;
  color: var(--pink);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ======================================================
   BLOCK 9: INFOGRAPHIC
   ====================================================== */
#infographic {
  background: var(--dark2);
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.info-card:hover { transform: translateY(-8px); border-color: var(--violet); box-shadow: var(--shadow); }

.info-icon-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(138,43,226,0.4);
}

.info-card h4 { font-size: 1.1rem; color: #fff; margin-bottom: 0.8rem; font-family: var(--font); }
.info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.progress-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
}
.progress-section h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; font-family: var(--font); }

.progress-item { margin-bottom: 1.2rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.progress-label span:last-child { color: var(--pink); font-weight: 600; }
.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(255,105,180,0.5);
}

/* ======================================================
   BLOCK 10: TESTIMONIALS (Success Stories)
   ====================================================== */
#testimonials {
  background: var(--dark3);
}

.testimonials-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
  min-width: 280px;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--pink); box-shadow: var(--shadow-pink); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.testimonial-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}
.testimonial-info .name { font-weight: 700; color: #fff; font-size: 1rem; }
.testimonial-info .role { font-size: 0.8rem; color: var(--text-muted); }

.testimonial-stars { color: #FFD700; font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; color: var(--pink); font-size: 1.5rem; }
.testimonial-quote::after { content: '"'; color: var(--pink); font-size: 1.5rem; }

.testimonial-tag {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(255,105,180,0.1);
  border: 1px solid rgba(255,105,180,0.2);
  color: var(--pink);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}

/* ======================================================
   BLOCK 11: MOVEMENT DEMONSTRATOR
   ====================================================== */
#demonstrator {
  background: var(--dark);
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.movement-selector h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.movement-selector > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.move-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.move-btn {
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,105,180,0.2);
  color: var(--text-muted);
  transition: var(--transition);
}
.move-btn:hover {
  background: rgba(255,105,180,0.08);
  border-color: rgba(255,105,180,0.5);
  color: var(--pink);
}
.move-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,105,180,0.4);
}

.move-info {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.move-info h4 { color: var(--pink); font-size: 1rem; margin-bottom: 0.5rem; font-family: var(--font); font-weight: 600; }
.move-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.move-tips {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.move-tip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.move-tip .tip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.body-visualizer {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.body-visualizer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font);
}

.body-svg-wrap {
  position: relative;
  display: inline-block;
}

.body-svg-wrap svg {
  width: 200px;
  height: auto;
}

.body-label {
  position: absolute;
  background: rgba(255,105,180,0.15);
  border: 1px solid var(--pink);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.body-label.visible { opacity: 1; }

/* Muscle highlight colors on svg */
.muscle { transition: fill 0.4s ease, filter 0.4s ease; }
.muscle.active { fill: rgba(255,105,180,0.7); filter: drop-shadow(0 0 6px rgba(255,105,180,0.8)); }

/* ======================================================
   BLOCK 12: DANCE SESSION HIGHLIGHTS
   ====================================================== */
#dance-sessions {
  background: var(--dark2);
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.session-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  cursor: pointer;
}
.session-card:hover { transform: translateY(-5px); border-color: var(--pink); box-shadow: var(--shadow-pink); }

.session-thumb {
  position: relative;
  overflow: hidden;
}
.session-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.session-card:hover .session-thumb img { transform: scale(1.08); }

.session-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,105,180,0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.4);
}
.session-card:hover .session-play {
  background: var(--pink);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255,105,180,0.6);
}

.session-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(13,11,26,0.9), transparent);
  padding: 1.5rem 1rem 0.5rem;
}
.session-duration {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
}

.session-body { padding: 1.2rem; }
.session-body h4 { color: #fff; font-size: 1rem; font-family: var(--font); font-weight: 600; margin-bottom: 0.3rem; }
.session-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.session-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.session-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ======================================================
   BLOCK 13: PHOTO GALLERY
   ====================================================== */
#gallery {
  background: var(--dark3);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,11,26,0.9) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-size: 0.85rem; font-weight: 600; }

/* Different sizes */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { min-height: 200px; }
.gallery-item:nth-child(5), .gallery-item:nth-child(6) { min-height: 200px; }
.gallery-item:nth-child(8), .gallery-item:nth-child(9), .gallery-item:nth-child(10) { min-height: 220px; }

/* ======================================================
   BLOCK 14: INTERACTIVE CARDS (Directions)
   ====================================================== */
#directions {
  background: var(--dark);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.direction-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.direction-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.direction-card:hover::before { transform: scaleX(1); }
.direction-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,105,180,0.5);
  box-shadow: var(--shadow-pink);
}

.direction-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.direction-card:hover .direction-card-img { transform: scale(1.05); }

.direction-card-body { padding: 1.5rem; }
.direction-card-body h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.5rem; font-family: var(--font); font-weight: 700; }
.direction-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }

/* ======================================================
   MODAL (Popup)
   ====================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,11,26,0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--dark2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,105,180,0.2); color: var(--pink); border-color: var(--pink); }

.modal-icon { font-size: 2.5rem; text-align: center; margin-bottom: 0.5rem; }
.modal-box h3 { font-size: 1.5rem; color: #fff; text-align: center; margin-bottom: 0.3rem; }
.modal-box .modal-desc { color: var(--text-muted); font-size: 0.95rem; text-align: center; margin-bottom: 1.5rem; line-height: 1.7; }

.modal-plan-select {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.modal-plan-select label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}
.modal-plan-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,105,180,0.2);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.modal-plan-option:hover { background: rgba(255,105,180,0.08); border-color: rgba(255,105,180,0.4); }
.modal-plan-option input { accent-color: var(--pink); }

.modal-box .btn { width: 100%; margin-top: 1rem; }

/* ======================================================
   FOOTER
   ====================================================== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,105,180,0.1);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { font-size: 1.8rem; font-family: var(--font-display); font-weight: 700; background: linear-gradient(135deg, var(--pink), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; max-width: 300px; }

.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,105,180,0.1);
  border: 1px solid rgba(255,105,180,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--pink);
}
.social-link:hover { background: var(--pink); color: #fff; transform: translateY(-3px); }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--pink); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; }
.footer-legal a { color: var(--text-muted); text-decoration: underline; }
.footer-legal a:hover { color: var(--pink); }

.footer-links-bottom {
  display: flex;
  gap: 1.5rem;
}
.footer-links-bottom a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links-bottom a:hover { color: var(--pink); }

/* ======================================================
   COOKIE BANNER
   ====================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--dark2);
  border-top: 1px solid rgba(255,105,180,0.2);
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.9rem; color: var(--text-muted); flex: 1; min-width: 260px; line-height: 1.6; }
.cookie-text a { color: var(--pink); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.cookie-accept { background: var(--pink); color: #fff; }
.cookie-accept:hover { background: var(--violet); transform: translateY(-2px); }
.cookie-necessary { background: transparent; border: 1px solid rgba(255,105,180,0.3); color: var(--text-muted); }
.cookie-necessary:hover { border-color: var(--pink); color: var(--pink); }
.cookie-customize { background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1); }
.cookie-customize:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* ======================================================
   INNER PAGES (legal pages)
   ====================================================== */
.inner-page {
  min-height: 100vh;
  padding-top: 120px;
}
.inner-page .container { max-width: 800px; }
.inner-page h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.inner-page .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.inner-page h2 { font-size: 1.4rem; color: #fff; margin: 2rem 0 0.8rem; font-family: var(--font); font-weight: 700; }
.inner-page p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.inner-page ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.inner-page ul li { margin-bottom: 0.4rem; line-height: 1.7; }

/* ======================================================
   THANKS PAGE
   ====================================================== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.thanks-box {
  max-width: 500px;
}
.thanks-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 60px rgba(255,105,180,0.5);
  animation: thanksPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes thanksPop {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}
.thanks-box h1 { font-size: 2.5rem; color: #fff; margin-bottom: 1rem; }
.thanks-box p { color: var(--text-muted); margin-bottom: 0.5rem; }
.thanks-box .btn { margin-top: 2rem; }

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

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

  nav ul { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-open nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,11,26,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(255,105,180,0.1);
    z-index: 999;
  }
  .nav-mobile-open nav ul li { width: 100%; }
  .nav-mobile-open nav ul a { font-size: 1rem; }
  .nav-mobile-open nav ul .btn { width: 100%; text-align: center; }

  .chuuros-cells { grid-template-columns: 1fr; }
  .chuuros-greeting p { max-width: 100%; }

  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-visual { position: static; }

  .about-circle-container { width: 320px; height: 320px; }
  .about-center-img { width: 150px; height: 150px; }
  .orbit-ring-1 { width: 220px; height: 220px; }
  .orbit-ring-2 { width: 290px; height: 290px; }
  .orbit-node { width: 60px; height: 60px; font-size: 0.55rem; }
  .orbit-node .node-icon { font-size: 1rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .calculator-layout { grid-template-columns: 1fr; }

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

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

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(7) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links-bottom { justify-content: center; }

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

  .demo-layout { grid-template-columns: 1fr; }

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

  .slide img { height: 300px; }
}

@media (max-width: 480px) {
  .about-circle-container { width: 280px; height: 280px; }
  .orbit-ring-1 { width: 190px; height: 190px; }
  .orbit-ring-2 { width: 250px; height: 250px; }
  .chuuros-greeting h1 { font-size: 2rem; }
}
