/* ===== WATERVIA — VANILLA CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary: #9966CC;
  --accent: #ED3CCA;
  --highlight: #F984E5;
  --dark: #2d1b4e;
  --mid: #5a3080;
  --light-purple: #c9a0e8;
  --pale: #f7f0ff;
  --white: #ffffff;
  --text: #3a2050;
  --gray: #8070a0;
  --shadow: rgba(153, 102, 204, 0.18);
  --shadow-strong: rgba(153, 102, 204, 0.35);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85em 2em;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.15); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 18px var(--shadow-strong);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--shadow-strong); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--pale); transform: translateY(-2px); }
.btn-small { padding: 0.5em 1.4em; font-size: 0.85rem; }

/* ===== SECTION LABELS ===== */
.section-tag {
  display: inline-block;
  padding: 0.3em 1.2em;
  background: linear-gradient(90deg, rgba(153,102,204,0.12), rgba(237,60,202,0.1));
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(153,102,204,0.25);
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head p {
  color: var(--gray);
  max-width: 580px;
  margin: 0.8rem auto 0;
  font-size: 1.05rem;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(153,102,204,0.1);
  transition: background 0.3s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.25s;
}
nav a:hover { color: var(--primary); }
nav a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 1rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateY(0); display: flex; }
.mobile-nav a {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(153,102,204,0.1);
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--pale); color: var(--primary); }

/* ===== HERO BLOCK (uptopic) ===== */
.uptopic {
  min-height: 100vh;
  padding-top: 72px;
  background: linear-gradient(160deg, #f9f3ff 0%, #fce8fb 50%, #f0e8ff 100%);
  position: relative;
  overflow: hidden;
}
.uptopic::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,132,229,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 8s ease-in-out infinite;
}
.uptopic::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(153,102,204,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 10s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.uptopic-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.uptopic-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.uptopic-center .section-tag { margin-bottom: 1.2rem; }
.uptopic-center h1 { margin-bottom: 1.2rem; color: var(--dark); }
.uptopic-center p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.uptopic-hero-img {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(153,102,204,0.25);
  overflow: hidden;
  animation: heroRise 1s ease 0.2s both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.uptopic-hero-img img { width: 100%; display: block; }

/* Cells */
.uptopic-cells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 4rem;
}
.uptopic-cell {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(153,102,204,0.18);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  animation: cellFadeIn 0.6s ease both;
}
.uptopic-cell:nth-child(1) { animation-delay: 0.1s; }
.uptopic-cell:nth-child(2) { animation-delay: 0.2s; }
.uptopic-cell:nth-child(3) { animation-delay: 0.3s; }
.uptopic-cell:nth-child(4) { animation-delay: 0.4s; }
.uptopic-cell:nth-child(5) { animation-delay: 0.5s; }
.uptopic-cell:nth-child(6) { animation-delay: 0.6s; }
.uptopic-cell:nth-child(7) { animation-delay: 0.7s; }
@keyframes cellFadeIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.uptopic-cell:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(153,102,204,0.22);
  border-color: rgba(153,102,204,0.4);
  background: rgba(255,255,255,0.95);
}
.cell-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(153,102,204,0.15), rgba(237,60,202,0.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  transition: transform 0.3s;
}
.uptopic-cell:hover .cell-icon { transform: scale(1.1) rotate(-5deg); }
.uptopic-cell h4 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--dark); }
.uptopic-cell p { font-size: 0.82rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.5; }
.btn-bloom {
  display: inline-block;
  padding: 0.4em 1.2em;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.85);
  opacity: 0;
}
.uptopic-cell:hover .btn-bloom { transform: scale(1); opacity: 1; }

/* ===== SHARED SECTION WRAPPER ===== */
section { padding: 5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== SLIDER BLOCK ===== */
.slider-section {
  background: #fff;
  overflow: hidden;
}
.slider-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(153,102,204,0.18);
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(45,27,78,0.85) 0%, transparent 100%);
  padding: 3rem 2.5rem 2rem;
  color: #fff;
}
.slide-caption h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.slide-caption p { font-size: 0.95rem; opacity: 0.85; }
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s;
  font-size: 1.3rem;
  color: var(--primary);
  z-index: 10;
}
.slider-btn:hover { background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.2); transform: translateY(-50%) scale(1.1); }
.slider-btn-prev { left: 1.2rem; }
.slider-btn-next { right: 1.2rem; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(153,102,204,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.active { background: var(--primary); transform: scale(1.3); }

/* ===== ACCORDION BLOCK ===== */
.accordion-section { background: var(--pale); }
.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.accordion-img-side img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(153,102,204,0.2);
}
.accordion-img-side p {
  margin-top: 1.5rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.accordion-list { display: flex; flex-direction: column; gap: 0.8rem; }
.accordion-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(153,102,204,0.15);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.accordion-item.open { box-shadow: 0 8px 30px rgba(153,102,204,0.18); }
.accordion-header {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  gap: 0.8rem;
  user-select: none;
}
.accordion-header:hover { color: var(--primary); }
.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-body-inner {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
}
.accordion-body-inner ul {
  margin-top: 0.7rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.accordion-body-inner li { display: flex; gap: 0.5rem; }
.accordion-body-inner li::before { content: '✦'; color: var(--accent); flex-shrink: 0; }

/* ===== CIRCULAR ABOUT BLOCK ===== */
.about-section {
  background: linear-gradient(160deg, #fff 0%, var(--pale) 100%);
  overflow: hidden;
}
.about-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.about-orb {
  position: relative;
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  margin: 2rem auto 3rem;
}
.about-center-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58%; height: 58%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 0 0 3px var(--primary), 0 12px 40px rgba(153,102,204,0.3);
  z-index: 5;
}
.about-center-img img { width: 100%; height: 100%; object-fit: cover; }
.orbit-item {
  position: absolute;
  width: 110px;
  text-align: center;
  z-index: 4;
}
.orbit-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 0.4rem;
  box-shadow: 0 8px 20px rgba(153,102,204,0.35);
  transition: transform 0.4s;
}
.orbit-item:hover .orbit-icon { transform: scale(1.15) rotate(-10deg); }
.orbit-item p { font-size: 0.72rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
/* Orbit positions */
.orbit-item:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(3) { top: 18%; right: -5%; }
.orbit-item:nth-child(4) { bottom: 18%; right: -5%; }
.orbit-item:nth-child(5) { bottom: -40px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(6) { bottom: 18%; left: -5%; }
.orbit-item:nth-child(7) { top: 18%; left: -5%; }

/* Orbit ring */
.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(153,102,204,0.3);
  animation: orbitSpin 20s linear infinite;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
  width: 100%;
  max-width: 900px;
}
.about-text-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  text-align: center;
  border: 1px solid rgba(153,102,204,0.15);
  box-shadow: 0 4px 16px rgba(153,102,204,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-text-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(153,102,204,0.18); }
.about-text-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text-card p { font-size: 0.85rem; color: var(--gray); margin-top: 0.3rem; }

/* ===== TABLE BLOCK ===== */
.table-section { background: #fff; }
.table-wrap { overflow-x: auto; border-radius: 20px; box-shadow: 0 8px 40px rgba(153,102,204,0.12); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.schedule-table th {
  background: linear-gradient(135deg, var(--primary), var(--mid));
  color: #fff;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.schedule-table th:first-child { border-radius: 20px 0 0 0; }
.schedule-table th:last-child { border-radius: 0 20px 0 0; }
.schedule-table td {
  padding: 0.95rem 1.4rem;
  border-bottom: 1px solid rgba(153,102,204,0.1);
  font-size: 0.92rem;
}
.schedule-table tr:nth-child(even) td { background: rgba(153,102,204,0.04); }
.schedule-table tr:hover td { background: rgba(153,102,204,0.09); }
.level-badge {
  display: inline-block;
  padding: 0.25em 0.9em;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-novice { background: rgba(152,251,152,0.25); color: #2a7a2a; }
.badge-inter { background: rgba(153,102,204,0.15); color: var(--mid); }
.badge-master { background: rgba(237,60,202,0.15); color: #a0247a; }
.badge-grand { background: linear-gradient(135deg, rgba(153,102,204,0.2), rgba(237,60,202,0.15)); color: var(--dark); }
.tag-live {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; color: #c00;
}
.tag-live::before {
  content: ''; width: 7px; height: 7px;
  background: #e00;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== PRICING BLOCK ===== */
.pricing-section {
  background: var(--pale);
  overflow: hidden;
}
.pricing-canvas {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(153,102,204,0.25);
}
.pricing-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(1.1);
}
.pricing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
}
.pricing-quadrant {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1.5rem 1rem;
  transition: all 0.4s ease;
  cursor: default;
}
.pricing-quadrant:hover {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.pricing-quadrant:hover .pricing-content { opacity: 1; transform: translateY(0); }
.pq-tl { top: 0; left: 0; width: 50%; height: 50%; border-bottom: 2px solid rgba(255,255,255,0.5); border-right: 2px solid rgba(255,255,255,0.5); }
.pq-tr { top: 0; right: 0; width: 50%; height: 50%; border-bottom: 2px solid rgba(255,255,255,0.5); }
.pq-bl { bottom: 0; left: 0; width: 50%; height: 50%; border-right: 2px solid rgba(255,255,255,0.5); }
.pq-br { bottom: 0; right: 0; width: 50%; height: 50%; }
.pricing-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--dark);
  text-shadow: 0 1px 4px rgba(255,255,255,0.8);
  margin-bottom: 0.3rem;
}
.pricing-price {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.pricing-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
  margin-top: 0.6rem;
}
.pricing-content ul { font-size: 0.75rem; color: var(--dark); line-height: 1.6; }
.pricing-content li::before { content: '✓ '; color: var(--accent); }

/* Mobile pricing */
.pricing-cards-mobile { display: none; }
.pricing-card-m {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(153,102,204,0.2);
  box-shadow: 0 8px 30px rgba(153,102,204,0.12);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card-m:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(153,102,204,0.2); }
.pricing-card-m h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pricing-card-m .price { font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-card-m ul { margin: 1rem 0; text-align: left; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; color: var(--gray); }
.pricing-card-m li::before { content: '✓ '; color: var(--accent); }

/* ===== TECHNIQUES BLOCK ===== */
.techniques-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--mid) 100%);
  color: #fff;
}
.techniques-section .section-head h2 { color: #fff; }
.techniques-section .section-head p { color: rgba(255,255,255,0.65); }
.tech-level-tabs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tech-tab {
  padding: 0.6em 1.8em;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.tech-tab:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.tech-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(237,60,202,0.4);
}
.tech-panel { display: none; }
.tech-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tech-card {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.35s;
}
.tech-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}
.tech-card-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.tech-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.tech-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.tech-card .watch-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--highlight);
  font-weight: 600;
}
.watch-btn svg { width: 16px; height: 16px; }

/* ===== BEGINNERS BLOCK ===== */
.beginners-section { background: #fff; }
.beginners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.begin-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(153,102,204,0.15);
  box-shadow: 0 4px 20px rgba(153,102,204,0.08);
  transition: all 0.35s;
}
.begin-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(153,102,204,0.2); }
.begin-card-img { aspect-ratio: 4/3; overflow: hidden; }
.begin-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.begin-card:hover .begin-card-img img { transform: scale(1.07); }
.begin-card-body { padding: 1.4rem 1.3rem; }
.begin-card-body h4 { margin-bottom: 0.5rem; font-size: 1rem; color: var(--dark); }
.begin-card-body p { font-size: 0.86rem; color: var(--gray); line-height: 1.6; }
.begin-tag {
  display: inline-block;
  padding: 0.2em 0.8em;
  background: linear-gradient(135deg, rgba(153,102,204,0.12), rgba(237,60,202,0.1));
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 0.7rem;
}
.begin-price { font-weight: 700; color: var(--primary); margin-top: 0.5rem; font-size: 0.95rem; }

/* ===== ADVICE BLOCK ===== */
.advice-section { background: var(--pale); }
.advice-level-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.adv-tab {
  padding: 0.6em 1.6em;
  border-radius: 50px;
  border: 2px solid rgba(153,102,204,0.3);
  background: #fff;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.adv-tab:hover { border-color: var(--primary); color: var(--primary); }
.adv-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(153,102,204,0.3);
}
.adv-panel { display: none; }
.adv-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.adv-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(153,102,204,0.15);
  box-shadow: 0 4px 16px rgba(153,102,204,0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(153,102,204,0.18); }
.adv-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(153,102,204,0.15), rgba(237,60,202,0.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.adv-card h4 { font-size: 0.98rem; color: var(--dark); margin-bottom: 0.5rem; }
.adv-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ===== GALLERY BLOCK ===== */
.gallery-section { background: #fff; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(45,27,78,0);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(45,27,78,0.35); }
/* Span variants */
.gallery-item.span-2c { grid-column: span 2; }
.gallery-item.span-2r { grid-row: span 2; }
.gallery-item.span-22 { grid-column: span 2; grid-row: span 2; }

/* ===== CARDS / POPUP BLOCK ===== */
.cards-section { background: var(--pale); }
.direction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.direction-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(153,102,204,0.1);
  border: 1px solid rgba(153,102,204,0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.direction-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(153,102,204,0.22); }
.direction-card-img { aspect-ratio: 16/9; overflow: hidden; }
.direction-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.direction-card:hover .direction-card-img img { transform: scale(1.1); }
.direction-card-body { padding: 1.5rem 1.4rem; }
.direction-card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--dark); }
.direction-card-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.2rem; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,27,78,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 28px;
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  animation: modalSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(153,102,204,0.1);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(153,102,204,0.2); color: var(--dark); }
.modal h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--dark); }
.modal-desc { font-size: 0.92rem; color: var(--gray); margin-bottom: 1.8rem; line-height: 1.7; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75em 1em;
  border: 2px solid rgba(153,102,204,0.2);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--primary); }
.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-label {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer; font-size: 0.9rem; color: var(--text);
}
.radio-label input[type="radio"] { accent-color: var(--primary); }

/* ===== MAIN FORM ===== */
.form-section {
  background: linear-gradient(160deg, var(--dark) 0%, #4a1f7a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(237,60,202,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.form-text h2 { color: #fff; margin-bottom: 1rem; }
.form-text p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 1.5rem; }
.form-perks { display: flex; flex-direction: column; gap: 0.7rem; }
.form-perk {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
}
.perk-ico {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.main-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  padding: 2.5rem;
}
.main-form h3 { color: #fff; margin-bottom: 1.8rem; font-size: 1.4rem; }
.main-form .form-group label { color: rgba(255,255,255,0.85); }
.main-form .form-group input,
.main-form .form-group select {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.main-form .form-group input::placeholder { color: rgba(255,255,255,0.45); }
.main-form .form-group input:focus,
.main-form .form-group select:focus { border-color: rgba(249,132,229,0.7); }
.main-form .form-group select option { color: var(--text); background: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { font-size: 1.6rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-brand .legal { margin-top: 1.2rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--highlight); }
.footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.8; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(45,27,78,0.25);
  border: 1px solid rgba(153,102,204,0.2);
  max-width: 780px;
  width: calc(100% - 2rem);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: cookieSlide 0.5s ease;
}
@keyframes cookieSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; min-width: 200px; font-size: 0.88rem; color: var(--gray); }
.cookie-text strong { color: var(--dark); }
.cookie-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ===== COOKIE SETTINGS MODAL ===== */
#cookie-settings {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,27,78,0.6);
  backdrop-filter: blur(6px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#cookie-settings.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 2.2rem;
  animation: modalSlide 0.35s ease;
}
.cookie-modal h3 { margin-bottom: 1rem; }
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(153,102,204,0.1);
}
.cookie-option:last-of-type { border: none; }
.cookie-option span { font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.cookie-option small { font-size: 0.78rem; color: var(--gray); display: block; margin-top: 0.1rem; }
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  left: 3px; top: 3px;
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* Popup video modal */
#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,27,78,0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#video-modal.open { display: flex; }
.video-modal-inner {
  background: var(--dark);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 640px;
  width: 100%;
  position: relative;
  animation: modalSlide 0.35s ease;
}
.video-modal-inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: none;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(153,102,204,0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  gap: 1rem;
}
.video-placeholder .play-ico { font-size: 3rem; opacity: 0.8; }
.video-modal-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 38px; height: 38px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ===== BACK TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(153,102,204,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s;
  display: flex; align-items: center; justify-content: center;
  z-index: 997;
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(153,102,204,0.5); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 8rem 1.5rem 5rem; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h1 { font-size: 2.2rem; margin-bottom: 0.5rem; color: var(--dark); }
.legal-content .date { color: var(--gray); font-size: 0.9rem; margin-bottom: 2.5rem; display: block; }
.legal-content h2 { font-size: 1.3rem; color: var(--primary); margin: 2rem 0 0.7rem; }
.legal-content p { font-size: 0.95rem; color: var(--text); margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content li { font-size: 0.93rem; color: var(--text); margin-bottom: 0.4rem; line-height: 1.7; }

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f9f3ff 0%, #fce8fb 50%, #f0e8ff 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.thanks-page::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,132,229,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.thanks-box {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(153,102,204,0.2);
  border: 1px solid rgba(153,102,204,0.2);
  position: relative;
  z-index: 2;
  animation: heroRise 0.8s ease;
}
.thanks-emoji { font-size: 4rem; margin-bottom: 1rem; }
.thanks-box h1 { font-size: 2rem; margin-bottom: 1rem; color: var(--dark); }
.thanks-box p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-text-grid { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .form-text { text-align: center; }
  .form-perks { align-items: center; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .accordion-grid { grid-template-columns: 1fr; }
  .accordion-img-side { order: -1; }
  .tech-panel.active { grid-template-columns: 1fr; }
  .adv-panel.active { grid-template-columns: 1fr; }
  .pricing-canvas { display: none; }
  .pricing-cards-mobile { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.span-2c, .gallery-item.span-22 { grid-column: span 2; }
  .gallery-item.span-2r, .gallery-item.span-22 { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .about-text-grid { grid-template-columns: 1fr; }
  .orbit-item { transform: none !important; position: static; }
  .about-orb { display: none; }
  .direction-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 1rem; }
  .pricing-cards-mobile { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { padding: 1.8rem 1.3rem; }
  .uptopic-cells { grid-template-columns: repeat(2, 1fr); }
  .thanks-box { padding: 2.5rem 1.5rem; }
}
