/* ===========================
   NEO CLINIC — 白基調 × ネオンアクセント
   白60% / 黒40%
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg-dark:    #080810;
  --bg-dark2:   #0e0e1a;
  --bg-white:   #ffffff;
  --bg-light:   #f6f6fa;
  --bg-light2:  #eeeeF5;

  /* Text */
  --text:       #0a0a14;
  --text-mid:   #44445a;
  --text-light: #888899;
  --white:      #ffffff;
  --gray-faint: #ddddee;

  /* Neon */
  --neon-purple: #b833e8;
  --neon-blue:   #00c0f0;
  --grad:        linear-gradient(135deg, #b833e8, #00c0f0);
  --grad-soft:   linear-gradient(135deg, rgba(184,51,232,0.12), rgba(0,192,240,0.12));

  --glow-purple: 0 0 8px #b833e8, 0 0 24px rgba(184,51,232,0.5), 0 0 60px rgba(184,51,232,0.2);
  --glow-blue:   0 0 8px #00c0f0, 0 0 24px rgba(0,192,240,0.5), 0 0 60px rgba(0,192,240,0.2);
  --glow-text:   0 0 12px rgba(184,51,232,0.8), 0 0 32px rgba(184,51,232,0.4);

  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-en:    'Cormorant Garamond', serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
section { padding: 100px 0; }

/* ── Section label & title (dark version) ── */
.section-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 56px;
  letter-spacing: 0.06em;
  color: var(--text);
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--grad);
  box-shadow: var(--glow-purple);
  margin-top: 18px;
}

/* White section overrides */
.on-dark .section-title { color: var(--white); }
.on-dark .section-title::after { box-shadow: var(--glow-purple); }

/* ===========================
   Fixed CTA Sidebar (desktop)
   =========================== */

.cta-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cta-side-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 72px;
  padding: 22px 0;
  font-size: 10px;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.cta-side-btn .cta-side-icon {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.cta-side-btn .cta-side-label {
  font-size: 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 500;
}

.cta-side-btn.cta-tel {
  background: rgba(8, 8, 20, 0.92);
  color: var(--white);
  border: 1px solid rgba(0, 192, 240, 0.5);
  border-right: none;
  box-shadow: -4px 0 20px rgba(0, 192, 240, 0.2);
}
.cta-side-btn.cta-tel:hover {
  background: rgba(0, 192, 240, 0.15);
  border-color: var(--neon-blue);
  box-shadow: -6px 0 28px rgba(0, 192, 240, 0.4);
  width: 82px;
}

.cta-side-btn.cta-line {
  background: rgba(6, 199, 85, 0.9);
  color: var(--white);
  border: 1px solid rgba(6, 199, 85, 0.7);
  border-right: none;
  box-shadow: -4px 0 20px rgba(6, 199, 85, 0.3);
}
.cta-side-btn.cta-line:hover {
  background: rgba(6, 199, 85, 1);
  box-shadow: -6px 0 28px rgba(6, 199, 85, 0.5);
  width: 82px;
}

.cta-side-btn.cta-web {
  background: var(--neon-purple);
  color: var(--white);
  border: 1px solid rgba(184, 51, 232, 0.6);
  border-right: none;
  box-shadow: -4px 0 20px rgba(184, 51, 232, 0.35), var(--glow-purple);
}
.cta-side-btn.cta-web:hover {
  background: #c840ff;
  box-shadow: -6px 0 32px rgba(184, 51, 232, 0.6);
  width: 82px;
}

/* Fixed CTA Bottom (mobile) */
.cta-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  height: 56px;
}

.cta-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 1;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.cta-bottom-btn.cta-tel {
  background: rgba(8,8,20,0.95);
  color: var(--white);
  border-top: 2px solid var(--neon-blue);
}
.cta-bottom-btn.cta-line {
  background: #06C755;
  color: var(--white);
}
.cta-bottom-btn.cta-web {
  background: var(--neon-purple);
  color: var(--white);
  box-shadow: 0 -4px 20px rgba(184,51,232,0.4);
}

/* ===========================
   Header
   =========================== */

#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 51, 232, 0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.logo { display: flex; align-items: center; line-height: 1; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; display: block; object-fit: contain; }

.logo-text {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text);
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-top: 4px;
}

.nav-desktop > ul { display: flex; gap: 32px; }

.nav-desktop a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
}

.nav-desktop a:hover { color: var(--text); }

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--grad);
  box-shadow: var(--glow-purple);
  transition: var(--transition);
}
.nav-desktop a:hover::after { width: 100%; }

.header-cta { margin-left: auto; }

.btn-reservation {
  display: inline-block;
  padding: 11px 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--glow-purple);
  white-space: nowrap;
  transition: var(--transition);
}
.btn-reservation:hover {
  box-shadow: 0 0 20px #b833e8, 0 0 50px rgba(184,51,232,0.4);
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); }

.nav-mobile {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--gray-faint);
}
.nav-mobile ul { padding: 16px 0; }
.nav-mobile a {
  display: block;
  padding: 14px 40px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--gray-faint);
}
.nav-mobile a:hover { color: var(--text); padding-left: 48px; }
.nav-mobile.open { display: block; }

/* ===========================
   Hero — DARK
   =========================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--bg-dark);
}

.hero-bg { position: absolute; inset: 0; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.5);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,16,0.92) 45%, rgba(8,8,16,0.3) 100%),
    linear-gradient(to top, rgba(8,8,16,0.8) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 72px;
  width: 100%;
}

.hero-en {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--neon-purple);
  text-shadow: var(--glow-purple);
  margin-bottom: 20px;
}

.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero-catch em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(184,51,232,0.9));
}

.hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  margin-bottom: 44px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--glow-purple);
  transition: var(--transition);
}
.btn-primary:hover {
  box-shadow: 0 0 24px #b833e8, 0 0 60px rgba(184,51,232,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
  color: var(--neon-blue);
}

/* Doctor cutout in hero */
.hero-doctor {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 95%;
  z-index: 3;
  pointer-events: none;
}

.hero-doctor img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  /* Neon glow around the doctor */
  filter:
    drop-shadow(0 0 16px rgba(184, 51, 232, 0.7))
    drop-shadow(0 0 40px rgba(184, 51, 232, 0.35))
    drop-shadow(0 0 80px rgba(0, 192, 240, 0.2));
}

.hero-doctor-name {
  position: absolute;
  bottom: 12px;
  right: 12px;
  text-align: right;
  line-height: 1.3;
}
.hero-doctor-position {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--neon-purple);
  text-shadow: var(--glow-purple);
  margin-bottom: 2px;
}
.hero-doctor-kanji {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(184,51,232,0.5);
}
.hero-doctor-en {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--neon-purple), transparent);
  box-shadow: 0 0 6px var(--neon-purple);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ===========================
   Concept — WHITE
   =========================== */

.concept { background: var(--bg-white); }

/* ── Instagram section ── */
.ig-section {
  background: var(--bg-white);
  padding: 100px 0 80px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
  padding: 0 40px;
  align-items: start;
}
/* iframe wrapper: overflow:hidden clips the Instagram chrome (header/footer) */
.ig-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  /* Container shows the video-only area */
  height: 540px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
}
/* Iframe is taller than container; negative margin-top hides the top chrome */
.ig-video-frame {
  position: absolute;
  top: -56px;   /* hides the account header bar */
  left: 0;
  width: 100%;
  height: 700px; /* tall enough to fill: 56 offset + 540 visible + ~104 bottom chrome */
  border: none;
  display: block;
}
.ig-follow {
  text-align: center;
  margin-top: 48px;
}
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(220,39,67,0.3);
}
.ig-follow-btn:hover { opacity: 0.85; transform: translateY(-2px); }
@media (max-width: 767px) {
  .ig-section { padding: 72px 0 60px; }
  .ig-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 20px; }
  .ig-video-wrap { height: 460px; }
  .ig-video-frame { top: -54px; height: 614px; }
}

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

.concept-lead {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.concept-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 2.2;
  font-size: 16px;
}

.concept-img-wrap { position: relative; }

.concept-img {
  width: 100%; height: 500px;
  object-fit: cover;
  border: 1px solid var(--gray-faint);
}

/* Neon accent corner */
.concept-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 55%; height: 55%;
  border: 2px solid var(--neon-blue);
  box-shadow: var(--glow-blue);
  z-index: -1;
}

/* ===========================
   Features — WHITE
   =========================== */

.features { background: var(--bg-white); padding-bottom: 0; }

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

.feature-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.feature-card:hover { transform: scale(1.02); z-index: 2; }

.feature-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,16,0.96) 0%,
    rgba(8,8,16,0.65) 45%,
    rgba(8,8,16,0.15) 100%
  );
  transition: var(--transition);
}
.feature-card:hover .feature-img-overlay {
  background: linear-gradient(
    to top,
    rgba(8,8,16,0.96) 0%,
    rgba(60,10,90,0.6) 50%,
    rgba(184,51,232,0.1) 100%
  );
}

.feature-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  box-shadow: var(--glow-purple);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}
.feature-card:hover::before { opacity: 1; }

.feature-num {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.55;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.feature-card:hover p { max-height: 120px; opacity: 1; }

/* ===========================
   Menu — LIGHT
   =========================== */

.menu { background: var(--bg-light); }

.menu-tabs {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-faint);
}

.tab-btn {
  padding: 14px 40px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}
.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--neon-purple);
}
.tab-btn:hover:not(.active) { color: var(--text-mid); }

.tab-content { display: none; }
.tab-content.active { display: block; }

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

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--gray-faint);
  transition: var(--transition);
  overflow: hidden;
}
.menu-card:hover {
  border-color: rgba(184,51,232,0.3);
  box-shadow: 0 8px 40px rgba(184,51,232,0.1), 0 2px 12px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.menu-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.menu-card-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }

.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.menu-card ul { margin-bottom: 16px; flex: 1; }
.menu-card ul li {
  font-size: 12px;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-faint);
}

.menu-more {
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: auto;
}

/* ===========================
   Doctor — DARK
   =========================== */

.doctor { background: var(--bg-dark); }

/* Title override for dark */
.doctor .section-title { color: var(--white); }

.doctor-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.doctor-img-wrap { position: relative; }

.doctor-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(184,51,232,0.3);
  box-shadow: 0 0 40px rgba(184,51,232,0.2), 0 0 80px rgba(184,51,232,0.08);
}

.doctor-img-wrap::before,
.doctor-img-wrap::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--neon-blue);
  border-style: solid;
  box-shadow: var(--glow-blue);
}
.doctor-img-wrap::before { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.doctor-img-wrap::after { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }

.doctor-position {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.doctor-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
}

.doctor-name-en {
  display: block;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.doctor-divider {
  width: 48px; height: 1px;
  background: var(--grad);
  box-shadow: var(--glow-purple);
  margin: 24px 0;
}

.doctor-specialty { margin-bottom: 32px; }

.doctor-career { margin-bottom: 32px; }
.doctor-career h4,
.doctor-achievements h4 { }
.career-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  border-left: 2px solid var(--neon-purple);
  padding-left: 16px;
}
.career-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  padding: 6px 0;
  line-height: 1.5;
  position: relative;
}
.career-list li::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--neon-purple);
  border-radius: 50%;
}

.doctor-achievements { margin-bottom: 32px; }

/* 累計ブロック */
.achievements-total {
  position: relative;
  margin: 12px 0 16px;
  padding: 20px 24px 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}

/* グラデーション上線アクセント */
.achievements-total::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

.achievements-total-num {
  display: block;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.achievements-unit {
  font-size: 20px;
  font-family: var(--font-main);
  font-weight: 400;
}

.achievements-total-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* 内訳リスト */
.achievements-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
}

.achievements-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  text-align: center;
}

.ach-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

.ach-num {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ach-unit {
  font-size: 10px;
  font-family: var(--font-main);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.doctor-specialty h4,
.doctor-career h4,
.doctor-achievements h4,
.doctor-message h4 {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.specialty-lead {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.8;
}

.doctor-specialty p,
.doctor-message p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 2.1;
  margin-bottom: 14px;
}

/* ===========================
   Flow — WHITE
   =========================== */

.flow { background: var(--bg-white); }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.flow-step {
  background: var(--bg-white);
  border: 1px solid var(--gray-faint);
  overflow: hidden;
  transition: var(--transition);
}
.flow-step:hover {
  border-color: rgba(184,51,232,0.3);
  box-shadow: 0 8px 40px rgba(184,51,232,0.1);
  transform: translateY(-4px);
}

.flow-step-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.flow-step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.flow-step:hover .flow-step-img img { transform: scale(1.06); }

.flow-step-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.25) 100%);
}

.flow-step-body { padding: 24px 20px; }

.flow-step-num {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.flow-step p { font-size: 13px; color: var(--text-mid); line-height: 1.9; }
.flow-arrow { display: none; }

/* ===========================
   Clinic — LIGHT
   =========================== */

.clinic { background: var(--bg-light); }

.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.clinic-info-table table { width: 100%; border-collapse: collapse; }

.clinic-info-table th,
.clinic-info-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--gray-faint);
  font-size: 14px;
  vertical-align: top;
  text-align: left;
  line-height: 1.8;
}

.clinic-info-table th {
  width: 110px;
  color: var(--text-light);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.clinic-info-table td { color: var(--text-mid); }
.clinic-info-table small { font-size: 11px; color: var(--text-light); }

.clinic-map iframe { border: 1px solid var(--gray-faint) !important; }

/* ===========================
   Contact — DARK
   =========================== */

.contact {
  background: var(--bg-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,51,232,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-inner { position: relative; z-index: 1; text-align: center; }

.contact .section-title { color: var(--white); }

.contact-desc { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 56px; line-height: 2.2; }

.contact-btns { display: flex; justify-content: center; gap: 2px; flex-wrap: wrap; }

.btn-contact-tel,
.btn-contact-line,
.btn-contact-web {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  min-width: 240px;
  transition: var(--transition);
  font-size: 14px;
  border: 1px solid;
}

.btn-contact-tel {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--white);
}
.btn-contact-tel:hover { border-color: var(--neon-blue); box-shadow: var(--glow-blue); }

.btn-contact-line {
  border-color: #06C755;
  background: rgba(6,199,85,0.1);
  color: var(--white);
  box-shadow: 0 0 20px rgba(6,199,85,0.2);
}
.btn-contact-line:hover { background: rgba(6,199,85,0.2); box-shadow: 0 0 30px rgba(6,199,85,0.4); }

.btn-contact-web {
  border-color: var(--neon-purple);
  background: rgba(184,51,232,0.1);
  color: var(--white);
  box-shadow: var(--glow-purple);
}
.btn-contact-web:hover { background: rgba(184,51,232,0.2); box-shadow: 0 0 24px #b833e8, 0 0 60px rgba(184,51,232,0.4); }

.contact-icon { font-size: 20px; font-weight: bold; flex-shrink: 0; }

.btn-contact-tel span:last-child,
.btn-contact-line span:last-child,
.btn-contact-web span:last-child { text-align: left; line-height: 1.6; }

.btn-contact-tel small,
.btn-contact-line small,
.btn-contact-web small { display: block; font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }

/* ===========================
   Footer — DARK
   =========================== */

.footer { background: #050508; border-top: 1px solid rgba(184,51,232,0.12); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0 40px;
  gap: 40px;
}

.footer-logo .logo-img { height: 28px; width: auto; display: block; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-logo .logo-text {
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.25em;
  display: block;
  text-shadow: var(--glow-text);
}
.footer-logo .logo-sub {
  color: rgba(255,255,255,0.35);
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 4px;
  display: block;
}
.footer-address { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; line-height: 1.9; }

.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ===========================
   Fade-in
   =========================== */

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
  .cta-sidebar { display: none; }
  .hero-doctor { height: 72%; right: 2%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .doctor-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .section-title { margin-bottom: 36px; }

  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; height: 64px; }

  .cta-sidebar { display: none; }
  .cta-bottom { display: flex; }
  body { padding-bottom: 56px; }

  .hero { align-items: flex-start; min-height: 100vh; }
  .hero-content { padding: 0 20px; padding-top: 100px; padding-bottom: 260px; width: 100%; max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-doctor { display: block; height: 42%; right: 0; bottom: 0; }

  .concept-grid { grid-template-columns: 1fr; gap: 40px; }
  .concept-img { height: 280px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { height: 300px; }
  .feature-card p { max-height: 120px; opacity: 1; }

  .menu-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 14px 20px; }

  .doctor-card { grid-template-columns: 1fr; gap: 40px; }
  .doctor-img { height: 380px; aspect-ratio: auto; }
  .doctor-img-wrap::before, .doctor-img-wrap::after { display: none; }
  .achievements-list { grid-template-columns: repeat(3, 1fr); }

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

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

  .contact-btns { flex-direction: column; align-items: stretch; }
  .btn-contact-tel, .btn-contact-line, .btn-contact-web { min-width: auto; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Campaign Section ===== */
.campaign-section {
  padding: 80px 0 60px;
  background: #f9f7f4;
}

/* PC: 連続スクロールスライダー */
.campaign-swiper-wrap {
  margin-top: 40px;
  overflow: hidden;
}
.campaign-swiper {
  overflow: hidden;
}
.campaign-swiper .swiper-slide {
  width: auto;
}
.campaign-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ: 縦並びリスト（PC時は非表示） */
.campaign-mobile-list {
  display: none !important;
}

.campaign-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-campaign-price {
  display: inline-block;
  padding: 18px 64px;
  background: var(--grad);
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: var(--glow-purple);
  transition: var(--transition);
}
.btn-campaign-price:hover {
  box-shadow: 0 0 20px #b833e8, 0 0 50px rgba(184,51,232,0.4);
  opacity: 0.9;
}

/* ===== Header 料金表 ===== */
.nav-desktop ul li a[href*="page_id=48"] {
  color: var(--text-mid);
  font-weight: 400;
}

/* ===========================
   料金表ページ
   =========================== */

/* ---- Tab Nav ---- */
.price-tabs-nav {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 2px solid var(--gray-faint);
  margin-bottom: 48px;
  gap: 0;
}
.price-tab-btn {
  flex-shrink: 0;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
}
.price-tab-btn.active { color: var(--text); border-bottom-color: var(--neon-purple); }
.price-tab-btn:hover { color: var(--text); }
.price-tab-content { display: none; }
.price-tab-content.active { display: block; }

/* ---- 2回目以降ハイライト ---- */
.price-row-repeat { background: linear-gradient(135deg, rgba(184,51,232,0.05), rgba(0,192,240,0.05)); }
.price-row-repeat td { font-weight: 600; color: var(--text); }
.repeat-badge {
  display: inline-block;
  font-size: 10px;
  background: var(--grad);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
  font-weight: 600;
}
.price-repeat-note {
  font-size: 12px;
  color: var(--text-light);
  margin: 8px 0 0;
  padding: 6px 10px;
  border-left: 3px solid var(--primary);
  background: rgba(184,51,232,0.04);
}

/* ---- Sub category ---- */
.price-sub-category { margin-bottom: 44px; }
.price-sub-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0 8px 12px;
  border-left: 3px solid var(--neon-purple);
  margin-bottom: 0;
  letter-spacing: 0.03em;
}
.price-sub-note {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 8px 14px;
  margin-bottom: 0;
  line-height: 1.7;
}
.price-coming-soon {
  padding: 40px;
  text-align: center;
  color: var(--text-light);
  background: var(--bg-light);
  font-size: 13px;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .price-tabs-nav { margin-bottom: 32px; }
  .price-tab-btn { padding: 12px 14px; font-size: 12px; }
}

/* Page Hero */
.page-hero {
  padding: 120px 0 60px;
  background: var(--bg-light);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* Notice */
.price-notice-wrap {
  background: linear-gradient(135deg, rgba(184,51,232,0.06), rgba(0,192,240,0.06));
  padding: 24px 0;
}
.price-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-white);
  border-left: 3px solid;
  border-image: var(--grad) 1;
  padding: 18px 24px;
  border-radius: 0 4px 4px 0;
}
.price-notice-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.price-notice p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Price Section */
.price-section {
  padding: 80px 0 100px;
  background: var(--bg-white);
}

.price-category {
  margin-bottom: 80px;
}
.price-category:last-child { margin-bottom: 0; }

.price-cat-header {
  margin-bottom: 28px;
}
.price-cat-header .section-label { margin-bottom: 8px; }
.price-cat-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  border-image: var(--grad) 1;
  display: inline-block;
}

.price-cat-note {
  font-size: 13px;
  color: var(--text-mid);
  background: var(--bg-light);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.price-brand-block {
  margin-bottom: 32px;
}
.price-brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-light2);
  padding: 8px 16px;
  border-left: 3px solid;
  border-image: var(--grad) 1;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

/* 2カラム並び（脂肪溶解） */
.price-brand-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Table */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.price-table th {
  background: var(--bg-dark);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-faint);
  color: var(--text-mid);
  vertical-align: middle;
  line-height: 1.6;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg-light); }
.price-table td small {
  display: block;
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 3px;
}
.price-table td strong { color: var(--text); }
.price-cell {
  text-align: right;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  white-space: nowrap;
  background: rgba(184,51,232,0.03);
}

/* Responsive */
@media (max-width: 767px) {
  .price-hero { padding: 100px 0 48px; }
  .price-section { padding: 48px 0 72px; }
  .price-category { margin-bottom: 56px; }
  .price-brand-row { grid-template-columns: 1fr; }
  .price-table th, .price-table td { padding: 10px 12px; font-size: 13px; }
  .price-cell { font-size: 14px; }
  .price-notice { padding: 14px 16px; }
}

@media (max-width: 767px) {
  .campaign-swiper-wrap { display: none !important; }
  .campaign-mobile-list {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
    padding: 0 20px;
  }
  .campaign-mobile-list img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }
}

/* ── Dropdown nav ── */
.nav-desktop .has-dropdown { position: relative; }

/* Invisible hover-bridge fills the gap so cursor can move into dropdown without losing :hover */
.nav-desktop .has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 8px;
  z-index: 299;
}

.nav-desktop .has-dropdown .nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #14122a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 250px;
  z-index: 300;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  list-style: none;
  /* Scrollable when items exceed viewport */
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(184,51,232,0.4) transparent;
}
.nav-desktop .has-dropdown .nav-dropdown::-webkit-scrollbar { width: 3px; }
.nav-desktop .has-dropdown .nav-dropdown::-webkit-scrollbar-thumb { background: rgba(184,51,232,0.45); border-radius: 2px; }

/* Show on hover OR JS .open class */
.nav-desktop .has-dropdown:hover .nav-dropdown,
.nav-desktop .has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown li { list-style: none; }
.nav-dropdown li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: background 0.15s;
  white-space: nowrap;
  gap: 16px;
  position: relative;
}
.nav-dropdown li:first-child a { border-radius: 9px 9px 0 0; }
.nav-dropdown li:last-child a  { border-radius: 0 0 9px 9px; }
.nav-dropdown li a::after { content: '→'; color: var(--neon-purple); font-size: 11px; flex-shrink: 0; width: auto; height: auto; background: none; box-shadow: none; position: static; }
.nav-dropdown li a:hover { background: rgba(184,51,232,0.16); color: #fff; }

/* ── Hero animations ── */
@keyframes heroDocSlideIn {
  from { transform: translateX(160px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes heroFadeUp {
  from { transform: translateY(26px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
/* Neon glow: XENO CLINIC GINZA — dim → blazing white-purple */
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 4px rgba(255,255,255,0.5),
      0 0 10px rgba(184,51,232,0.7),
      0 0 22px rgba(184,51,232,0.5),
      0 0 45px rgba(184,51,232,0.3);
  }
  50% {
    text-shadow:
      0 0 6px #fff,
      0 0 14px #fff,
      0 0 28px rgba(255,255,255,0.8),
      0 0 50px #b833e8,
      0 0 90px #b833e8,
      0 0 130px rgba(184,51,232,0.8),
      0 0 180px rgba(184,51,232,0.55),
      0 0 240px rgba(0,192,240,0.4);
  }
}
/* Neon glow: main headline — clearly visible pulse */
@keyframes titleNeon {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(255,255,255,0.15),
      0 0 30px rgba(184,51,232,0.3),
      0 0 60px rgba(184,51,232,0.15);
  }
  50% {
    text-shadow:
      0 0 20px rgba(255,255,255,0.65),
      0 0 50px rgba(184,51,232,0.85),
      0 0 90px rgba(184,51,232,0.65),
      0 0 140px rgba(184,51,232,0.45),
      0 0 200px rgba(0,192,240,0.3);
  }
}
/* Neon glow: gradient <em> element (変える) */
@keyframes emGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(184,51,232,0.7)) drop-shadow(0 0 22px rgba(184,51,232,0.4)); }
  50%       { filter: drop-shadow(0 0 20px rgba(184,51,232,1))   drop-shadow(0 0 45px rgba(184,51,232,0.8)) drop-shadow(0 0 80px rgba(0,192,240,0.5)); }
}

/* Doctor: slower slide in from right (1.7s) */
.hero-doctor {
  animation: heroDocSlideIn 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  will-change: transform, opacity;
}
/* Hero text: staggered fade-up + neon glow */
.hero-en {
  animation: heroFadeUp 0.65s ease-out 0.05s both, neonPulse 2s ease-in-out 0.9s infinite;
}
.hero-catch {
  animation: heroFadeUp 0.65s ease-out 0.25s both, titleNeon 2.4s ease-in-out 1.1s infinite;
}
.hero-catch em { animation: emGlow 2.4s ease-in-out 1.1s infinite; }
.hero-sub  { animation: heroFadeUp 0.65s ease-out 0.45s both; }
.hero-btns { animation: heroFadeUp 0.65s ease-out 0.65s both; }

/* Mobile: amplified neon (smaller screens need stronger glow) */
@media (max-width: 767px) {
  @keyframes neonPulse {
    0%, 100% {
      text-shadow:
        0 0 5px rgba(255,255,255,0.6),
        0 0 12px rgba(184,51,232,0.85),
        0 0 28px rgba(184,51,232,0.65),
        0 0 55px rgba(184,51,232,0.4);
    }
    50% {
      text-shadow:
        0 0 8px #fff,
        0 0 18px #fff,
        0 0 36px rgba(255,255,255,0.85),
        0 0 65px #b833e8,
        0 0 110px #b833e8,
        0 0 160px rgba(184,51,232,0.85),
        0 0 220px rgba(0,192,240,0.5);
    }
  }
  @keyframes titleNeon {
    0%, 100% {
      text-shadow:
        0 0 12px rgba(255,255,255,0.25),
        0 0 35px rgba(184,51,232,0.45),
        0 0 70px rgba(184,51,232,0.25);
    }
    50% {
      text-shadow:
        0 0 22px rgba(255,255,255,0.75),
        0 0 55px rgba(184,51,232,0.95),
        0 0 100px rgba(184,51,232,0.75),
        0 0 160px rgba(184,51,232,0.5),
        0 0 230px rgba(0,192,240,0.35);
    }
  }
  .hero-en   { animation: heroFadeUp 0.65s ease-out 0.05s both, neonPulse 1.8s ease-in-out 0.9s infinite; }
  .hero-catch { animation: heroFadeUp 0.65s ease-out 0.25s both, titleNeon 2.2s ease-in-out 1.1s infinite; }
}
