/* ═══════════════════════════════════════════════
   SKINDOX Mongolia — style.css
   Korean beauty aesthetic · Vanilla CSS only
═══════════════════════════════════════════════ */

:root {
  --teal: #379faf;
  --teal-dark: #2b7e8d;
  --teal-light: #eaf6f8;
  --teal-mid: #5bbece;
  --ink: #1a2a2e;
  --ink-mid: #3d5a61;
  --ink-light: #7a9ea7;
  --paper: #f8fafb;
  --white: #ffffff;
  --border: #d4e8ec;
  --gold: #c9a84c;
  --warm: #f5f0eb;
  --cream: #fdf6ef;
  --rose-gold: #c9967a;
}

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  font-family: 'DM Sans', 'Noto Sans Mongolian', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════
   NAVIGATION — Glass Morphism on Scroll
══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

nav.nav-scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 32px rgba(55,159,175,0.10), 0 1px 0 rgba(255,255,255,0.6);
  border-bottom-color: rgba(212,232,236,0.5);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
  letter-spacing: -0.5px;
}
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--ink);
}

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { background: var(--teal-light); color: var(--teal-dark); }

.nav-phone {
  font-size: 13px; font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
}

/* ══════════════════════════════════════════════
   HERO — Animated Gradient + Crossfade Slideshow
══════════════════════════════════════════════ */

/* Animated gradient keyframes */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  margin-top: 60px;
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: #0e2a31;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 60px 60px 60px;
  position: relative;
  overflow: hidden;
}

/* ── SLIDESHOW — smooth crossfade ── */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1), transform 7s ease-out;
  z-index: 0;
  transform: scale(1.06);
}
.slide-bg.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1), transform 7s ease-out;
}
.slide-bg.leaving {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1), transform 1.6s ease-out;
}

/* Dark overlay */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,30,36,0.40) 0%,
    rgba(10,30,36,0.50) 35%,
    rgba(10,30,36,0.80) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Elevated z-index for all non-image children */
.hero-left > *:not(.slide-bg) {
  position: relative;
  z-index: 2;
}

/* Right edge fade */
.hero-left::after {
  content: '';
  position: absolute; right: -1px; top: 0; bottom: 0; width: 60px;
  background: linear-gradient(to right, transparent, var(--paper));
  z-index: 2;
}

/* ── HERO TEXT ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(55,159,175,0.3);
  border: 1px solid rgba(55,159,175,0.5);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--teal-mid);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.1s;
}

.hero-title {
  font-family: 'Bebas Neue', 'Cormorant Garamond', sans-serif;
  font-size: 72px; font-weight: 400;
  color: white;
  line-height: 1.0; margin-bottom: 8px;
  letter-spacing: 0.04em;
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.25s;
}
.hero-title strong {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400; font-size: 72px;
  color: var(--teal-mid);
  display: block; letter-spacing: 0.04em;
}

.hero-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 20px 0 40px;
  line-height: 1.7; max-width: 400px;
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.4s;
}

.hero-cta-group {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease both;
  animation-delay: 0.55s;
}

.slide-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 6px; min-height: 16px;
  transition: opacity 0.5s;
  animation: fadeIn 1s ease both;
  animation-delay: 0.05s;
}

/* Slide dots */
.slide-dots {
  display: flex; gap: 8px; margin-bottom: 20px;
  animation: fadeIn 1s ease both;
  animation-delay: 0.05s;
}
.slide-dot {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: none; padding: 0;
}
.slide-dot.active { background: white; width: 44px; }

/* Slide arrows */
.slide-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 0; right: 0; z-index: 3;
  display: flex; justify-content: space-between;
  padding: 0 16px; pointer-events: none;
}
.slide-arrow {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: white; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(8px);
  pointer-events: all; line-height: 1;
}
.slide-arrow:hover {
  background: rgba(255,255,255,0.30);
  border-color: white;
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ── HERO RIGHT — Animated Gradient ── */
.hero-right,
.hero-brochure-stage {
  background: linear-gradient(-45deg, var(--cream), #f0e6d8, #e4bfa8, #eaf6f8, #8ed4df, var(--teal));
  background-size: 500% 500%;
  animation: heroGradientShift 10s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-brochure-stage::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(55,159,175,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hb-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  position: relative; z-index: 1;
  max-width: 420px; width: 100%;
}
.hb-badge {
  background: var(--teal);
  color: white; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px; border-radius: 20px;
}
.hb-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(55,159,175,0.22);
  display: block; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  width: 100%;
}
.hb-img-wrap:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 28px 64px rgba(55,159,175,0.30);
}
.hb-img { width: 100%; height: auto; display: block; border-radius: 16px; }
.hb-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,30,36,0.85), transparent);
  padding: 20px 20px 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-radius: 0 0 16px 16px;
}
.hb-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: white;
}
.hb-cta {
  background: var(--teal); color: white;
  font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 8px;
  transition: background 0.15s;
}
.hb-img-wrap:hover .hb-cta { background: var(--teal-dark); }
.hb-desc {
  font-size: 12px; color: var(--ink-mid);
  text-align: center; line-height: 1.6;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  background: var(--teal); color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 16px rgba(55,159,175,0.4);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,159,175,0.5);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 14px;
  padding: 13px 28px; border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════ */
section { padding: 80px 0; }
.container,
.section-container {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
}
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 500;
  color: var(--ink); line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.75; max-width: 600px;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   PRODUCTS SECTION — 3D Tilt + Glow
══════════════════════════════════════════════ */
.products-section { background: white; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

/* Glow ring on hover (CSS part — JS controls the tilt transform) */
.product-card:hover {
  border-color: var(--teal);
  box-shadow:
    0 0 0 1px rgba(55,159,175,0.3),
    0 20px 48px rgba(55,159,175,0.18),
    0 8px 16px rgba(0,0,0,0.06);
}

/* Shimmer sweep on hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.45) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: 16px;
  z-index: 1;
}
.product-card { position: relative; }
.product-card:hover::after { opacity: 1; }

/* Card shadow animation */
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 20px 48px rgba(55,159,175,0.18); }
  50%       { box-shadow: 0 24px 60px rgba(55,159,175,0.28); }
}
.product-card:hover { animation: cardGlow 2s ease-in-out infinite; }

.product-img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; object-position: center;
  background: #f0f6f7; padding: 0;
  border-radius: 12px 12px 0 0;
}
.product-info { padding: 16px; }
.product-series {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 4px;
}
.product-name { font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.product-desc { font-size: 12px; color: var(--ink-light); line-height: 1.5; }
.product-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: var(--teal);
  margin-top: 10px;
}

/* ══════════════════════════════════════════════
   EDUCATION SECTION
══════════════════════════════════════════════ */
.edu-section { background: var(--warm); }
.edu-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}

.lesson-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
  display: flex;
}
.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}
.lesson-num {
  width: 72px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; flex-shrink: 0;
  color: white; font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
}
.lesson-num small {
  font-size: 10px; font-family: 'DM Sans', sans-serif;
  font-weight: 600; letter-spacing: 0.1em; opacity: 0.7;
}
.lesson-body { padding: 20px; flex: 1; }
.lesson-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.lesson-title { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.lesson-desc { font-size: 12.5px; color: var(--ink-mid); line-height: 1.6; }
.lesson-meta { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.lesson-meta span {
  font-size: 12px; color: var(--ink-light); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}

/* ══════════════════════════════════════════════
   SCHEDULE SECTION
══════════════════════════════════════════════ */
.schedule-section { background: white; }
.schedule-table {
  width: 100%; border-collapse: collapse;
  margin-top: 40px; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
}
.schedule-table th {
  background: var(--teal); color: white;
  padding: 14px 20px; text-align: left;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
}
.schedule-table td {
  padding: 14px 20px; font-size: 14px;
  border-bottom: 1px solid var(--border); color: var(--ink);
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--paper); }
.hours-badge {
  font-weight: 700; color: var(--teal-dark);
  background: var(--teal-light);
  padding: 4px 12px; border-radius: 20px; font-size: 13px;
}
.break-badge { color: var(--ink-light); font-size: 12px; }

/* ══════════════════════════════════════════════
   ORDER SECTION
══════════════════════════════════════════════ */
.order-section { background: linear-gradient(160deg, #0e2a31 0%, #1a4a55 100%); }
.order-section .section-title { color: white; }
.order-section .section-sub { color: rgba(255,255,255,0.65); }
.order-section .section-label { color: var(--teal-mid); }
.order-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.order-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 28px; color: white;
  transition: background 0.25s, transform 0.25s;
}
.order-step:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600;
  color: var(--teal-mid); opacity: 0.6;
  line-height: 1; margin-bottom: 12px;
}
.step-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.order-form-wrap {
  background: white; border-radius: 20px;
  padding: 40px; margin-top: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--ink-light); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
input, select, textarea {
  width: 100%; background: var(--paper);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--ink); font-family: 'DM Sans', sans-serif;
  font-size: 14px; padding: 11px 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(55,159,175,0.12);
}
textarea { resize: vertical; min-height: 80px; }
select option { background: white; }
.form-submit {
  background: var(--teal); color: white;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
  border: none; border-radius: 12px; padding: 15px 32px;
  cursor: pointer; transition: all 0.2s; width: 100%; margin-top: 20px;
  box-shadow: 0 4px 16px rgba(55,159,175,0.35);
}
.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,159,175,0.5);
}

/* ══════════════════════════════════════════════
   BONUS / ЦОЛНЫ SECTION — Count-up Animation
══════════════════════════════════════════════ */
.bonus-section {
  background: linear-gradient(160deg, #0e2a31 0%, #1a4a55 100%);
  padding: 80px 32px;
}
.bonus-section .section-label { color: var(--teal-mid); }
.bonus-section .section-title { color: white; }
.bonus-section .section-sub { color: rgba(255,255,255,0.6); }

.bonus-ranks {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 32px;
}
.br-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 24px 18px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.br-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(55,159,175,0.2);
}
.br-card.highlight { border-color: var(--teal); background: rgba(55,159,175,0.15); }
.br-card.gold { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); }
.br-card.gold:hover { border-color: var(--gold); box-shadow: 0 16px 40px rgba(201,168,76,0.2); }
.br-icon { font-size: 28px; margin-bottom: 10px; }
.br-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: white; margin-bottom: 6px;
}
.br-pv { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--teal-mid); margin-bottom: 10px; }
.br-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 14px; }
.br-bonus {
  font-size: 13px; color: white;
  background: rgba(55,159,175,0.3); border-radius: 20px;
  padding: 4px 14px; display: inline-block;
}
.br-card.gold .br-bonus { background: rgba(201,168,76,0.3); color: #ffd080; }

/* ── Count-up numbers ── */
.bonus-info-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; margin-top: 8px;
}
.bi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; padding: 20px 16px;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}
.bi-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }

.bi-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600;
  color: var(--teal-mid); line-height: 1; margin-bottom: 6px;
  transition: color 0.3s;
}
.bi-card:hover .bi-num { color: #8ed4df; }
.bi-label { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; }
.bi-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ══════════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════════ */
.video-section { background: var(--ink); padding: 80px 32px; }
.vs-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vs-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal-mid); margin-bottom: 12px;
}
.vs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 400; color: white;
  margin-bottom: 36px; line-height: 1.2;
}
.vs-player {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(55,159,175,0.3);
  aspect-ratio: 16/9; position: relative;
}
.vs-player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ══════════════════════════════════════════════
   NOTICE SECTION
══════════════════════════════════════════════ */
.notice-section { background: var(--paper); }
.notice-list { margin-top: 40px; }
.notice-item {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 24px; margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; color: inherit;
}
.notice-item:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(55,159,175,0.10);
  transform: translateX(4px);
}
.notice-badge {
  background: var(--teal); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 6px;
  flex-shrink: 0; margin-top: 2px;
}
.notice-badge.important { background: #e05252; }
.notice-title { font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.notice-meta { font-size: 12px; color: var(--ink-light); }

/* ══════════════════════════════════════════════
   LOCATION SECTION
══════════════════════════════════════════════ */
.location-section { background: white; }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 40px; align-items: start;
}
.location-detail {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px;
}
.loc-icon {
  width: 40px; height: 40px; background: var(--teal-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.loc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-light); margin-bottom: 3px; }
.loc-value { font-size: 15px; font-weight: 500; color: var(--ink); }
.map-placeholder {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.map-placeholder img { width: 100%; height: 350px; object-fit: cover; }

/* ══════════════════════════════════════════════
   FLOATING PRODUCTS (hero-right alt layout)
══════════════════════════════════════════════ */
.hero-products-stage::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(55,159,175,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.floating-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; width: 100%; max-width: 560px;
}
.fcard {
  background: white; border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 14px 10px 10px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.fcard:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(55,159,175,0.18);
  border-color: var(--teal); z-index: 2;
}
.fcard img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: contain; border-radius: 10px; background: var(--paper);
}
.fcard span {
  font-size: 10px; font-weight: 600; color: var(--ink-mid);
  text-align: center; line-height: 1.3; letter-spacing: 0.02em;
}

@keyframes floatUp {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.fcard-1 { animation: floatUp 3.8s ease-in-out infinite; }
.fcard-2 { animation: floatUp 4.2s ease-in-out 0.4s infinite; }
.fcard-3 { animation: floatUp 3.6s ease-in-out 0.8s infinite; }
.fcard-4 { animation: floatUp 4.5s ease-in-out 0.2s infinite; }
.fcard-5 { animation: floatUp 3.9s ease-in-out 0.6s infinite; }
.fcard-6 { animation: floatUp 4.1s ease-in-out 1.0s infinite; }
.fcard-7 { animation: floatUp 3.7s ease-in-out 0.3s infinite; }
.fcard-8 { animation: floatUp 4.3s ease-in-out 0.7s infinite; }

.hero-nav-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hero-nav-pills a {
  background: white; border: 1.5px solid var(--border);
  border-radius: 24px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; color: var(--ink-mid);
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.hero-nav-pills a:hover {
  background: var(--teal-light); border-color: var(--teal);
  color: var(--teal-dark); transform: translateY(-2px);
}
.quick-nav-title { display: none; }
.quick-cards { display: none; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 40px 32px;
  text-align: center; font-size: 13px; line-height: 1.8;
}
footer strong { color: white; }

/* ══════════════════════════════════════════════
   SUCCESS TOAST
══════════════════════════════════════════════ */
.success-toast {
  display: none;
  position: fixed; bottom: 32px; right: 32px;
  background: var(--teal); color: white;
  padding: 16px 24px; border-radius: 14px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 24px rgba(55,159,175,0.5);
  z-index: 200; animation: toastIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes toastIn {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ══════════════════════════════════════════════
   HAMBURGER / MOBILE NAV
══════════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--ink); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  z-index: 150; flex-direction: column;
  padding: 32px 28px; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; font-size: 18px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-phone {
  margin-top: 24px; background: var(--teal);
  color: white !important; text-align: center;
  padding: 16px; border-radius: 12px;
  font-size: 16px; font-weight: 700; border-bottom: none !important;
}
.mobile-nav .mobile-phone:hover { background: var(--teal-dark); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 32px; min-height: 50vh; }
  .hero-left::after { display: none; }
  .hero-title { font-size: 44px; }
  .hero-title strong { font-size: 44px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .order-steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .bonus-ranks { grid-template-columns: repeat(2,1fr); }
  .bonus-info-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .bonus-ranks { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 36px; }
  .hero-title strong { font-size: 36px; }
}
