/* ==========================================================================
   Valiente al Volante — Design System
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #F5F8FC;
  --color-ink: #0E1E33;
  --color-ink-soft: #4A5A70;
  --color-ink-faint: #8DA0B8;
  --color-blue: #1B4F9C;
  --color-blue-bright: #2F7BE0;
  --color-blue-tint: #EAF1FC;
  --color-line: #E2E8F0;
  --color-white: #ffffff;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1220px;
  --nav-height: 84px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(14, 30, 51, 0.08);
  --shadow-md: 0 12px 28px rgba(14, 30, 51, 0.10);
  --shadow-lg: 0 30px 70px rgba(14, 30, 51, 0.16);

  --ease: cubic-bezier(.16, .8, .24, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

section { scroll-margin-top: var(--nav-height); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--color-blue); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--color-blue); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--color-blue); display: inline-block; }
.eyebrow--light { color: #BFD5F5; }
.eyebrow--light::before { background: #BFD5F5; }

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 18ch;
}
.section-text {
  margin-top: 20px;
  font-size: 17px;
  color: var(--color-ink-soft);
  max-width: 54ch;
  line-height: 1.7;
}
.section-text--center { max-width: 60ch; margin-left: auto; margin-right: auto; }

.section-header { max-width: var(--container); margin: 0 auto 56px; padding: 0 32px; text-align: center; }
.section-header .section-title { max-width: none; margin: 0 auto; }
.section-header .section-text { margin-left: auto; margin-right: auto; }

.editable-hint {
  background: var(--color-blue-tint); color: var(--color-blue);
  padding: 2px 8px; border-radius: 6px; font-weight: 600; font-size: 0.92em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--color-blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #163f7d; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-outline { border: 1.5px solid var(--color-line); color: var(--color-ink); }
.btn-outline:hover { border-color: var(--color-blue); color: var(--color-blue); transform: translateY(-2px); }

.btn-small { padding: 11px 22px; font-size: 13px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center;
  background: rgba(255,255,255,0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(14,30,51,0.06);
}

.nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); transition: filter .4s var(--ease); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link { font-size: 14px; font-weight: 600; letter-spacing: 0.3px; color: rgba(255,255,255,0.88); transition: color .25s var(--ease); }
.nav-link:hover { color: #fff; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease), background .4s var(--ease); margin: 0 auto; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar.scrolled .logo-img { filter: none; }
.navbar.scrolled .nav-link { color: var(--color-ink-soft); }
.navbar.scrolled .nav-link:hover { color: var(--color-blue); }
.navbar.scrolled .nav-toggle span { background: var(--color-ink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(135deg, #0E1E33 0%, #163f7d 55%, #1B4F9C 100%);
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,30,51,0.3) 0%, rgba(14,30,51,0.1) 45%, rgba(14,30,51,0.65) 100%);
}
.hero-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: clamp(180px, 28vw, 380px); height: auto;
  color: rgba(255,255,255,0.14);
  pointer-events: none;
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--radius-pill);
  display: flex; justify-content: center; padding-top: 8px; z-index: 2;
}
.hero-scroll span { width: 4px; height: 8px; background: #fff; border-radius: var(--radius-pill); animation: scrollDot 1.8s ease infinite; }
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* ==========================================================================
   CASOS DE ÉXITO (vertical 9:16 video slots)
   ========================================================================== */
.success-stories { max-width: var(--container); margin: 160px auto; padding: 0 32px; }
.success-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.success-slot { aspect-ratio: 9 / 16; }
.success-placeholder {
  width: 100%; height: 100%; border-radius: var(--radius-md);
  background: var(--color-bg-alt); border: 2px dashed #C7D6EA;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.success-slot:hover .success-placeholder { transform: translateY(-6px); border-color: var(--color-blue); }

.success-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-blue-tint);
  display: flex; align-items: center; justify-content: center;
}
.success-play::before {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--color-blue);
  margin-left: 3px;
}
.success-placeholder-text { font-size: 13px; font-weight: 600; color: var(--color-ink-faint); letter-spacing: 0.2px; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar { padding: 0 32px; margin: 0 auto 160px; }
.trust-inner {
  max-width: 1080px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 36px 24px;
}
.trust-item {
  text-align: center; padding: 12px 16px;
  border-right: 1px solid var(--color-line);
  display: flex; flex-direction: column; gap: 8px;
}
.trust-item:last-child { border-right: none; }
.stat-number { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; color: var(--color-ink); letter-spacing: -0.02em; }
.stat-label { font-size: 12.5px; font-weight: 600; color: var(--color-ink-soft); letter-spacing: 0.3px; line-height: 1.4; }

/* ==========================================================================
   METHOD
   ========================================================================== */
.method { background: var(--color-bg-alt); padding: 140px 32px; }
.method-steps {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.method-upgrade {
  max-width: var(--container); margin: 32px auto 0;
  background: linear-gradient(135deg, #0E1E33 0%, #1B4F9C 100%);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 48px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  color: #fff;
}
.method-upgrade-content { max-width: 640px; }
.method-upgrade .eyebrow { margin-bottom: 14px; }
.method-upgrade-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.15;
}
.method-upgrade-text { margin-top: 16px; color: rgba(255,255,255,0.82); line-height: 1.7; font-size: 15.5px; }
.method-upgrade .btn { flex-shrink: 0; }
.method-step {
  background: #fff; border-radius: var(--radius-lg); padding: 44px 36px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.method-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-index { font-size: 15px; font-weight: 800; color: var(--color-blue-bright); letter-spacing: 2px; }
.step-title { margin-top: 18px; font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.step-desc { margin-top: 14px; color: var(--color-ink-soft); line-height: 1.7; font-size: 15.5px; }

/* ==========================================================================
   SEGMENTS ("para quién")
   ========================================================================== */
.segments { max-width: var(--container); margin: 160px auto; padding: 0 32px; }
.segment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.segment-card {
  padding: 36px 26px; border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.segment-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-md); }
.segment-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.segment-desc { margin-top: 12px; font-size: 14.5px; color: var(--color-ink-soft); line-height: 1.6; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing { background: var(--color-bg-alt); padding: 140px 32px; }
.pricing-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch;
}
.price-card {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  padding: 44px 36px; border: 1px solid var(--color-line);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: var(--color-blue); box-shadow: var(--shadow-md); transform: scale(1.04); }
.price-card--featured:hover { transform: scale(1.04) translateY(-6px); }

.price-tag {
  position: absolute; top: -14px; left: 36px;
  background: var(--color-blue); color: #fff; font-size: 11.5px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill);
}

.price-name { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--color-ink-soft); }
.price-amount { margin-top: 16px; font-size: 42px; font-weight: 800; letter-spacing: -0.02em; }
.price-amount span { font-size: 15px; font-weight: 600; color: var(--color-ink-soft); }
.price-note { margin-top: 6px; font-size: 13.5px; color: var(--color-ink-faint); }

.price-features { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; flex-grow: 1; }
.price-features li { font-size: 14.5px; color: var(--color-ink-soft); padding-left: 26px; position: relative; line-height: 1.5; }
.price-features li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--color-blue-tint);
  box-shadow: inset 0 0 0 4px var(--color-blue);
}
.price-card .btn { width: 100%; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { max-width: var(--container); margin: 160px auto; padding: 0 32px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 36px 30px; border-radius: var(--radius-md); background: var(--color-bg-alt); }
.testimonial-card--placeholder { border: 2px dashed #C7D6EA; background: #fff; }
.testimonial-quote { font-size: 15px; font-style: italic; color: var(--color-ink-soft); line-height: 1.7; }
.testimonial-name { margin-top: 20px; font-weight: 700; font-size: 14.5px; }
.testimonial-context { margin-top: 2px; font-size: 13px; color: var(--color-ink-faint); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; margin: 160px auto; padding: 0 32px; }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left; font-size: 17px; font-weight: 700;
}
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--color-blue); border-radius: 2px; transition: transform .3s var(--ease);
}
.faq-icon::before { width: 100%; height: 2px; top: 8px; left: 0; }
.faq-icon::after { width: 2px; height: 100%; top: 0; left: 8px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer p { padding: 0 4px 26px; color: var(--color-ink-soft); line-height: 1.7; font-size: 15px; max-width: 68ch; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: linear-gradient(135deg, #0E1E33 0%, #1B4F9C 100%);
  padding: 140px 32px; text-align: center;
}
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-title { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; line-height: 1.1; }
.contact-text { margin: 22px auto 0; max-width: 50ch; color: rgba(255,255,255,0.78); font-size: 16.5px; line-height: 1.7; }

.contact-channels { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.channel-card {
  padding: 26px 20px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.channel-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.channel-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #BFD5F5; }
.channel-value { display: block; margin-top: 8px; font-weight: 700; color: #fff; font-size: 15px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--color-ink); color: rgba(255,255,255,0.65); padding: 90px 32px 0; }
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: inline-flex; align-items: center; }
.footer-logo-img { height: 60px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { margin-top: 18px; font-size: 14px; max-width: 30ch; line-height: 1.6; }

.footer-heading { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links, .footer-socials { display: flex; flex-direction: column; }
.footer-links a, .footer-socials a { font-size: 14.5px; margin-bottom: 14px; transition: color .25s var(--ease); }
.footer-links a:hover, .footer-socials a:hover { color: #fff; }

.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 28px 0; font-size: 13px; text-align: center; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

.method-steps .reveal:nth-child(2) { transition-delay: .1s; }
.method-steps .reveal:nth-child(3) { transition-delay: .2s; }
.segment-grid .reveal:nth-child(2) { transition-delay: .08s; }
.segment-grid .reveal:nth-child(3) { transition-delay: .16s; }
.segment-grid .reveal:nth-child(4) { transition-delay: .24s; }
.success-grid .reveal:nth-child(2) { transition-delay: .08s; }
.success-grid .reveal:nth-child(3) { transition-delay: .16s; }
.success-grid .reveal:nth-child(4) { transition-delay: .24s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: .1s; }
.testimonial-grid .reveal:nth-child(2) { transition-delay: .1s; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: .2s; }
.trust-bar .reveal:nth-child(2) { transition-delay: .08s; }
.trust-bar .reveal:nth-child(3) { transition-delay: .16s; }
.trust-bar .reveal:nth-child(4) { transition-delay: .24s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; justify-content: flex-start;
    padding: 48px 32px; gap: 8px;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { width: 100%; padding: 16px 0; font-size: 18px; border-bottom: 1px solid var(--color-line); color: var(--color-ink); }
  .nav-links .nav-link:hover { color: var(--color-blue); }
  .nav-cta { margin: 20px 0 0; }

  .segments, .testimonials, .faq, .success-stories { margin: 120px auto; }
  .method, .pricing { padding: 100px 32px; }
  .trust-bar { margin-bottom: 120px; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--color-line); }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-child(-n+2) { padding-bottom: 20px; }

  .method-steps, .segment-grid, .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .success-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }

  .method-upgrade { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  .method-upgrade .btn { width: 100%; text-align: center; }

  .contact-channels { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .trust-inner { grid-template-columns: 1fr; padding: 28px 20px; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--color-line); padding-bottom: 20px; }
  .trust-item:last-child { border-bottom: none; }
  .success-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   APP PAGES (login, cuenta, admin, gracias)
   ========================================================================== */
.app-header { padding: 32px; }
.app-header .logo-img { height: 40px; width: auto; filter: none; }

.auth-page {
  min-height: calc(100svh - 104px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 32px 100px;
}
.auth-card {
  width: 100%; max-width: 420px; background: #fff;
  border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: 44px 36px; box-shadow: var(--shadow-md); text-align: center;
}
.auth-card .section-title { font-size: 1.6rem; max-width: none; }
.auth-card .section-text { margin-left: auto; margin-right: auto; }

.form-field { text-align: left; margin-top: 24px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--color-ink-soft); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-line); font: inherit; font-size: 15px; color: var(--color-ink);
  transition: border-color .25s var(--ease);
}
.form-input:focus { outline: none; border-color: var(--color-blue); }
.form-submit { width: 100%; margin-top: 20px; border: none; cursor: pointer; }

.form-message { margin-top: 18px; font-size: 14px; color: var(--color-ink-soft); }
.form-message--error { color: #B3261E; }
.form-message--success { color: var(--color-blue); }

.app-shell { max-width: var(--container); margin: 0 auto; padding: 24px 32px 120px; }
.app-shell-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.app-shell-header .section-title { font-size: 1.9rem; max-width: none; }

.app-card {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: 32px; margin-bottom: 24px;
}
.app-card-title { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--color-ink-soft); margin-bottom: 20px; }

.video-list { display: flex; flex-direction: column; gap: 14px; }
.video-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius-md); background: var(--color-bg-alt);
}
.video-item-title { font-weight: 700; font-size: 15px; }
.video-item-desc { margin-top: 4px; font-size: 13.5px; color: var(--color-ink-soft); }

.booking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.booking-card { padding: 24px; border-radius: var(--radius-md); border: 1.5px solid var(--color-line); text-align: center; }
.booking-card-title { font-weight: 800; font-size: 15px; }
.booking-card-desc { margin-top: 8px; font-size: 13.5px; color: var(--color-ink-soft); }
.booking-card .btn { margin-top: 16px; width: 100%; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; padding: 10px 14px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--color-ink-faint); border-bottom: 1px solid var(--color-line); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--color-line); }
.pack-tag { display: inline-block; padding: 4px 10px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; background: var(--color-blue-tint); color: var(--color-blue); }

.calendly-block { margin-bottom: 40px; }
.calendly-block-title { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.calendly-embed { min-width: 280px; height: 700px; border-radius: var(--radius-md); overflow: hidden; }

.empty-state { text-align: center; padding: 40px 20px; color: var(--color-ink-soft); }

@media (max-width: 640px) {
  .booking-grid { grid-template-columns: 1fr; }
  .video-item { flex-direction: column; align-items: flex-start; }
}
