*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* view toggle (no-JS fallback) */
@media (max-width: 768px){ .v-desktop{ display:none !important; } }
@media (min-width: 769px){ .v-mobile{ display:none !important; } }

/* ===== DESKTOP ===== */
.v-desktop *, .v-desktop *::before, .v-desktop *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.desktop {
  font-family: 'Inter', sans-serif;
  background: #0A0A0A;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.v-desktop .hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v-desktop #dots-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.v-desktop .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 42%,
    transparent 0%,
    rgba(10,10,10,0.55) 70%,
    rgba(10,10,10,0.9) 100%);
  z-index: 1;
  pointer-events: none;
}
.v-desktop .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 190px 24px 0;
}
.v-desktop .badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #111827 0%, #1C2840 100%);
  border: 1px solid rgba(180,150,60,0.28);
  border-radius: 10px;
  padding: 12px 22px;
  margin-bottom: 36px;
  position: relative; overflow: hidden;
  opacity: 0; animation:d-fadeUp .55s ease forwards .1s;
  cursor: default;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 4px 24px rgba(0,0,0,0.5),
    0 0 40px rgba(180,140,30,0.08);
}
.v-desktop .badge::after {
  content:''; position:absolute; top:0; left:-80%; width:50%; height:100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.04),transparent);
  animation:d-badgeSweep 5s ease-in-out infinite 2s; pointer-events:none;
}
@keyframes d-badgeSweep { 0%{left:-80%} 100%{left:180%} }
.v-desktop .badge-crown {
  flex-shrink:0;
  filter: drop-shadow(0 0 6px rgba(212,175,55,.6)) drop-shadow(0 0 2px rgba(248,224,138,.4));
  display:flex; align-items:center;
}
.v-desktop .badge-text { display:flex; align-items:center; gap:7px; font-size:14px; font-weight:500; letter-spacing:0.025em; white-space:nowrap; }
.v-desktop .badge-gold {
  background: linear-gradient(90deg,#A97C22 0%,#C9972A 15%,#F8E08A 30%,#FFF4C5 42%,#D4AF37 55%,#F8E08A 68%,#C79A2E 80%,#A97C22 100%);
  background-size:250% 100%;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; font-weight:600;
  animation:d-goldFlow 5s ease-in-out infinite;
}
@keyframes d-goldFlow { 0%{background-position:100% 0%} 50%{background-position:0% 0%} 100%{background-position:100% 0%} }
.v-desktop .site-logo-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: 2px 48px;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.v-desktop .site-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.v-desktop .site-logo-img {
  height: 110px;
  width: auto;
  display: block;
}
.v-desktop .site-logo-by {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.v-desktop .sub-headline {
  font-size: 50px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  opacity: 0;
  animation:d-fadeUp .55s ease forwards .25s;
  letter-spacing: -0.03em;
}
.v-desktop .main-headline {
  font-size: 80px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.32;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
.v-desktop .word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.v-desktop .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation:d-wordUp .85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes d-wordUp { to { transform: translateY(0); opacity: 1; } }
.v-desktop .stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation:d-fadeUp .55s ease forwards .55s;
}
.v-desktop .stat-cell {
  text-align: center;
  padding: 0 40px;
  position: relative;
}
.v-desktop .stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.v-desktop .stat-num {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.v-desktop .stat-gold {
  background: linear-gradient(90deg,#A97C22 0%,#C9972A 15%,#F8E08A 35%,#FFF4C5 50%,#D4AF37 65%,#F8E08A 80%,#A97C22 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:d-goldFlow 4s ease-in-out infinite;
}
.v-desktop .stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 8px;
}
.v-desktop .cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation:d-fadeUp .55s ease forwards .7s;
}
.v-desktop .cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ffffff; color: #0A0A0A;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 18px 38px;
  border-radius: 100px; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.v-desktop .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255,255,255,0.2);
  background: #F3F4F6;
}
.v-desktop .cta-btn:active { transform: translateY(-1px); }
.v-desktop .cta-arrow { display: inline-block; transition: transform .22s ease; }
.v-desktop .cta-btn:hover .cta-arrow { transform: translateX(5px); }
.v-desktop .proof { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.01em; }
.v-desktop .proof a {
  font-weight: 700; text-decoration: none;
  background: linear-gradient(90deg,#A97C22 0%,#C9972A 15%,#F8E08A 35%,#FFF4C5 50%,#D4AF37 65%,#F8E08A 80%,#A97C22 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:d-goldFlow 4s ease-in-out infinite;
}
.v-desktop .admits-strip {
  width: 100vw;
  overflow: hidden;
  margin-top: 64px;
  position: relative;
  opacity: 0;
  animation:d-fadeUp .6s ease forwards .88s;
  
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.v-desktop .admits-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, #0A0A0A 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.v-desktop .admits-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, #0A0A0A 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.v-desktop .admits-track {
  display: flex; gap: 20px; width: max-content;
  animation:d-marquee 210s linear infinite;
  will-change: transform;
}
.v-desktop .admits-strip:hover .admits-track { animation-play-state: paused; }
@keyframes d-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-dist, -1600px)); }
}
.v-desktop .admit-card {
  width: 320px; height: 400px; flex-shrink: 0;
  object-fit: cover; display: block; border-radius: 0;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  cursor: pointer;
  filter: none;
}
.v-desktop .admit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.7);
  filter: brightness(1) contrast(1.05);
}
@keyframes d-fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes d-ripple { to { transform: scale(1); opacity: 0; } }
.v-desktop .fold7 {
  background: #ffffff;
  padding: 120px 0 100px;
}
.v-desktop .fold7-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.v-desktop .fold7-headline { margin-bottom: 44px; }
.v-desktop .fold7-h-strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #000000;
  line-height: 60px;
  letter-spacing: -0.03em;
}
.v-desktop .fold7-h-light {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  line-height: 60px;
  letter-spacing: -0.03em;
}
.v-desktop .fold7-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.v-desktop .fold7-tab {
  display: inline-flex;
  align-items: center;
  padding: 13px 20px;
  border-radius: 9999px;
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.v-desktop .fold7-tab.active {
  background: #000000;
  color: #ffffff;
}
.v-desktop .fold7-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.v-desktop .fold7-cards.fading { opacity: 0; }
.v-desktop .pricing-card {
  background: linear-gradient(to bottom, #F6F4F2 0%, rgba(246,244,242,0.6) 100%);
  border: none;
  border-radius: 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}
.v-desktop .pricing-card.featured {
  border: 2px solid transparent;
  border-image: linear-gradient(to bottom, #2F1238, #EFEFEF) 1;
}
.v-desktop .pricing-card-wrap {
  position: relative;
  padding-top: 38px;
  display: flex;
  flex-direction: column;
}
.v-desktop .pricing-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 328px;
  height: 40px;
  background: #2F1238;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.v-desktop .pricing-body {
  padding: 36px 28px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v-desktop .pricing-name {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.v-desktop .pricing-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #858588;
  line-height: 1.55;
  margin-bottom: 0;
}
.v-desktop .pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 16px;
}
.v-desktop .pricing-current {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1;
}
.v-desktop .pricing-original {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #858588;
  text-decoration: line-through;
  line-height: 1;
}
.v-desktop .pricing-divider {
  border: none;
  border-top: 1px dashed #CACACA;
  margin: 0 0 16px;
}
.v-desktop .pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 16px;
}
.v-desktop .pricing-expand-btn {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2F1238;
  cursor: pointer;
  text-align: left;
  opacity: 0.75;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.v-desktop .pricing-expand-btn:hover { opacity: 1; }
.v-desktop .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2F1238;
  line-height: 20px;
}
.v-desktop .pricing-check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0;
}
.v-desktop .pricing-cta {
  width: 100%;
  height: 48px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.v-desktop .pricing-cta.outline {
  background: #ffffff;
  color: #000000;
  border: 1px solid #2F1238;
}
.v-desktop .pricing-cta.filled {
  background: #000000;
  color: #ffffff;
  border: none;
}
.v-desktop .pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.v-desktop .fold7-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #CACACA;
  border-radius: 0;
  padding: 20px;
}
.v-desktop .fold7-banner-icon { flex-shrink: 0; }
.v-desktop .fold7-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2F1238;
  line-height: 1.5;
}
.v-desktop .experts-banner {
  background: #000000;
  padding: 100px 24px 90px;
  text-align: center;
}
.v-desktop .experts-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.v-desktop .experts-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin: 0;
}
.v-desktop .experts-headline {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  font-style: normal;
}
.v-desktop .experts-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.v-desktop .experts-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}
.v-desktop .experts-cta {
  height: 52px;
  padding: 0 36px;
  background: #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v-desktop .experts-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}
.v-desktop .fold6 {
  background: #F6F4F2;
  padding: 100px 0;
}
.v-desktop .fold6-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.v-desktop .fold6-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #000000;
  line-height: 60px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.v-desktop .fold6-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #A5998C;
  margin-bottom: 48px;
}
.v-desktop .fold6-carousel {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 40px;
}
.v-desktop .fold6-carousel::before, .v-desktop .fold6-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 210px;
  z-index: 4;
  pointer-events: none;
}
.v-desktop .fold6-carousel::before {
  left: 0;
  background: linear-gradient(to right, #F6F4F2 0%, rgba(246,244,242,0) 100%);
}
.v-desktop .fold6-carousel::after {
  right: 0;
  background: linear-gradient(to left, #F6F4F2 0%, rgba(246,244,242,0) 100%);
}
.v-desktop .fold6-viewport {
  overflow: visible;
}
.v-desktop .fold6-track {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 10px 0 40px;
  padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
  animation:d-fold6Scroll 65s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
@keyframes d-fold6Scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--fold6-dist, -2280px)); }
}
.v-desktop .fold6-track.is-scrolling {
  animation-play-state: running;
}
.v-desktop .fold6-carousel:hover .fold6-track {
  animation-play-state: paused;
}
.v-desktop .fold6-arrow { display: none; }
.v-desktop .vas-card {
  flex-shrink: 0;
  width: 360px;
  height: 434px;
  background: #ffffff;
  border: 1px solid #EBEAF5;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 4px 4px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px 0 rgba(16, 24, 64, 0.05);
  transition: box-shadow 0.35s ease, height 0.35s ease, margin-bottom 0.35s ease;
  position: relative;
}
.v-desktop .vas-card:hover, .v-desktop .vas-card.active {
  box-shadow: 0 12px 40px 0 rgba(16, 24, 64, 0.24);
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to bottom, #000000, rgba(0,0,0,0)) 1;
}
.v-desktop .vas-card:hover {
  height: 514px;
  margin-bottom: -80px; 
  z-index: 2;
}
.v-desktop .vas-card.peeking {
  opacity: 0.7;
  height: 360px;
  pointer-events: none;
  cursor: default;
}
.v-desktop .vas-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.v-desktop .vas-img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}
.v-desktop .vas-card:hover .vas-img-wrap > img {
  transform: scale(1.06);
}
.v-desktop .vas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 6px;
}
.v-desktop .vas-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.v-desktop .vas-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: -0.01em;
}
.v-desktop .vas-body {
  padding: 24px 20px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.v-desktop .vas-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v-desktop .vas-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2F1238;
  line-height: 20px;
}
.v-desktop .vas-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.v-desktop .vas-cta {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  height: 48px;
  background: transparent;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #000000;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(76px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.v-desktop .vas-card:hover .vas-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.v-desktop .fold5 {
  background: #ffffff;
  padding: 120px 24px 120px;
}
.v-desktop .fold5-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.v-desktop .fold5-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #0A0A0A;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.v-desktop .fold5-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
}
.v-desktop .fold5-body {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}
.v-desktop .fold5-steps {
  flex: 0 0 50%;
  min-width: 0;
  box-sizing: border-box;
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.v-desktop .f5-timeline-track {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: rgba(223, 223, 223, 0.5);
  z-index: 0;
  pointer-events: none;
}
.v-desktop .f5-step {
  position: relative;
  z-index: 1;
  padding: 0 0 0 28px;
  cursor: pointer;
  transition: padding 0.38s ease, background-color 0.38s ease;
}
.v-desktop .f5-step.active {
  background: #F4F4F4;
  padding: 20px 28px 24px 24px;
}
.v-desktop .f5-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0A0A0A;
  z-index: 2;
  transform: scaleY(0);
  transform-origin: top center;
}
.v-desktop .f5-step.active .f5-bar-fill {
  animation:d-f5TimerFill 5s linear forwards;
}
@keyframes d-f5TimerFill {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
.v-desktop .f5-expandable {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1), opacity 0.32s ease;
}
.v-desktop .f5-step.active .f5-expandable {
  max-height: 260px;
  opacity: 1;
}
.v-desktop .f5-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #ABABAB;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.28s ease 0.1s, max-height 0.28s ease 0.1s;
}
.v-desktop .f5-step.active .f5-tag { opacity: 1; max-height: 24px; }
.v-desktop .f5-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  line-height: 1.3;
}
.v-desktop .f5-step.active .f5-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 10px;
}
.v-desktop .f5-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  margin-bottom: 22px;
}
.v-desktop .f5-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A0A0A;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v-desktop .f5-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.v-desktop .fold5-img-col {
  flex: 0 0 50%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: height 0.4s ease;
}
.v-desktop .fold5-arrow {
  position: absolute;
  top: 24px;
  left: -110px;
  width: 120px;
  pointer-events: none;
  opacity: 0.85;
}
.v-desktop .fold5-img-wrap {
  width: 100%;
  flex: 1;
  min-height: 0;
  background: #ffffff;
  border-radius: 27px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-desktop .fold5-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: opacity 0.35s ease;
}
.v-desktop .fold5-notes {
  margin-top: 52px;
}
.v-desktop .fold5-notes-card {
  border: 1px solid #E5E2DC;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-desktop .fold5-note {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v-desktop .fold5-sparkle {
  flex-shrink: 0;
}
.v-desktop .fold5-notes p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
}
.v-desktop .fold5-notes strong {
  font-weight: 700;
  color: #0A0A0A;
}
.v-desktop .fold4 {
  background: #F6F4F2;
  padding: 100px 24px 0;
}
.v-desktop .fold4-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.v-desktop .fold4-left {
  flex: 0 0 320px;
  padding-top: 28px;
}
.v-desktop .fold4-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}
.v-desktop .fold4-h1 strong {
  font-weight: 700;
  display: block;
}
.v-desktop .fold4-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 40px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v-desktop .fold4-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.v-desktop .fold4-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888888;
  margin-top: 12px;
}
.v-desktop .fold4-right {
  flex: 1;
  min-width: 0;
}
.v-desktop .m-item { border-bottom: 1px dashed rgba(0,0,0,0.18); }
.v-desktop .m-item:last-child { border-bottom: none; }
.v-desktop .m-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  text-align: left;
}
.v-desktop .m-q-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #AAAAAA;
  flex-shrink: 0;
  width: 20px;
}
.v-desktop .m-q-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  flex: 1;
}
.v-desktop .m-q-text strong { font-weight: 700; }
.v-desktop .m-icon {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.v-desktop .m-item.open .m-icon { transform: rotate(45deg); }
.v-desktop .m-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.v-desktop .m-item.open .m-body { max-height: 200px; opacity: 1; }
.v-desktop .m-ans {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  padding: 0 0 28px 40px;
  margin: 0;
}
.v-desktop .fold4b { background: #F6F4F2; padding: 100px 0 12px; position: relative; overflow: visible; }
.v-desktop .fold4-dark {
  background: #000317;
  padding: 120px 24px 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
@keyframes d-glowBreath {
  0%, 100% { transform: scale(1);    opacity: 0.50; }
  50%       { transform: scale(0.55); opacity: 0.22; }
}
.v-desktop .fold4-glow {
  position: absolute;
  width: 502px; height: 350px;
  background: #163EAF;
  opacity: 0.5;
  filter: blur(190px);
  border-radius: 50%;
  top: 60px; left: calc(50% - 560px);
  pointer-events: none; z-index: 0;
  animation:d-glowBreath 6s ease-in-out infinite;
}
.v-desktop .fold4-glow-right {
  position: absolute;
  width: 502px; height: 350px;
  background: #163EAF;
  opacity: 0.5;
  filter: blur(190px);
  border-radius: 50%;
  top: 280px; right: -80px;
  pointer-events: none; z-index: 0;
  animation:d-glowBreath 6s ease-in-out infinite 3s;
}
.v-desktop .fold4b-inner { position: relative; z-index: 1; display: block; }
.v-desktop .fold4-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #ffffff;
  line-height: 60px;
  letter-spacing: -0.03em;
}
.v-desktop .fold4b .fold4-h1 {
  font-size: 45px;
  font-weight: 400;
  color: #ffffff;
  line-height: 60px;
  letter-spacing: -0.03em;
}
.v-desktop .fold4b .fold4-h1 strong { display: inline; font-weight: 400; }
.v-desktop .counsellor-carousel { margin-top: 60px; position: relative; }
.v-desktop .counsellor-viewport { overflow: hidden; }
.v-desktop .counsellor-track {
  display: flex; gap: 16px;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.v-desktop .c-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 5;
}
.v-desktop .c-arrow:hover { background: rgba(255,255,255,0.24); }
.v-desktop .c-arrow:disabled { opacity: 0.25; cursor: default; }
.v-desktop .c-prev { left: -56px; }
.v-desktop .c-next { right: -56px; }
.v-desktop .fold4-cta-section {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}
.v-desktop .fold4-cta-group {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.v-desktop .fold4-arrow-img {
  position: absolute; width: 72px; left: -96px; top: 28px;
  opacity: 0.85; pointer-events: none;
}
.v-desktop .fold4-cta {
  height: 56px; padding: 16px 60px;
  background: #ffffff; color: #000000;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700;
  border: none; border-radius: 100px; cursor: pointer; white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.v-desktop .fold4-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,255,255,0.2); }
.v-desktop .fold4b .fold4-cta-sub {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  line-height: 20px; color: #ffffff; text-align: center; opacity: 0.7; margin: 0;
}
.v-desktop .counsellor-card {
  position: relative;
  width: 300px; height: 380px;
  flex-shrink: 0; cursor: pointer;
  background-size: cover; background-position: top center;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; transition: transform 0.3s ease;
}
.v-desktop .counsellor-card:hover { transform: translateY(-6px); }
.v-desktop .counsellor-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 35%, transparent 65%);
  pointer-events: none;
}
.v-desktop .c-info { position: relative; z-index: 1; padding: 0 20px 28px; display: flex; flex-direction: column; }
.v-desktop .c-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}
.v-desktop .c-badge-reviews { font-weight: 400; opacity: 0.75; }
.v-desktop .c-name { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #ffffff; margin-bottom: 16px; letter-spacing: -0.01em; }
.v-desktop .c-details { font-family: 'Inter', sans-serif; font-size: 12px; line-height: 16px; font-weight: 400; color: rgba(255,255,255,0.65); }
.v-desktop .c-exp-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.v-desktop .c-exp-link:hover { opacity: 1; }
.v-desktop .c-exp-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.v-desktop .c-exp-link:hover { opacity: 1; }
.v-desktop .fold3 {
  background: #F6F4F2;
  margin-top: 80px;
  padding: 100px 24px 100px;
}
.v-desktop .fold3-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.v-desktop .fold3-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  color: #A0A1A4;
}
.v-desktop .rating-star, .v-desktop .rating-score {
  background: linear-gradient(90deg, #92400E 0%, #C97B1A 45%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v-desktop .rating-score {
  font-weight: 700;
}
.v-desktop .rating-sub {
  font-size: 20px;
  font-weight: 500;
  color: #A0A1A4;
}
.v-desktop .fold3-headlines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-desktop .fold3-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  line-height: 60px;
  letter-spacing: -0.03em;
}
.v-desktop .fold3-h1 strong {
  font-weight: 600;
}
.v-desktop .fold3-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #BEB8B2;
  line-height: 60px;
  letter-spacing: -0.03em;
}
.v-desktop .t-section {
  margin-top: 60px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.v-desktop .t-viewport {
  overflow: hidden;
  position: relative;
}
.v-desktop .t-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  padding-left: max(24px, calc((100vw - 1120px) / 2));
}
.v-desktop .t-track.is-scrolling {
  animation:d-reviewScroll 120s linear infinite;
}
.v-desktop .t-track.is-scrolling:hover { animation-play-state: paused; }
@keyframes d-reviewScroll {
  from { transform: translateX(-365px); }
  to   { transform: translateX(calc(-365px + var(--review-dist, -3285px))); }
}
.v-desktop .t-card {
  width: 349px;
  height: 512px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
}
.v-desktop .t-video-card {
  background: #0A0A0A;
  position: relative;
  height: 340px;
  align-self: flex-start;
  overflow: hidden;
}
.v-desktop .tv-full-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.v-desktop .tv-thumb-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.v-desktop .tv-thumb-layer video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.v-desktop .tv-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease, transform .15s ease;
}
.v-desktop .tv-play-btn:active {
  transform: translate(-50%, -50%) scale(0.93);
  background: rgba(255,255,255,0.28);
}
.v-desktop .tv-play-btn svg { margin-left: 3px; }
.v-desktop .tv-star-wrap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
}
.v-desktop .tv-video-star {
  background: #000000;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.v-desktop .tv-video-date {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 5px;
  letter-spacing: 0.3px;
}
.v-desktop .t-written-card {
  background: #FFFFFF;
  border: 1px solid #CACACA;
  border-radius: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: flex-start;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s cubic-bezier(0.22,1,0.36,1);
}
.v-desktop .t-written-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(180, 140, 64, 0.12) 0%,
    rgba(180, 140, 64, 0.04) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.v-desktop .t-written-card:hover::before { opacity: 1; }
.v-desktop .t-written-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.v-desktop .tw-top, .v-desktop .tw-divider, .v-desktop .tw-footer { position: relative; z-index: 1; }
.v-desktop .tw-top { display: flex; flex-direction: column; gap: 16px; }
.v-desktop .tw-avatar-row { display: flex; align-items: center; gap: 12px; }
.v-desktop .tw-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.v-desktop .tw-avt-init {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #F2F2F2;
  color: #1A1A1A;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.v-desktop .tw-name-block { display: flex; flex-direction: column; gap: 2px; }
.v-desktop .tw-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600;
  color: #000000; line-height: 1.3;
}
.v-desktop .tw-uni {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  font-style: italic;
  color: #555555; line-height: 1.3;
}
.v-desktop .tw-tag {
  display: inline-flex; align-items: center;
  background: #000000; border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px; font-weight: 700; color: #ffffff;
  align-self: flex-start;
}
.v-desktop .tw-review {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400;
  font-style: italic;
  color: #555555; line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-desktop .tw-read-more {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; color: #555555;
  padding: 2px 0 0; text-decoration: underline; display: block;
}
.v-desktop .tw-divider {
  border-top: 1px dashed rgba(0,0,0,0.2);
  margin-top: 24px;
  margin-bottom: 16px;
}
.v-desktop .tw-footer { display: flex; flex-direction: column; gap: 4px; }
.v-desktop .tw-course {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; color: #121317;
}
.v-desktop .tw-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 400; color: #888888;
}
.v-desktop .t-more-card {
  position: relative;
  flex-shrink: 0;
}
.v-desktop .t-stack-3 {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid #CACACA;
  transform: rotate(6deg) translateY(10px);
  transform-origin: bottom center;
  z-index: 0;
  opacity: 0.5;
}
.v-desktop .t-stack-2 {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid #CACACA;
  transform: rotate(3deg) translateY(5px);
  transform-origin: bottom center;
  z-index: 1;
  opacity: 0.75;
}
.v-desktop .t-more-inner {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid #CACACA;
  overflow: hidden;
  z-index: 2;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v-desktop .t-more-frosted {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  text-align: center;
  z-index: 3;
}
.v-desktop .t-more-num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.03em;
  line-height: 1;
}
.v-desktop .t-more-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0,0,0,0.55);
  line-height: 22px;
}
.v-desktop .t-more-cta {
  margin-top: 6px;
  background: transparent;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 100px;
  border: 1.5px solid #000000;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.v-desktop .t-more-cta:hover {
  background: #000000;
  color: #ffffff;
}
.v-desktop .alumni-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.v-desktop .alumni-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4A4A4A;
  text-align: center;
}
.v-desktop .alumni-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 56px;
  padding: 0 132px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.v-desktop .alumni-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}
.v-desktop .alumni-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.v-desktop .fold2 {
  background: #F6F4F2;
  margin-top: 80px;
  padding: 100px 24px 100px;
}
.v-desktop .fold2-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.v-desktop .fold2-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #000000;
  line-height: 60px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.v-desktop .fold2-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  line-height: 60px;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.v-desktop .logo-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
  
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.v-desktop .logo-row-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.v-desktop .logo-row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation:d-logoLeft 38s linear infinite;
  will-change: transform;
}
@keyframes d-logoLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--logo-row-dist, -2100px)); }
}
.v-desktop .logo-card {
  width: 205px;
  height: 132px;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.v-desktop .logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.v-desktop .logo-card img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}
.v-desktop .logo-card.vw { background: #ffffff; }
.v-desktop .logo-card.vw img { opacity: 0.6; }
.v-desktop .fold2-cta-wrap {
  display: flex;
  justify-content: center;
}
.v-desktop .fold2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 109px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.v-desktop .fold2-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
  background: #1a1a1a;
}
.v-desktop .fold2-cta:active { transform: translateY(-1px); }
.v-desktop .diyk-wrap {
  margin-top: 40px;
  margin-bottom: 24px;
}
.v-desktop .diyk-badge {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 30px;
  background: #ffffff;
  border-radius: 4px;
  padding: 10px 10px 10px 10px;
  gap: 0;
  flex-shrink: 0;
  position: relative;
}
.v-desktop .diyk-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(to right, #B28C40 0%, rgba(153,106,19,0.30) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.v-desktop .diyk-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: 8px;
}
.v-desktop .diyk-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #957331;
  white-space: nowrap;
  line-height: 1;
}
.v-desktop .info-strips {
  margin-top: 0;
}
.v-desktop .info-point {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.55;
  padding: 18px 0;
}
.v-desktop .info-point strong {
  font-weight: 700;
}
.v-desktop .info-dash {
  border: none;
  border-top: 1.5px dashed rgba(0,0,0,0.18);
  margin: 0;
}
.v-desktop .fold8 {
  background: #FFFFFF;
  padding: 100px 0 100px;
  
}
.v-desktop .fold8-head {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 60px;
}
.v-desktop .fold8-h { font-family: 'Inter', sans-serif; margin: 0; }
.v-desktop .fold8-line1 {
  display: block;
  font-size: 45px;
  line-height: 60px;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.03em;
}
.v-desktop .fold8-line2 {
  display: block;
  font-size: 45px;
  line-height: 60px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.03em;
}
.v-desktop .fold8-cards {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  height: 400px;            
  padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
  padding-right: 0;
}
.v-desktop .q8card {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 265px;
  height: 290px;
  background: #FFFFFF;
  border: 1px solid #E0E0E3;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  will-change: width, height;

  transition:
    width        0.55s cubic-bezier(0.4, 0, 0.2, 1),
    height       0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    background   0.4s ease;
}
.v-desktop .q8wrap:hover .q8card {
  width: 360px;
  height: 400px;
  border-color: transparent;
  background: #FFFFFF;
  box-shadow: none;
}
.v-desktop .q8text {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 40px 22px 0 28px;
  z-index: 3;
}
.v-desktop .q8q {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: -0.06em;
}
.v-desktop .q8a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  
  transition:
    opacity   0.12s ease 0s,
    transform 0.12s ease 0s;
}
.v-desktop .q8a strong {
  font-weight: 700;
  color: #000000;
}
.v-desktop .q8wrap:hover .q8a {
  opacity: 1;
  transform: translateY(0);
  
  transition:
    opacity   0.35s ease 0.3s,
    transform 0.4s  cubic-bezier(0.4, 0, 0.2, 1) 0.28s;
}
.v-desktop .q8img-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 227px;
  height: 149px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  z-index: 2;
  transition: width  0.55s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.v-desktop .q8wrap:hover .q8img-br { width: 237px; height: 159px; }
.v-desktop .q8wrap:hover .q8img--visa { width: 160px; height: 184px; }
.v-desktop .q8wrap:hover .q8img--deadline { width: 220px; height: 138px; }
.v-desktop .q8wrap:hover .q8img--landing { width: 160px; height: 173px; }
.v-desktop .q8wrap {
  position: relative;
  flex-shrink: 0;
  align-self: flex-start; 
}
.v-desktop .q8glow {
  position: absolute;
  inset: -5px;             
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.45s ease;
}
.v-desktop .q8wrap:hover .q8glow {
  opacity: 1;
}
.v-desktop .q8wrap--admit .q8glow {
  background: linear-gradient(135deg,
    rgba(168, 130, 255, 0.32)  0%,
    rgba(255, 150, 200, 0.26) 40%,
    rgba(255, 190, 150, 0.22) 70%,
    rgba(255, 220, 170, 0.15) 100%);
}
.v-desktop .q8wrap--visa .q8glow {
  background: linear-gradient(135deg,
    rgba(90,  160, 255, 0.30)  0%,
    rgba(120, 220, 230, 0.24) 45%,
    rgba(190, 160, 255, 0.20) 75%,
    rgba(220, 200, 255, 0.12) 100%);
}
.v-desktop .q8wrap--deadline .q8glow {
  background: linear-gradient(135deg,
    rgba(255, 185, 90,  0.30)  0%,
    rgba(255, 135, 170, 0.24) 45%,
    rgba(210, 130, 255, 0.20) 75%,
    rgba(230, 200, 255, 0.12) 100%);
}
.v-desktop .q8wrap--landing .q8glow {
  background: linear-gradient(135deg,
    rgba(80,  210, 175, 0.30)  0%,
    rgba(90,  185, 255, 0.24) 45%,
    rgba(130, 225, 200, 0.20) 75%,
    rgba(170, 235, 215, 0.12) 100%);
}
.v-desktop .q8img--visa { width: 150px; height: 174px; }
.v-desktop .q8img--deadline { width: 210px; height: 128px; }
.v-desktop .q8img--landing { width: 150px; height: 163px; }
.v-desktop .q8wrap--always-on .q8card {
  width: 360px;
  height: 400px;
  border-color: transparent;
}
.v-desktop .q8wrap--always-on .q8glow {
  opacity: 1;
}
.v-desktop .q8wrap--always-on .q8a {
  opacity: 1;
  transform: translateY(0);
  
  transition:
    opacity   0.35s ease 0.3s,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.28s;
}
.v-desktop .q8wrap--always-on .q8img-br {
  width: 237px;
  height: 159px;
}
.v-desktop .q8wrap--always-on .q8img-br {
  width: 237px;
  height: 159px;
}
.v-desktop .fold9 {
  background: #000000;
  padding: 100px 0 100px;
}
.v-desktop .fold9-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.v-desktop .fold9-left {
  flex: 0 0 430px;
}
.v-desktop .fold9-h {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}
.v-desktop .fold9-line1 {
  display: block;
  font-size: 45px;
  line-height: 60px;
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.v-desktop .fold9-line2 {
  display: block;
  font-size: 45px;
  line-height: 60px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.v-desktop .fold9-right {
  flex: 1;
  min-width: 0;
}
.v-desktop .faq-item {
  border-top: 1px dashed #606060;
}
.v-desktop .faq-item:first-child {
  border-top: none;
}
.v-desktop .faq-item:last-child {
  border-bottom: 1px dashed #606060;
}
.v-desktop .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  text-align: left;
}
.v-desktop .faq-q-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  flex: 1;
}
.v-desktop .faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.v-desktop .faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.v-desktop .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity    0.3s ease;
  opacity: 0;
}
.v-desktop .faq-item.open .faq-body {
  max-height: 300px;
  opacity: 1;
}
.v-desktop .faq-ans {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  padding-bottom: 28px;
  margin: 0;
}
.v-desktop .sc-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 900;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s ease;
}
.v-desktop .sc-backdrop.open { opacity: 1; pointer-events: auto; }
.v-desktop .sc-panel {
  position: fixed;
  top: 0; right: 0;
  width: 460px;
  height: 100dvh;
  background: #ffffff;
  z-index: 901;
  transform: translateX(110%);
  transition: transform 0.44s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: -12px 0 48px rgba(0,0,0,0.14);
  font-family: 'Inter', sans-serif;
}
.v-desktop .sc-panel.open { transform: translateX(0); }
.v-desktop .sc-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background 0.18s;
}
.v-desktop .sc-close:hover { background: rgba(255,255,255,0.2); }
.v-desktop .sc-header {
  padding: 32px 24px 24px;
  background: #0D0D0D;
  flex-shrink: 0;
}
.v-desktop .sc-c-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding-right: 44px; margin-bottom: 16px;
}
.v-desktop .sc-c-img {
  width: 70px; height: 88px;
  object-fit: cover; object-position: top;
  border-radius: 10px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.v-desktop .sc-c-name {
  font-size: 20px; font-weight: 700;
  color: #ffffff; margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.v-desktop .sc-c-rating {
  font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.v-desktop .sc-c-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.v-desktop .sc-c-tag {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.v-desktop .sc-c-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 14px;
}
.v-desktop .sc-c-bio {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7;
}
.v-desktop .sc-reviews-wrap {
  flex: 1; overflow-y: auto;
  padding: 20px 24px 12px;
}
.v-desktop .sc-reviews-wrap::-webkit-scrollbar { width: 4px; }
.v-desktop .sc-reviews-wrap::-webkit-scrollbar-thumb { background: #E0E0E0; border-radius: 4px; }
.v-desktop .sc-reviews-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #BBBBBB; margin-bottom: 14px;
}
.v-desktop .sc-rv {
  border: 1px solid #EFEFEF;
  border-radius: 14px;
  padding: 15px 15px 13px;
  margin-bottom: 12px;
}
.v-desktop .sc-rv-top {
  display: flex; align-items: flex-start;
  gap: 10px; margin-bottom: 10px;
}
.v-desktop .sc-rv-avatar {
  width: 40px; height: 40px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.v-desktop .sc-rv-name {
  font-size: 13px; font-weight: 600; color: #000; line-height: 1.3;
}
.v-desktop .sc-rv-course {
  font-size: 11px; color: #888; margin-top: 1px;
}
.v-desktop .sc-rv-college {
  font-size: 11px; font-weight: 600; color: #333; margin-top: 2px;
}
.v-desktop .sc-rv-stars {
  margin-left: auto; display: flex; gap: 2px; flex-shrink: 0; padding-top: 2px;
}
.v-desktop .sc-rv-stars svg { width: 12px; height: 12px; }
.v-desktop .sc-rv-meta {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #C0C0C0; margin-bottom: 7px;
}
.v-desktop .sc-rv-text {
  font-size: 13px; font-style: italic;
  color: #444; line-height: 1.65; margin-bottom: 10px;
}
.v-desktop .sc-rv-date {
  font-size: 11px; color: #CCCCCC; text-align: right;
}
.v-desktop .sc-cta-wrap {
  padding: 14px 24px 28px;
  border-top: 1px solid #F0EEF0;
  flex-shrink: 0;
}
.v-desktop .sc-cta-btn {
  width: 100%; height: 52px;
  background: #000; color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  border: none; border-radius: 100px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v-desktop .sc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.v-desktop .fold3-rating, .v-desktop .fold3-headlines {
  transform-origin: left center;
  will-change: transform, opacity;
}
.v-desktop .fold3-rating, .v-desktop .fold3-headlines {
  transition: opacity 0.75s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.v-desktop .t-section {
  transition: opacity 0.9s ease 0.15s, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  will-change: transform, opacity;
}
.v-desktop .alumni-cta-wrap {
  transition: opacity 0.7s ease 0.5s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  will-change: transform, opacity;
}
.v-desktop .t-viewport.is-scrolling {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0px, black 32px,
    black calc(100% - 32px), transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0px, black 32px,
    black calc(100% - 32px), transparent 100%
  );
}
.v-desktop .allrev-section {
  background: #ffffff;
  padding: 100px 24px 100px;
}
.v-desktop .allrev-inner {
  max-width: 740px;
  margin: 0 auto;
}
.v-desktop .allrev-rating-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #A0A1A4;
  margin-bottom: 14px;
}
.v-desktop .allrev-star, .v-desktop .allrev-score {
  background: linear-gradient(90deg, #92400E 0%, #C97B1A 45%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.v-desktop .allrev-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #000;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.v-desktop .allrev-h1 strong { font-weight: 600; }
.v-desktop .allrev-card {
  background: #fff;
  border: 1px solid #CACACA;
  border-radius: 0;
  padding: 24px;
  margin-bottom: 16px;
  animation:d-allrevFadeIn 0.3s ease both;
}
@keyframes d-allrevFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v-desktop .allrev-avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.v-desktop .allrev-avt-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #F2F2F2;
}
.v-desktop .allrev-avt-init {
  width: 56px; height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #F2F2F2;
  color: #1A1A1A;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
}
.v-desktop .allrev-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #111; line-height: 1.3;
}
.v-desktop .allrev-city {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #777; line-height: 1.3; margin-top: 2px;
}
.v-desktop .allrev-tag {
  display: inline-flex; align-items: center;
  background: #000; border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.v-desktop .allrev-review-wrap { margin-bottom: 6px; }
.v-desktop .allrev-review {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: #444;
  line-height: 22px; font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-desktop .allrev-review.expanded {
  display: block; overflow: visible; -webkit-line-clamp: unset;
}
.v-desktop .allrev-readmore {
  display: inline-block; margin-top: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; color: #000;
  text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer; background: none; border: none; padding: 0;
  font-style: normal;
}
.v-desktop .allrev-readmore.hidden { display: none; }
.v-desktop .allrev-divider {
  border: none; border-top: 1px solid #E8E8E8; margin: 14px 0 12px;
}
.v-desktop .allrev-course {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; color: #111;
}
.v-desktop .allrev-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #888; margin-top: 3px;
}
.v-desktop .allrev-load-wrap { text-align: center; margin-top: 8px; }
.v-desktop .allrev-load-btn {
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; color: #1A1A1A;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 0;
}
.v-desktop .allrev-load-btn:hover { text-decoration: underline; }
.v-desktop .pricing-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
.v-desktop .pricing-radio-opt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  user-select: none;
}
.v-desktop .radio-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-top: 2px;
}
.v-desktop .pricing-radio-opt.active .radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
}
@keyframes d-textShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.v-desktop .pricing-radio-opt.active .radio-label {
  font-weight: 600;
  background: linear-gradient(90deg, #000 30%, #888 50%, #000 70%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:d-textShimmer 3s ease-in-out 0.8s infinite;
}
.v-desktop .elite-subdesc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #858588;
  line-height: 1.55;
  margin-top: 8px;
}
.v-desktop .elite-subdesc:empty {
  margin-top: 0;
}
.v-desktop .rc-backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.35);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.v-desktop .rc-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.v-desktop .rc-curtain {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 500px;
  background: #F6F4F2;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 48px rgba(0,0,0,0.14);
}
.v-desktop .rc-curtain.open {
  transform: translateX(0);
}
.v-desktop .rc-header {
  position: sticky;
  top: 0;
  background: #F6F4F2;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
  z-index: 2;
}
.v-desktop .rc-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
}
.v-desktop .rc-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.v-desktop .rc-close:hover { background: rgba(0,0,0,0.07); }
.v-desktop .rc-scroll {
  overflow-y: auto;
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v-desktop .rc-scroll::-webkit-scrollbar { width: 4px; }
.v-desktop .rc-scroll::-webkit-scrollbar-thumb { background: #D0CEC9; border-radius: 4px; }
.v-desktop .rc-scroll .t-written-card {
  width: auto;
  align-self: auto;
  height: auto;
  cursor: default;
  transform: none !important;
  box-shadow: none !important;
}
.v-desktop .rc-scroll .t-written-card:hover {
  transform: none !important;
  box-shadow: none !important;
}
.v-desktop .rc-scroll .tw-review {
  -webkit-line-clamp: unset;
  overflow: visible;
  display: block;
}
.v-desktop .rc-action-card {
  background: #1A1A1A;
  border-radius: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.v-desktop .rc-action-num {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.v-desktop .rc-action-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.v-desktop .rc-action-cta {
  margin-top: 16px;
  display: inline-block;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.v-desktop .rc-action-cta:hover {
  background: #F0F0F0;
}
.v-desktop .rc-action-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
@keyframes d-rcCardFlash {
  0%   { background: #FFFFFF; }
  25%  { background: #FFF3DC; }
  100% { background: #FFFFFF; }
}
.v-desktop .rc-flash {
  animation:d-rcCardFlash 1.8s ease-out forwards;
}
.v-desktop .vro-backdrop {position:fixed;inset:0;background:rgba(0,0,0,0);z-index:9000;display:flex;align-items:center;justify-content:center;pointer-events:none;transition:background .35s ease}
.v-desktop .vro-backdrop.vro-open {background:rgba(0,0,0,.82);pointer-events:all}
.v-desktop .vro-sheet {width:100%;max-width:380px;background:#000;border-radius:20px;position:relative;overflow:hidden;display:flex;flex-direction:column;transform:translateY(24px) scale(.96);opacity:0;transition:transform .42s cubic-bezier(.32,.72,0,1),opacity .35s ease;max-height:94vh}
.v-desktop .vro-backdrop.vro-open .vro-sheet {transform:translateY(0) scale(1);opacity:1}
.v-desktop .vro-video-wrap {position:relative;width:100%;aspect-ratio:9/16;max-height:78vh}
.v-desktop .vro-progress-track {position:absolute;top:14px;left:16px;right:56px;height:3px;background:rgba(255,255,255,.3);z-index:10;overflow:hidden;border-radius:2px}
.v-desktop .vro-progress-fill {height:100%;width:0%;background:#fff;border-radius:2px}
.v-desktop .vro-close {position:absolute;top:8px;right:10px;width:36px;height:36px;background:rgba(0,0,0,.45);border:none;border-radius:50%;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center}
.v-desktop .vro-mute {position:absolute;bottom:16px;right:14px;width:38px;height:38px;background:rgba(0,0,0,.5);border:none;border-radius:50%;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center}
.v-desktop .vro-video {width:100%;height:100%;object-fit:cover;display:block}
.v-desktop .vro-time {position:absolute;bottom:60px;left:14px;color:rgba(255,255,255,.75);font-size:11px;font-weight:500;letter-spacing:.3px;z-index:10;pointer-events:none}
.v-desktop .vro-cta-bar {background:#fff;padding:16px 20px 20px;display:flex;align-items:center;justify-content:center}
.v-desktop .vro-cta-btn {background:#0A0A0A;color:#fff;font-size:15px;font-weight:600;padding:14px 28px;border:none;border-radius:100px;cursor:pointer;text-decoration:none;display:inline-block}
/* ===== MOBILE ===== */
.v-mobile *, .v-mobile *::before, .v-mobile *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.mobile {
  font-family: 'Inter', sans-serif;
  background: #0A0A0A;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.v-mobile .hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.v-mobile #dots-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.v-mobile .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 38%,
    transparent 0%,
    rgba(10,10,10,0.6) 65%,
    rgba(10,10,10,0.92) 100%);
  z-index: 1;
  pointer-events: none;
}
.v-mobile .site-logo-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: 24px 20px;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.v-mobile .site-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.v-mobile .site-logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.v-mobile .site-logo-by {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.v-mobile .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 144px 24px 0;
  text-align: center;
}
.v-mobile .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #111827 0%, #1C2840 100%);
  border: 1px solid rgba(180,150,60,0.28);
  border-radius: 8px;
  padding: 9px 16px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation:m-fadeUp .5s ease forwards .1s;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 4px 20px rgba(0,0,0,0.5),
    0 0 32px rgba(180,140,30,0.07);
}
.v-mobile .badge::after {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation:m-badgeSweep 5s ease-in-out infinite 2s;
  pointer-events: none;
}
@keyframes m-badgeSweep { 0%{left:-80%} 100%{left:180%} }
.v-mobile .badge-crown {
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(212,175,55,.5)) drop-shadow(0 0 2px rgba(248,224,138,.3));
  display: flex;
  align-items: center;
}
.v-mobile .badge-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.v-mobile .badge-gold {
  background: linear-gradient(90deg,#A97C22 0%,#C9972A 15%,#F8E08A 30%,#FFF4C5 42%,#D4AF37 55%,#F8E08A 68%,#C79A2E 80%,#A97C22 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation:m-goldFlow 5s ease-in-out infinite;
}
@keyframes m-goldFlow { 0%{background-position:100% 0%} 50%{background-position:0% 0%} 100%{background-position:100% 0%} }
.v-mobile .main-headline {
  text-align: center;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  opacity: 0;
  animation:m-fadeUp .6s ease forwards .25s;
}
.v-mobile .hl-1 {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 40px;
}
.v-mobile .hl-2 {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 70px;
}
.v-mobile .hl-3 {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 70px;
  white-space: nowrap;
}
.v-mobile .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  row-gap: 14px;
  margin-bottom: 48px;
  opacity: 0;
  animation:m-fadeUp .5s ease forwards .48s;
}
.v-mobile .stat-cell {
  padding: 10px 0;
  text-align: center;
  position: relative;
}
.v-mobile .stat-cell:nth-child(odd) { padding-right: 12px; }
.v-mobile .stat-cell:nth-child(even) { padding-left: 12px; }
.v-mobile .stat-cell:nth-child(1)::after, .v-mobile .stat-cell:nth-child(3)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.v-mobile .stat-num {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.v-mobile .stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 5px;
  white-space: nowrap;
}
.v-mobile .cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: calc(100% + 8px);
  margin: 0 -4px;
  opacity: 0;
  animation:m-fadeUp .5s ease forwards .62s;
}
.v-mobile .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #ffffff;
  color: #0A0A0A;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.v-mobile .cta-btn:active {
  transform: scale(0.98);
}
.v-mobile .cta-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.v-mobile .cta-btn:hover .cta-arrow { transform: translateX(4px); }
.v-mobile .proof {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}
.v-mobile .proof a {
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #A97C22 0%, #C9972A 15%, #F8E08A 35%, #FFF4C5 50%, #D4AF37 65%, #F8E08A 80%, #A97C22 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:m-goldFlow 4s ease-in-out infinite;
}
.v-mobile .admits-strip {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  z-index: 3;
  opacity: 0;
  animation:m-fadeUp .6s ease forwards .78s;
}
.v-mobile .admits-strip::-webkit-scrollbar { display: none; }
.v-mobile .admits-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 0;
  animation:m-marquee 180s linear infinite;
}
.v-mobile .admits-strip:hover .admits-track { animation-play-state: paused; }
@keyframes m-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-dist, -900px)); }
}
.v-mobile .admit-card {
  width: 240px;
  height: 315px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: none;
  transition: transform .3s ease;
}
.v-mobile .admit-card:hover {
  transform: translateY(-5px);
  filter: brightness(1) contrast(1.05);
}
@keyframes m-fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v-mobile .fold2 {
  background: #F6F4F2;
  padding: 48px 0 80px;
}
.v-mobile .fold2-inner-m {
  padding: 0 24px;
}
.v-mobile .fold2-h1-m {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.v-mobile .fold2-h2-m {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.015em;
}
.v-mobile .logo-row-wrap-m {
  width: 100%;
  overflow: hidden;
  margin-bottom: 32px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.v-mobile .logo-row-m {
  display: flex;
  gap: 12px;
  width: max-content;
  animation:m-logoScroll 45s linear infinite;
  will-change: transform;
}
@keyframes m-logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--logo-dist, -1440px)); }
}
.v-mobile .logo-card-m {
  width: 148px;
  height: 90px;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 16px;
}
.v-mobile .logo-card-m img {
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
}
.v-mobile .fold2-cta-m {
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 17px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-bottom: 36px;
  transition: transform 0.2s ease;
}
.v-mobile .fold2-cta-m:active { transform: scale(0.98); }
.v-mobile .diyk-wrap-m {
  margin-bottom: 16px;
}
.v-mobile .diyk-badge-m {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 6px;
  padding: 7px 12px;
  position: relative;
}
.v-mobile .diyk-badge-m::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(to right, #B28C40 0%, rgba(153,106,19,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.v-mobile .diyk-icon-m {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.v-mobile .diyk-text-m {
  font-size: 13px;
  font-weight: 600;
  color: #957331;
  white-space: nowrap;
}
.v-mobile .info-strips-m {
  display: flex;
  flex-direction: column;
}
.v-mobile .info-strip-m:first-child {
  padding-bottom: 16px;
}
.v-mobile .info-strip-m + .info-strip-m {
  border-top: 1px dashed rgba(0,0,0,0.15);
  padding-top: 16px;
}
.v-mobile .info-strip-m p {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 20px;
}
.v-mobile .info-strip-m strong {
  font-weight: 700;
}
.v-mobile .fold3 {
  background: #ffffff;
  padding: 48px 0 60px;
}
.v-mobile .fold3-header {
  padding: 0 20px;
  margin-bottom: 32px;
}
.v-mobile .f3-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 500;
  color: #A0A1A4;
}
.v-mobile .f3-rating-star, .v-mobile .f3-rating-score {
  background: linear-gradient(90deg, #92400E 0%, #C97B1A 45%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v-mobile .f3-rating-score {
  font-size: 13px;
  font-weight: 700;
}
.v-mobile .f3-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.v-mobile .f3-h1 strong { font-weight: 700; }
.v-mobile .f3-h1 { margin-bottom: 3px; }
.v-mobile .f3-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #BEB8B2;
  line-height: 34px;
  letter-spacing: -0.025em;
}
.v-mobile .t-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0 24px 20px;
  scroll-padding-left: 20px;
  margin-bottom: 32px;
}
.v-mobile .t-scroll::-webkit-scrollbar { display: none; }
.v-mobile .tm-video {
  width: 280px;
  height: 420px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}
.v-mobile .tm-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v-mobile .tm-video-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.v-mobile .tm-video-star {
  background: #000000;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.v-mobile .tm-written {
  width: 280px;
  height: 420px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #CACACA;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.v-mobile .tm-avatar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.v-mobile .tm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.v-mobile .tm-name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}
.v-mobile .tm-uni {
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  color: #555;
  line-height: 1.3;
}
.v-mobile .tm-review-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #000000;
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.v-mobile .tm-video video {
  pointer-events: none;
}
.v-mobile .tm-video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.v-mobile .tm-video-star-wrap {
  position: absolute;
  bottom: 126px;
  left: 20px;
  z-index: 2;
}
.v-mobile .tm-review {
  font-size: 12px;
  font-style: italic;
  color: #555555;
  line-height: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-mobile .tm-divider {
  border: none;
  border-top: 1px solid #D0D0D0;
  margin: 14px -4px 10px;
}
.v-mobile .tm-course {
  font-size: 12px;
  font-weight: 700;
  color: #121317;
}
.v-mobile .tm-meta {
  font-size: 11px;
  font-weight: 400;
  color: #888888;
  margin-top: 3px;
}
.v-mobile .fold5-m {
  background: #ffffff;
  padding: 48px 24px 52px;
}
.v-mobile .f5-m-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0A0A0A;
  line-height: 32px;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}
.v-mobile .f5-m-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 32px;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.v-mobile .f5-m-steps-wrap {
  position: relative;
}
.v-mobile .f5-m-track {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
}
.v-mobile .f5-m-step {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  transition: background 0.4s ease, border-radius 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}
.v-mobile .f5-m-step.active {
  background: #F4F4F4;
  border-radius: 12px;
  padding: 16px 16px 20px 20px;
  margin-bottom: 4px;
}
.v-mobile .f5-m-step-bar {
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 0;
  background: #0A0A0A;
  border-radius: 2px;
}
.v-mobile .f5-m-step.active .f5-m-step-bar {
  animation:m-f5StepFill 5s linear forwards;
}
@keyframes m-f5StepFill {
  from { height: 0%; }
  to   { height: 100%; }
}
.v-mobile .f5-m-step-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #0A0A0A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.v-mobile .f5-m-step-head {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  line-height: 1.35;
  max-height: 60px;
  padding: 14px 0;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}
.v-mobile .f5-m-step.active .f5-m-step-head {
  max-height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
.v-mobile .f5-m-step-expand {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.6, 1), opacity 0.22s ease;
}
.v-mobile .f5-m-step.active .f5-m-step-expand {
  max-height: 620px;
  opacity: 1;
  transition: max-height 0.52s cubic-bezier(0, 0, 0.2, 1), opacity 0.3s ease 0.12s;
}
.v-mobile .f5-m-expand-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #E8E5E0;
}
.v-mobile .f5-m-expand-img img {
  width: 100%; height: 190px;
  object-fit: cover; object-position: top;
  display: block;
}
.v-mobile .f5-m-expand-img-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding-top: 16px;
}
.v-mobile .f5-m-expand-desc {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  padding-top: 12px;
}
.v-mobile .f5-m-expand-cta {
  width: 100%;
  background: #0A0A0A;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-top: 16px;
}
.v-mobile .f5-m-notes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v-mobile .f5-m-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.v-mobile .f5-m-note-icon { flex-shrink: 0; margin-top: 1px; }
.v-mobile .f5-m-note p {
  font-size: 13px;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
}
.v-mobile .f5-m-note strong { font-weight: 700; color: #0A0A0A; }
.v-mobile .fold4-m {
  background: #000317;
  padding: 80px 0 52px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.v-mobile .f4-glow-left {
  position: absolute;
  width: 280px; height: 240px;
  background: #002C85;
  filter: blur(90px);
  border-radius: 50%;
  top: 20px; left: -80px;
  pointer-events: none;
  animation:m-glowPulseLeft 7s ease-in-out infinite;
}
.v-mobile .f4-glow-right {
  position: absolute;
  width: 240px; height: 220px;
  background: #002C85;
  filter: blur(90px);
  border-radius: 50%;
  top: 200px; right: -80px;
  pointer-events: none;
  animation:m-glowPulseRight 9s ease-in-out infinite;
}
@keyframes m-glowPulseLeft {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.2);  opacity: 0.95; }
}
@keyframes m-glowPulseRight {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0.85; }
}
.v-mobile .f4-inner {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.v-mobile .f4-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 34px;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.v-mobile .f4-h1 strong { font-weight: 700; }
.v-mobile .f4-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px 4px;
  margin-bottom: 40px;
}
.v-mobile .f4-scroll::-webkit-scrollbar { display: none; }
.v-mobile .f4-card {
  width: 265px;
  height: 344px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.v-mobile .f4-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.v-mobile .f4-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.v-mobile .f4-c-info { padding: 0 16px 20px; }
.v-mobile .f4-c-rating {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}
.v-mobile .f4-c-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.v-mobile .f4-c-details {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  line-height: 17px;
}
.v-mobile .f4-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.v-mobile .f4-sep {
  border: none;
  border-top: 1px dashed rgba(101,101,101,0.6);
  margin: 24px 0;
}
.v-mobile .f4-cta {
  width: 100%;
  background: #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 17px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.v-mobile .f4-cta:active { transform: scale(0.98); }
.v-mobile .f4-cta-sub {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.01em;
}
.v-mobile .f4-insight {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-mobile .f4-insight-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v-mobile .f4-insight-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  animation:m-iconShimmer 4s ease-in-out infinite;
}
@keyframes m-iconShimmer {
  0%, 100% { opacity: 0.7; filter: brightness(1); }
  50%       { opacity: 1;   filter: brightness(1.5); }
}
.v-mobile .f4-insight-diyk {
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffffff 0%, #888 25%, #ffffff 50%, #aaaaaa 75%, #ffffff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.01em;
  animation:m-diykFlow 4s ease-in-out infinite;
}
@keyframes m-diykFlow {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 0%   0%; }
  100% { background-position: 100% 0%; }
}
.v-mobile .f4-insight-text {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 20px;
}
.v-mobile .f4-insight-text strong {
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.v-mobile .tm-more {
  width: 280px;
  height: 420px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
}
.v-mobile .tm-stack-3 {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid #CACACA;
  transform: rotate(6deg) translateY(8px);
  transform-origin: bottom center;
  z-index: 0;
  opacity: 0.5;
}
.v-mobile .tm-stack-2 {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid #CACACA;
  transform: rotate(3deg) translateY(4px);
  transform-origin: bottom center;
  z-index: 1;
  opacity: 0.75;
}
.v-mobile .tm-more-inner {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid #CACACA;
  overflow: hidden;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v-mobile .tm-more-frosted {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
  z-index: 3;
}
.v-mobile .tm-more-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.03em;
  line-height: 1;
}
.v-mobile .tm-more-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.55);
  line-height: 20px;
}
.v-mobile .tm-more-cta {
  margin-top: 4px;
  background: transparent;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid #000000;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.v-mobile .tm-more-cta:active {
  background: #000000;
  color: #ffffff;
}
.v-mobile .alumni-wrap-m {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.v-mobile .alumni-cta-m {
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 17px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.v-mobile .alumni-cta-m:active { transform: scale(0.98); }
.v-mobile .alumni-sub-m {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  text-align: center;
  line-height: 18px;
}
.v-mobile .fold6-m {
  background: #F6F4F2;
  padding: 48px 0 60px;
}
.v-mobile .f6-head-m {
  padding: 0 24px;
  margin-bottom: 28px;
}
.v-mobile .f6-h1-m {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.015em;
}
.v-mobile .f6-h2-m {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.015em;
}
.v-mobile .f6-h2-m strong { font-weight: 700; }
.v-mobile .vas-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px 4px;
  scroll-padding-left: 24px;
}
.v-mobile .vas-scroll::-webkit-scrollbar { display: none; }
.v-mobile .vas-card {
  width: 248px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #E5E2DE;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.v-mobile .vas-img-wrap {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  background: #1C2840;
}
.v-mobile .vas-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.v-mobile .vas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 80%);
  pointer-events: none;
}
.v-mobile .vas-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1;
}
.v-mobile .vas-icon {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}
.v-mobile .vas-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.v-mobile .vas-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.v-mobile .vas-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 0;
}
.v-mobile .vas-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  color: #444444;
  line-height: 1.5;
}
.v-mobile .vas-list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='6.5' stroke='%23999' stroke-width='1.2'/%3E%3Cpath d='M5.5 8l1.8 1.8 3.2-3.3' stroke='%23999' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.v-mobile .vas-cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: block;
  margin-top: auto;
  padding-top: 16px;
}
.v-mobile .fold9-m {
  background: #000000;
  padding: 52px 24px 60px;
}
.v-mobile .f9-head-m {
  margin-bottom: 40px;
}
.v-mobile .f9-line1-m {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  line-height: 42px;
  letter-spacing: -0.03em;
}
.v-mobile .f9-line2-m {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  line-height: 42px;
  letter-spacing: -0.03em;
}
.v-mobile .faq-item-m {
  border-top: 1px dashed rgba(255,255,255,0.3);
}
.v-mobile .faq-item-m:first-child {
  border-top: none;
}
.v-mobile .faq-item-m:last-child {
  border-bottom: 1px dashed rgba(255,255,255,0.3);
}
.v-mobile .faq-q-m {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
}
.v-mobile .faq-q-text-m {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  flex: 1;
}
.v-mobile .faq-icon-m {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.v-mobile .faq-item-m.open .faq-icon-m {
  transform: rotate(45deg);
}
.v-mobile .faq-body-m {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.v-mobile .faq-item-m.open .faq-body-m {
  max-height: 300px;
  opacity: 1;
}
.v-mobile .faq-ans-m {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  padding-bottom: 24px;
  margin: 0;
}
.v-mobile .fold8-m {
  background: #ffffff;
  padding: 48px 0 52px;
}
.v-mobile .f8-head-m {
  padding: 0 24px;
  margin-bottom: 28px;
}
.v-mobile .f8-line1-m {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.02em;
}
.v-mobile .f8-line2-m {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.02em;
}
.v-mobile .f8-scroll-m {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 24px 20px;
  scroll-padding-left: 24px;
  margin-bottom: 24px;
}
.v-mobile .f8-scroll-m::-webkit-scrollbar { display: none; }
.v-mobile .q8card-m {
  width: 280px;
  height: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border: 1px solid #E0E0E3;
  padding: 28px 20px 0;
}
.v-mobile .q8card--admit-m {
  background: linear-gradient(135deg,
    rgba(168,130,255,0.10) 0%,
    rgba(255,150,200,0.07) 45%,
    rgba(255,220,170,0.05) 100%);
}
.v-mobile .q8card--visa-m {
  background: linear-gradient(135deg,
    rgba(90,160,255,0.10) 0%,
    rgba(120,220,230,0.07) 45%,
    rgba(220,200,255,0.05) 100%);
}
.v-mobile .q8card--deadline-m {
  background: linear-gradient(135deg,
    rgba(255,185,90,0.10) 0%,
    rgba(255,135,170,0.07) 45%,
    rgba(230,200,255,0.05) 100%);
}
.v-mobile .q8card--landing-m {
  background: linear-gradient(135deg,
    rgba(80,210,175,0.10) 0%,
    rgba(90,185,255,0.07) 45%,
    rgba(170,235,215,0.05) 100%);
}
.v-mobile .q8q-m {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.v-mobile .q8a-m {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444444;
  line-height: 1.65;
  position: relative;
  z-index: 2;
  max-width: 170px;
}
.v-mobile .q8a-m strong {
  font-weight: 700;
  color: #000000;
}
.v-mobile .q8img-m {
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  z-index: 1;
}
.v-mobile .q8img--admit-m { width: 155px; height: 145px; }
.v-mobile .q8img--visa-m { width: 120px; height: 155px; }
.v-mobile .q8img--deadline-m { width: 155px; height: 115px; }
.v-mobile .q8img--landing-m { width: 120px; height: 145px; }
.v-mobile .f8-cta-m {
  display: block;
  width: calc(100% - 48px);
  margin: 0 24px;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 17px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease;
}
.v-mobile .f8-cta-m:active { transform: scale(0.98); }
.v-mobile .fold7-m {
  background: #ffffff;
  padding: 48px 0 60px;
}
.v-mobile .f7-head {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  padding: 0 24px;
}
.v-mobile .f7-head-light {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 34px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  padding: 0 24px;
}
.v-mobile .f7-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 16px;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid #F0EEEB;
  transition: box-shadow 0.2s ease;
}
.v-mobile .f7-tabs::-webkit-scrollbar { display: none; }
.v-mobile .f7-tabs--unstuck {
  position: relative !important;
  top: auto !important;
  border-bottom-color: transparent !important;
}
.v-mobile .f7-tab {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #000000;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 100px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.v-mobile .f7-tab.active {
  background: #000000;
  color: #ffffff;
}
.v-mobile .f7-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  padding: 0 24px;
  transition: opacity 0.2s ease;
}
.v-mobile .f7-cards.fading { opacity: 0; }
.v-mobile .pricing-card-m {
  background: linear-gradient(to bottom, #F6F4F2 0%, rgba(246,244,242,0.6) 100%);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}
.v-mobile .pricing-card-m.featured {
  border: 2px solid transparent;
  border-image: linear-gradient(to bottom, #2F1238, #EFEFEF) 1;
}
.v-mobile .pricing-card-wrap-m {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v-mobile .pricing-ribbon-m {
  width: calc(100% - 40px);
  height: 36px;
  background: #2F1238;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}
.v-mobile .pricing-body-m {
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v-mobile .pricing-name-m {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.v-mobile .pricing-desc-m {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #858588;
  line-height: 1.55;
}
.v-mobile .pricing-price-row-m {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.v-mobile .pricing-current-m {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1;
}
.v-mobile .pricing-original-m {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #858588;
  text-decoration: line-through;
  line-height: 1;
}
.v-mobile .pricing-divider-m {
  border: none;
  border-top: 1px dashed #CACACA;
  margin: 0 0 16px;
}
.v-mobile .pricing-features-m {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 20px;
}
.v-mobile .pricing-features-m li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #2F1238;
  line-height: 20px;
}
.v-mobile .pricing-check-m {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.v-mobile .pricing-cta-m {
  width: 100%;
  height: 44px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease;
}
.v-mobile .pricing-cta-m:active { transform: scale(0.98); }
.v-mobile .pricing-cta-m.outline {
  background: #ffffff;
  color: #000000;
  border: 1px solid #2F1238;
}
.v-mobile .pricing-cta-m.filled {
  background: #000000;
  color: #ffffff;
  border: none;
}
.v-mobile .f7-banner-m {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #CACACA;
  padding: 16px;
  margin: 0 24px;
}
.v-mobile .f7-banner-m p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2F1238;
  line-height: 1.5;
}
.v-mobile .cs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.v-mobile .cs-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.v-mobile .cs-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 501;
  background: #ffffff;
  max-height: 92svh;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
}
.v-mobile .cs-scroll-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.v-mobile .cs-sheet.open { transform: translateY(0); }
.v-mobile .cs-handle {
  display: flex;
  justify-content: center;
  padding: 12px 0 0;
  background: transparent;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
.v-mobile .cs-handle-bar {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}
.v-mobile .cs-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.32);
  border: none;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
}
.v-mobile .cs-hero {
  position: relative;
  width: 100%;
  height: 380px;
  flex-shrink: 0;
  overflow: hidden;
}
.v-mobile .cs-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.v-mobile .cs-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,1)   0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0)   75%);
  pointer-events: none;
}
.v-mobile .cs-hero-info {
  position: absolute;
  bottom: 24px;
  left: 20px; right: 20px;
  z-index: 2;
}
.v-mobile .cs-c-name {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.v-mobile .cs-c-rating {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
.v-mobile .cs-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.v-mobile .cs-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}
.v-mobile .cs-reviews-wrap {
  padding: 24px 20px 20px;
  background: #ffffff;
}
.v-mobile .cs-sticky-cta {
  flex-shrink: 0;
  background: #ffffff;
  padding: 12px 20px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.v-mobile .cs-book-btn {
  display: block;
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.v-mobile .cs-book-btn:active { opacity: 0.82; }
.v-mobile .cs-reviews-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.v-mobile .cs-review-card {
  background: #F7F7F7;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.v-mobile .cs-rv-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.v-mobile .cs-rv-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #0A0A0A;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
.v-mobile .cs-rv-meta { flex: 1; min-width: 0; }
.v-mobile .cs-rv-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-mobile .cs-rv-date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999999;
  margin-top: 1px;
}
.v-mobile .cs-rv-rating {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  background: #EFEFEF;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.v-mobile .cs-rv-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #555555;
  line-height: 1.65;
}
.v-mobile .f4-card { cursor: pointer; }
.v-mobile .cs-rv-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.v-mobile .cs-rv-score-wrap {
  margin-bottom: 10px;
}
.v-mobile .cs-rv-score {
  display: inline-flex;
  align-items: center;
  background: #F0F0F0;
  border-radius: 100px;
  padding: 3px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #444444;
  letter-spacing: 0.02em;
}
.v-mobile .cs-rv-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  object-fit: unset;
}
.v-mobile .cs-sheet {
  overflow-x: hidden;
}
.v-mobile .cs-reviews-wrap, .v-mobile .cs-review-card, .v-mobile .cs-rv-text, .v-mobile .cs-hero-info {
  max-width: 100%;
  word-break: break-word;
}
.v-mobile .cs-meta-row {
  max-width: 100%;
}
.v-mobile .tm-full-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.v-mobile .tm-thumb-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.v-mobile .tm-thumb-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.v-mobile .tm-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease, transform .15s ease;
}
.v-mobile .tm-play-btn:active {
  transform: translate(-50%, -50%) scale(0.93);
  background: rgba(255,255,255,0.28);
}
.v-mobile .tm-play-btn svg {
  margin-left: 3px;
}
.v-mobile .tm-video-date {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 5px;
  letter-spacing: 0.3px;
}
.v-mobile .tm-avt-init {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1A1A1A;
  background: #F2F2F2;
  object-fit: cover;
}
.v-mobile .tm-readmore {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.v-mobile .rv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.v-mobile .rv-overlay.open { opacity: 1; pointer-events: auto; }
.v-mobile .rv-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 601;
  background: #fff;
  max-height: 88svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
}
.v-mobile .rv-sheet.open { transform: translateY(0); }
.v-mobile .rv-handle-wrap {
  display: flex;
  justify-content: center;
  padding: 12px 0 0;
}
.v-mobile .rv-handle-bar {
  width: 36px; height: 4px;
  background: #D8D8D8;
  border-radius: 2px;
}
.v-mobile .rv-close {
  position: absolute;
  top: 12px; right: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #F0F0F0;
  border: none;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
}
.v-mobile .rv-sheet-inner { padding: 20px 20px 40px; }
.v-mobile .rv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.v-mobile .rv-avt-init {
  width: 64px; height: 64px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1A1A1A;
  background: #F2F2F2;
  object-fit: cover;
}
.v-mobile .rv-header-text { flex: 1; min-width: 0; }
.v-mobile .rv-s-name { font-size: 14px; font-weight: 700; color: #000; }
.v-mobile .rv-s-uni { font-size: 11px; color: #666; font-style: italic; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-mobile .allrev-section {
  background: #fff;
  padding: 48px 20px 60px;
  border-top: 1px solid #EBEBEB;
  color: #1A1A1A;
}
.v-mobile .allrev-section .f3-rating { margin-bottom: 14px; }
.v-mobile .allrev-section .f3-h1 { margin-bottom: 28px; }
.v-mobile .allrev-card {
  background: #fff;
  border: 1px solid #CACACA;
  border-radius: 8px;
  padding: 18px 18px 16px;
  margin-bottom: 12px;
  color: #1A1A1A;
  animation:m-allrevFadeIn 0.3s ease both;
}
@keyframes m-allrevFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v-mobile .allrev-avatar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.v-mobile .allrev-avt-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #F2F2F2;
}
.v-mobile .allrev-avt-init {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #F2F2F2;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.v-mobile .allrev-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.v-mobile .allrev-city {
  font-size: 12px;
  color: #777;
  line-height: 1.3;
  margin-top: 1px;
}
.v-mobile .allrev-tag {
  display: inline-flex;
  align-items: center;
  background: #111;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.v-mobile .allrev-review-wrap {
  margin-bottom: 4px;
}
.v-mobile .allrev-review {
  font-size: 13px;
  color: #444;
  line-height: 20px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-mobile .allrev-review.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.v-mobile .allrev-readmore {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-style: normal;
  font-family: inherit;
}
.v-mobile .allrev-readmore.hidden { display: none; }
.v-mobile .allrev-divider {
  border: none;
  border-top: 1px solid #E8E8E8;
  margin: 12px 0 10px;
}
.v-mobile .allrev-course {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}
.v-mobile .allrev-meta {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
.v-mobile .allrev-load-wrap {
  text-align: center;
  margin-top: 4px;
}
.v-mobile .allrev-load-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  letter-spacing: 0.01em;
  font-family: inherit;
}
.v-mobile .allrev-load-btn:hover { opacity: 0.7; }
.v-mobile .rv-s-tag { background: #000; color: #fff; font-size: 11px; font-weight: 700; border-radius: 4px; padding: 4px 9px; flex-shrink: 0; }
.v-mobile .rv-s-review {
  font-size: 14px;
  line-height: 23px;
  color: #333;
  font-style: italic;
  margin-bottom: 18px;
}
.v-mobile .rv-s-meta {
  font-size: 11px;
  color: #999;
  padding-top: 12px;
  border-top: 1px solid #ECECEC;
  margin-bottom: 24px;
}
.v-mobile .rv-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v-mobile .rv-nav-btn {
  flex: 1;
  padding: 11px 0;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
}
.v-mobile .rv-nav-btn:active { background: #F5F5F5; }
.v-mobile .rv-nav-btn:disabled { color: #C8C8C8; border-color: #EBEBEB; cursor: default; }
.v-mobile .rv-nav-count { font-size: 11px; color: #999; white-space: nowrap; min-width: 48px; text-align: center; }
body.mobile { padding-bottom: 68px; }
@keyframes m-stickyAurora {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes m-stickySlideUp {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}
.v-mobile .sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(105%);
  height: 60px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 16px;
  box-sizing: border-box;
  z-index: 9999;
  gap: 10px;
  overflow: hidden;
}
.v-mobile .sticky-cta.sticky-visible {
  animation:m-stickySlideUp 0.6s cubic-bezier(0.34, 1.15, 0.64, 1) forwards;
}
.v-mobile .sticky-cta.sticky-hidden {
  transform: translateY(110%) !important;
  z-index: -1 !important;
  pointer-events: none !important;
  transition: transform 0.3s ease !important;
}
.v-mobile .sticky-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EDE4FF, #C8B8F8, #FFD6EE, #D6EAFF, #C8B8F8, #FDD9F0, #EDE4FF);
  background-size: 200% 100%;
  animation:m-stickyAurora 5s linear infinite;
}
.v-mobile .sticky-cta-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.v-mobile .sticky-deck {
  position: relative;
  width: 62px;
  height: 40px;
  flex-shrink: 0;
}
.v-mobile .sticky-card {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 2px solid #fff;
  top: 50%;
  left: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.62s cubic-bezier(0.34, 1.18, 0.64, 1),
              opacity 0.50s ease;
}
.v-mobile .sticky-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.v-mobile .deck-staging {
  transform: translate(-50%, calc(-50% - 32px)) rotate(7deg) scale(0.76);
  opacity: 0;
  transition: none !important;
}
.v-mobile .deck-back {
  background: #C8C8C8;
  transform: translate(-50%, -50%) rotate(-22deg) translate(-15px, 4px) scale(0.80);
  opacity: 0.65;
}
.v-mobile .deck-mid {
  background: #DCDCDC;
  transform: translate(-50%, -50%) rotate(-11deg) translate(-7px, 2px) scale(0.91);
  opacity: 0.82;
}
.v-mobile .deck-front {
  background: #fff;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
}
.v-mobile .deck-back img { filter: brightness(0.75); }
.v-mobile .deck-mid img { filter: brightness(0.90); }
.v-mobile .deck-front img { filter: none; }
.v-mobile .sticky-text {
  font-size: 11.5px;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.v-mobile .sticky-text strong { font-weight: 700; }
.v-mobile .sticky-btn {
  background: #0A0A0A;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0 14px;
  height: 40px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v-mobile .sticky-btn svg {
  flex-shrink: 0;
}
.v-mobile .pricing-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
.v-mobile .pricing-radio-opt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  user-select: none;
}
.v-mobile .radio-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-top: 2px;
}
.v-mobile .pricing-radio-opt.active .radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
}
@keyframes m-textShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.v-mobile .pricing-radio-opt.active .radio-label {
  font-weight: 600;
  background: linear-gradient(90deg, #000 30%, #888 50%, #000 70%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:m-textShimmer 3s ease-in-out 0.8s infinite;
}
.v-mobile .elite-subdesc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #858588;
  line-height: 1.55;
  margin-top: 8px;
}
.v-mobile .elite-subdesc:empty {
  margin-top: 0;
}
.v-mobile .hl-2, .v-mobile .hl-3 { line-height: 50px; }
body.mobile { overflow-x: clip; }
.v-mobile .fold2 { padding-top: 80px; padding-bottom: 80px; }
.v-mobile .f5-m-h1 { margin-bottom: 40px; }
.v-mobile .main-headline { margin-bottom: 38px; }
.v-mobile .admits-strip { margin-top: 42px; }
.v-mobile .tm-written { padding: 28px 28px 16px; height: 320px; align-self: flex-start; }
.v-mobile .tm-video { height: 320px; }
.v-mobile .tm-video-star-wrap { bottom: 20px; z-index: 6; }
.v-mobile .tm-video-date { color: #000000; }
.v-mobile .tm-review { -webkit-line-clamp: 3; flex: none; }
.v-mobile .tm-divider { border-top-style: dashed; }
.v-mobile .tm-readmore { background: none; border: none; padding: 2px 0 0; }
.v-mobile .fold4mistakes-m { background: #F6F4F2; padding: 64px 24px 72px; }
.v-mobile .f6-h1-m strong { font-weight: 700; }
.v-mobile .f7-head-light { margin-bottom: 28px; }
.v-mobile .pricing-card-wrap-m { position: relative; padding-top: 36px; align-items: stretch; }
.v-mobile .pricing-ribbon-m { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: calc(100% - 32px); }
.v-mobile .pricing-features-extra { display: none; list-style: none; padding: 0; margin: 0; }
.v-mobile .pricing-features-extra.expanded { display: block; }
.v-mobile .pricing-feat-toggle { background: none; border: none; padding: 20px 0; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: #000; cursor: pointer; display: flex; align-items: center; }
.v-mobile .pricing-radio-group { padding: 20px 0 !important; }
.v-mobile .fold4mistakes-m .f5-m-h1 { font-weight: 400; }
.v-mobile .fold4mistakes-m .f5-m-h1 strong { font-weight: 600; }
.v-mobile .f4-c-rating { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; margin-bottom: 8px; width: fit-content; }
.v-mobile .f4-c-badge-reviews { font-weight: 400; opacity: 0.75; }
.v-mobile .f4-exp-link { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; background: none; border: none; padding: 0; font-family: 'Inter', sans-serif; }
.v-mobile .cs-book-btn { border-radius: 100px !important; }
.v-mobile .fold4-m { padding-bottom: 72px; }
.v-mobile .cs-sheet.open { height: 92svh; }
.v-mobile .cs-scroll-body { min-height: 0; overflow-y: auto; }
.v-mobile .m-item { border-bottom: 1px dashed rgba(0,0,0,0.18); }
.v-mobile .m-item:last-of-type { border-bottom: none; }
.v-mobile .m-q { width: 100%; display: flex; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; padding: 24px 0; text-align: left; }
.v-mobile .m-q-num { font-size: 12px; font-weight: 400; color: #AAAAAA; flex-shrink: 0; width: 20px; }
.v-mobile .m-q-text { font-size: 15px; font-weight: 400; color: #000; line-height: 1.5; flex: 1; }
.v-mobile .m-q-text strong { font-weight: 700; }
.v-mobile .m-icon { flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.v-mobile .m-item.open .m-icon { transform: rotate(45deg); }
.v-mobile .m-body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease; }
.v-mobile .m-item.open .m-body { max-height: 300px; opacity: 1; }
.v-mobile .m-ans { font-size: 14px; color: #555555; line-height: 1.7; padding: 0 0 24px 36px; margin: 0; }
.v-mobile .experts-m {
  background: #000000;
  padding: 72px 24px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.v-mobile .experts-m-headline {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}
.v-mobile .experts-m-cta {
  height: 48px;
  padding: 0 28px;
  background: #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
}
.v-mobile .experts-m-cta:active { opacity: 0.85; }
.v-mobile .vro-backdrop {position:fixed;inset:0;background:rgba(0,0,0,0);z-index:9000;display:flex;align-items:flex-end;justify-content:center;pointer-events:none;transition:background .35s ease}
.v-mobile .vro-backdrop.vro-open {background:rgba(0,0,0,.82);pointer-events:all}
.v-mobile .vro-sheet {width:100%;max-width:420px;background:#000;border-radius:20px 20px 0 0;position:relative;overflow:hidden;display:flex;flex-direction:column;transform:translateY(100%);transition:transform .42s cubic-bezier(.32,.72,0,1);max-height:96svh}
.v-mobile .vro-backdrop.vro-open .vro-sheet {transform:translateY(0)}
.v-mobile .vro-video-wrap {position:relative;width:100%;aspect-ratio:9/16;max-height:80svh}
.v-mobile .vro-progress-track {position:absolute;top:14px;left:16px;right:56px;height:3px;background:rgba(255,255,255,.3);z-index:10;overflow:hidden;border-radius:2px}
.v-mobile .vro-progress-fill {height:100%;width:0%;background:#fff;border-radius:2px}
.v-mobile .vro-close {position:absolute;top:8px;right:10px;width:36px;height:36px;background:rgba(0,0,0,.45);border:none;border-radius:50%;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center}
.v-mobile .vro-mute {position:absolute;bottom:16px;right:14px;width:38px;height:38px;background:rgba(0,0,0,.5);border:none;border-radius:50%;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center}
.v-mobile .vro-video {width:100%;height:100%;object-fit:cover;display:block}
.v-mobile .vro-time {position:absolute;bottom:60px;left:14px;color:rgba(255,255,255,.75);font-size:11px;font-weight:500;letter-spacing:.3px;z-index:10;pointer-events:none}
.v-mobile .vro-cta-bar {background:#fff;padding:16px 20px 20px;display:flex;align-items:center;justify-content:center}
.v-mobile .vro-cta-btn {background:#0A0A0A;color:#fff;font-size:15px;font-weight:600;padding:14px 28px;border:none;border-radius:100px;cursor:pointer;text-decoration:none;display:inline-block}
