/* ============================================================
   MNRTMO Post-Booking — call.mnrtmo.com
   ============================================================ */

:root {
  --accent: #FF3030;          /* MNRTMO red — saturated */
  --accent-deep: #E81E1E;
  --accent-glow: rgba(255, 48, 48, 0.45);
  --accent-glow-soft: rgba(255, 48, 48, 0.22);
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #181818;
  --border: #262626;
  --muted: #6a6a6a;
  --muted-2: #a8a8a8;
  --white: #fff;
}

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

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

/* ============================================================
   TOP LOGO BAR
   ============================================================ */

.logo-bar {
  text-align: center;
  padding: 28px 0 0;
}

.logo-mark {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.5em;
  font-size: 18px;
  padding-left: 0.5em;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  text-align: center;
  padding: 36px 0 26px;
  opacity: 0;
  animation: mnFadeUp 0.7s ease 0.05s forwards;
}

.hero-title {
  font-size: clamp(34px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--accent);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-shadow:
    0 0 24px var(--accent-glow),
    0 0 60px var(--accent-glow-soft);
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--white);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* ============================================================
   STEP BANNER
   ============================================================ */

.step-banner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 22px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 10px;
  padding: 17px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
  box-shadow:
    0 14px 44px rgba(255, 48, 48, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  animation: mnFadeUp 0.7s ease 0.18s forwards;
}

.step-number {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.01em;
  padding-right: 16px;
  border-right: 2px solid rgba(10, 10, 10, 0.3);
  white-space: nowrap;
}

.step-text {
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

@media (max-width: 560px) {
  .step-banner { flex-direction: column; gap: 6px; padding: 14px 18px; border-radius: 8px; }
  .step-number { border-right: 0; padding-right: 0; padding-bottom: 6px; border-bottom: 2px solid rgba(10,10,10,0.25); font-size: 15px; }
  .step-text { font-size: 14px; }
}

/* ============================================================
   MAIN VSL
   ============================================================ */

.main-vsl {
  margin: 0 auto;
  max-width: 960px;
  opacity: 0;
  animation: mnFadeUp 0.7s ease 0.28s forwards;
}

.main-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(255, 48, 48, 0.18),
    0 0 0 1px var(--border);
}

.main-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.55) 100%);
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity 0.2s ease;
  color: var(--white);
  font-family: inherit;
}

.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 40px rgba(255, 48, 48, 0.55),
    0 0 0 0 rgba(255, 48, 48, 0.5);
  animation: mnTapPulse 2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.play-circle.large {
  width: 108px;
  height: 108px;
}

.play-overlay:hover .play-circle {
  transform: scale(1.06);
}

.play-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ============================================================
   PREPARE FOR YOUR CALL BY
   ============================================================ */

.prepare-section {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  opacity: 0;
  animation: mnFadeUp 0.7s ease 0.4s forwards;
}

.prepare-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--accent-glow-soft);
}

.prepare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prepare-item {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.prepare-head {
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.005em;
}

.prepare-body {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.55;
}

/* ============================================================
   HAIRLINE DIVIDER
   ============================================================ */

.hairline {
  border: 0;
  height: 1px;
  margin: 72px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 48, 48, 0.5), transparent);
  opacity: 0.5;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
}

.section-sub {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted-2);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* ============================================================
   FAQ GRID
   ============================================================ */

.faq-section {
  opacity: 0;
  animation: mnFadeUp 0.7s ease 0.5s forwards;
}

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

@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; gap: 18px; }
}

.faq-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.faq-tile:hover {
  border-color: rgba(255, 48, 48, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 48, 48, 0.18), 0 4px 14px rgba(0, 0, 0, 0.4);
}

.faq-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.faq-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.faq-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.15s ease;
  font-family: inherit;
}

.faq-play:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}

.faq-play.hidden {
  opacity: 0;
  pointer-events: none;
}

.faq-play-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 48, 48, 0.5);
  transition: transform 0.15s ease, background 0.15s ease;
}

.faq-play:hover .faq-play-circle {
  transform: scale(1.08);
  background: var(--accent-deep);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--white);
  padding: 20px 22px 22px;
  line-height: 1.35;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */

.testimonial-section {
  opacity: 0;
  animation: mnFadeUp 0.7s ease 0.6s forwards;
}

.testimonial-card {
  position: relative;
  display: block;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 48, 48, 0.45);
  box-shadow: 0 28px 72px rgba(255, 48, 48, 0.22), 0 20px 60px rgba(0,0,0,0.5);
}

.testimonial-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonial-play {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.testimonial-card:hover .testimonial-play {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.testimonial-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  padding: 7px 12px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.testimonial-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  margin-top: 88px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-mark {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4em;
  color: var(--muted-2);
  padding-left: 0.4em;
}

.footer-line {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes mnFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes mnTapPulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(255, 48, 48, 0.55), 0 0 0 0 rgba(255, 48, 48, 0.55);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 48, 48, 0.7), 0 0 0 16px rgba(255, 48, 48, 0);
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1024px) {
  .page { padding: 0 24px 60px; }
  .hero { padding: 32px 0 22px; }
  .prepare-section { margin-top: 42px; }
  .hairline { margin: 60px 0; }
}

@media (max-width: 820px) {
  .page { padding: 0 20px 56px; }
  .logo-bar { padding: 24px 0 0; }
  .hero { padding: 28px 0 20px; }
  .hero-title { letter-spacing: -0.038em; line-height: 0.96; }
  .hero-sub { font-size: 15px; }
  .step-banner { padding: 16px 22px; }
  .step-number { font-size: 15px; padding-right: 14px; }
  .step-text { font-size: 15px; }
  .play-circle { width: 80px; height: 80px; }
  .prepare-section { margin-top: 36px; }
  .hairline { margin: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .faq-grid { gap: 20px; }
}

@media (max-width: 560px) {
  .page { padding: 0 14px 48px; }
  .logo-bar { padding: 20px 0 0; }
  .logo-mark { font-size: 14px; letter-spacing: 0.42em; padding-left: 0.42em; }
  .hero { padding: 20px 0 14px; }
  .hero-title { letter-spacing: -0.04em; line-height: 0.94; }
  .hero-sub { margin-top: 12px; font-size: 14px; line-height: 1.45; padding: 0 4px; }
  .step-banner { margin-bottom: 18px; padding: 14px 18px; gap: 8px; }
  .main-video { border-radius: 10px; }
  .play-circle { width: 68px; height: 68px; }
  .play-label { font-size: 11px; letter-spacing: 0.06em; }
  .prepare-section { margin-top: 32px; }
  .prepare-title { margin-bottom: 16px; font-size: 22px; }
  .prepare-item { padding: 13px 16px; }
  .prepare-head { font-size: 15px; }
  .prepare-body { font-size: 13px; line-height: 1.5; }
  .hairline { margin: 44px 0; }
  .section-head { margin-bottom: 24px; }
  .section-sub { font-size: 13px; padding: 0 4px; }
  .faq-grid { gap: 14px; }
  .faq-tile { border-radius: 10px; }
  .faq-play-circle { width: 52px; height: 52px; }
  .faq-q { padding: 14px 16px 18px; font-size: 14px; }
  .testimonial-card { border-radius: 10px; }
  .testimonial-badge { font-size: 9px; bottom: 10px; right: 10px; padding: 5px 9px; letter-spacing: 0.12em; }
  .testimonial-caption { font-size: 12px; padding: 0 8px; }
  .footer { margin-top: 52px; padding-top: 24px; }
  .footer-mark { font-size: 12px; letter-spacing: 0.36em; padding-left: 0.36em; }
}

@media (max-width: 380px) {
  .page { padding: 0 12px 44px; }
  .hero-title { font-size: 34px; }
  .step-banner { padding: 12px 14px; }
  .step-number { font-size: 14px; }
  .step-text { font-size: 13px; }
  .play-circle { width: 60px; height: 60px; }
  .faq-play-circle { width: 46px; height: 46px; }
}
