/* ---- Reset and Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- Cross-browser compatibility ---- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  font-family: var(--font), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --orange:        #E85800;
  --orange-light:  #FF6A1A;
  --orange-border: rgba(232,88,0,0.35);
  --black:         #0a0a0a;
  --black-2:       #111111;
  --black-3:       #1a1a1a;
  --black-4:       #222222;
  --black-5:       #2e2e2e;
  --white:         #ffffff;
  --gray-2:        #e0e0e0;
  --gray-3:        #aaaaaa;
  --gray-4:        #666666;
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     20px;
  --nav-h:         64px;
  --font:          'Barlow', sans-serif;
  --font-cond:     'Barlow Condensed', sans-serif;
}


/* ---- Top accent bar ---- */
.top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  position: fixed; top: 0; left: 0; right: 0; z-index: 201;
}

/* ---- Sticky nav ---- */
.nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(10,10,10,0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--black-5);
  transition: background 0.3s, box-shadow 0.3s;
  will-change: background, box-shadow;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(14px)) or (backdrop-filter: blur(14px))) {
  .nav {
    background: rgba(10,10,10,0.95);
  }
}
.nav.scrolled { background: rgba(10,10,10,0.98); box-shadow: 0 2px 24px rgba(0,0,0,0.55); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav-logo { height: 30px; width: auto; display: block; }
.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  -webkit-gap: 1.25rem;
  -moz-gap: 1.25rem;
}
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  -webkit-gap: 1.5rem;
  -moz-gap: 1.5rem;
}
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-3); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  -webkit-gap: 7px;
  -moz-gap: 7px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; fill: white; }
.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -webkit-gap: 5px;
  -moz-gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamburger:hover { background: var(--black-3); }
.hamburger:active { background: var(--black-4); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-3); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--black-2);
  border-bottom: 0.5px solid var(--black-5);
  position: fixed;
  top: calc(var(--nav-h) + 3px);
  left: 0;
  right: 0;
  z-index: 199;
  padding: 1rem 1.5rem 1.5rem;
  max-height: calc(100vh - var(--nav-h) - 3px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
}
.mobile-menu.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--gray-3);
  text-decoration: none; padding: 0.75rem 0;
  border-bottom: 0.5px solid var(--black-5); transition: color 0.2s, background 0.2s;
  border-radius: var(--radius-sm);
  margin-bottom: 2px;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--orange); }
.mobile-menu a:hover { color: var(--white); background: var(--black-3); }
.mobile-menu a:active { background: var(--black-4); }

/* ---- Page shell ---- */
.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3px + 2.5rem) 1.5rem 5rem;
  min-height: 100vh;
  position: relative;
}

/* Constraint for hero section content to maintain design while page is wider for calendar */
.stars-badge, .headline-block, .video-wrap, hr, .cal-heading, .cal-subheading {
  max-width: 660px; margin-left: auto; margin-right: auto;
}

.reveal.rd3 {
  text-align: center;
}

.cta-btn {
  display: block;
  margin: 0 auto 2.25rem;
  max-width: 660px;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(22px);
  -ms-transform: translateY(22px);
  transform: translateY(22px);
  -webkit-transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }

/* ---- Stars badge ---- */
.stars-badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--black-3); border: 0.5px solid var(--black-5);
  padding: 5px 12px; border-radius: 20px;
  font-size: 12px; color: var(--gray-3); margin: 0 auto 1.25rem; display: flex; width: fit-content;
}
.star { color: var(--orange); font-size: 13px; }

/* ---- Headline ---- */
.headline-block { margin-bottom: 1.5rem; text-align: center; }
.headline {
  font-family: var(--font-cond); font-size: 38px; font-weight: 700;
  line-height: 1.1; color: var(--white); letter-spacing: -0.3px; margin-bottom: 0.5rem;
}
.headline span { color: var(--orange); }
.subline { font-size: 15px; color: var(--gray-3); }

/* ---- Video ---- */
.video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  -webkit-aspect-ratio: 16/9;
  background: var(--black-2);
  margin-bottom: 1.5rem;
  cursor: pointer;
  border: 0.5px solid var(--black-5);
  -webkit-tap-highlight-color: transparent;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
  .video-wrap {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
  }
  .video-wrap > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.video-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(232,88,0,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(255,106,26,0.12) 0%, transparent 50%),
    var(--black-2);
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--black-2);
  z-index: 1;
}
.video-wrap.is-playing .hero-video {
  object-fit: contain;
}
.video-wrap.is-playing .video-bg,
.video-wrap.is-playing .noise,
.video-wrap.is-playing .video-avatar {
  display: none;
}
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 2;
}
.video-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  z-index: 3;
}
.play-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--orange-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(232,88,0,0.12);
  -webkit-transition: -webkit-transform 0.2s, background 0.2s, border-color 0.2s;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.video-wrap:hover .play-ring {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
  background: rgba(232,88,0,0.25);
  border-color: var(--orange);
}
.play-ring svg { width: 28px; height: 28px; fill: var(--orange-light); margin-left: 4px; }
.video-pill {
  font-size: 13px; color: var(--white);
  background: rgba(0,0,0,0.82); padding: 7px 16px; border-radius: 20px;
  border: 1px solid var(--orange-border); text-align: center; max-width: 90%;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.video-played-msg {
  position: absolute; inset: 0; display: none; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 14px; gap: 8px;
  pointer-events: none;
  z-index: 4;
}
.video-played-msg svg { width: 28px; height: 28px; fill: rgba(232,88,0,0.4); }
.video-avatar { position: absolute; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 10px; z-index: 3; }
.av-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: white;
  border: 2px solid rgba(255,255,255,0.15); flex-shrink: 0;
}
.av-name { font-size: 13px; color: white; font-weight: 600; line-height: 1.3; }
.av-title { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ---- CTA ---- */
.cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 9px;
  -webkit-gap: 9px;
  -moz-gap: 9px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  margin: 0 auto 2.25rem;
  width: auto;
  -webkit-tap-highlight-color: transparent;
}
.cta-btn:hover {
  background: var(--orange-light);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}
.cta-btn svg { width: 17px; height: 17px; fill: white; flex-shrink: 0; }

hr { border: none; border-top: 0.5px solid var(--black-5); margin: 0 auto 2.25rem; }

/* ---- Booking progress ---- */
.booking-progress { display: flex; align-items: center; margin-bottom: 1.5rem; }
.bp-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--gray-4);
  text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.3s;
}
.bp-step.active { color: var(--orange); }
.bp-step.done   { color: var(--gray-3); }
.bp-num {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--black-5); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  background: var(--black-3); color: var(--gray-4);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.bp-step.active .bp-num { background: var(--orange); border-color: var(--orange); color: white; }
.bp-step.done   .bp-num { background: var(--black-4); border-color: var(--gray-4); color: var(--gray-3); }
.bp-step.done   .bp-num::after { content: 'â'; }
.bp-step.done   .bp-label { display: none; }
.bp-line { flex: 1; height: 1px; background: var(--black-5); margin: 0 8px; transition: background 0.3s; }
.bp-line.done { background: var(--gray-4); }

/* ---- Calendar ---- */
.cal-heading { font-family: var(--font-cond); font-size: 26px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 0.3rem; text-align: center; }
.cal-subheading { font-size: 14px; color: var(--gray-4); margin-bottom: 1.25rem; text-align: center; }
.cal-card { background: var(--black-2); border: 0.5px solid var(--black-5); border-radius: var(--radius-xl); overflow: hidden; }
.cal-top { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; border-bottom: 0.5px solid var(--black-5); }
.cal-month-label { font-size: 15px; font-weight: 600; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav-btn {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  border: 0.5px solid var(--black-5); background: var(--black-3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-3); font-size: 16px; line-height: 1;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cal-nav-btn:hover { background: var(--black-4); border-color: var(--orange-border); color: var(--orange); }
.cal-day-labels { display: grid; grid-template-columns: repeat(7, 1fr); padding: 0.85rem 1.4rem 0; }
.day-lbl { text-align: center; font-size: 11px; font-weight: 600; color: var(--gray-4); text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 6px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 0.25rem 1.4rem 1rem; gap: 3px; }
.cd {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 13px; border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.15s, color 0.15s; position: relative;
  user-select: none; color: var(--gray-3);
}
.cd.empty, .cd.disabled { cursor: default; color: var(--black-5); }
.cd.available { font-weight: 600; color: var(--white); }
.cd.available:hover { background: var(--black-4); color: var(--orange-light); }
.cd.available::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--orange); opacity: 0.75;
}
.cd.selected { background: var(--orange) !important; color: white !important; }
.cd.selected::after { background: rgba(255,255,255,0.55); }
.time-section { padding: 0 1.4rem 1.2rem; border-top: 0.5px solid var(--black-5); display: none; }
.time-section.visible { display: block; }
.time-header { padding: 0.9rem 0 0.75rem; font-size: 12px; color: var(--gray-4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 7px; }
.ts {
  padding: 9px 8px; text-align: center; font-size: 13px; font-weight: 500;
  border: 0.5px solid var(--black-5); border-radius: var(--radius-sm);
  cursor: pointer; color: var(--gray-2); background: var(--black-3);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ts:hover { background: var(--black-4); border-color: var(--orange-border); color: var(--orange-light); }
.ts.selected { background: var(--orange); border-color: var(--orange); color: white; }
.cal-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.4rem; border-top: 0.5px solid var(--black-5);
  flex-wrap: wrap; gap: 0.75rem;
}
.booking-summary { font-size: 13px; color: var(--gray-4); }
.booking-summary strong { color: var(--white); }
.confirm-btn {
  background: var(--orange); color: white; border: none;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  opacity: 0.3; pointer-events: none;
  transition: opacity 0.2s, transform 0.15s, background 0.15s;
  font-family: var(--font); letter-spacing: 0.02em;
}
.confirm-btn.ready { opacity: 1; pointer-events: all; }
.confirm-btn.ready:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ---- Footer ---- */
.site-footer { background: var(--black-2); border-top: 0.5px solid var(--black-5); margin-top: 4rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
.footer-logo { height: 28px; width: auto; margin-bottom: 0.9rem; display: block; }
.footer-tagline { font-size: 13px; color: var(--gray-4); line-height: 1.65; max-width: 240px; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  border: 0.5px solid var(--black-5); background: var(--black-3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--gray-3);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: white; }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--gray-4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 13px; color: var(--gray-3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 0.5px solid var(--black-5); padding: 1.25rem 1.5rem;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-copy { font-size: 12px; color: var(--gray-4); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 12px; color: var(--gray-4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gray-3); }

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--orange); color: white; padding: 13px 22px;
  border-radius: var(--radius-lg); font-size: 14px; font-weight: 600;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 300; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .page { max-width: 100%; padding: calc(var(--nav-h) + 3px + 2rem) 1.5rem 4rem; }
  .stars-badge, .headline-block, .video-wrap, .cta-btn, hr, .cal-heading, .cal-subheading {
    max-width: 700px; margin-left: auto; margin-right: auto;
  }
  .footer-inner { max-width: 100%; padding: 2.5rem 1.5rem 1.5rem; }
}

/* ---- Small Tablet ---- */
@media (max-width: 768px) {
  .nav-inner { padding: 0 1rem; }
  .page { padding: calc(var(--nav-h) + 3px + 1.5rem) 1rem 3.5rem; }
  .headline { font-size: 32px; }
  .calendly-inline-widget { min-width: 100% !important; height: 650px !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem 1rem 1.5rem; }
  .footer-bottom { padding: 1rem; }
}

/* ---- Touch optimizations ---- */
@media (hover: none) and (pointer: coarse) {
  .nav-cta, .cta-btn, .confirm-btn {
    min-height: 44px; /* iOS touch target size */
  }
  .cal-nav-btn, .cd, .ts {
    min-height: 40px;
    min-width: 40px;
  }
  .social-btn {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 0.75rem; }
  .page { padding: calc(var(--nav-h) + 3px + 1rem) 0.75rem 3rem; }
  .stars-badge, .headline-block, .video-wrap, .cta-btn, hr, .cal-heading, .cal-subheading {
    max-width: 100%;
  }
  
  /* Hero section */
  .stars-badge { font-size: 11px; padding: 4px 10px; margin-bottom: 1rem; }
  .headline { font-size: 24px; line-height: 1.2; margin-bottom: 0.75rem; }
  .subline { font-size: 14px; }
  
  /* Video */
  .video-wrap { margin-bottom: 1.25rem; border-radius: var(--radius-lg); }
  .play-ring { width: 60px; height: 60px; }
  .play-ring svg { width: 24px; height: 24px; }
  .video-pill { font-size: 11px; padding: 4px 12px; }
  .video-avatar { bottom: 12px; left: 12px; }
  .av-circle { width: 36px; height: 36px; font-size: 14px; }
  .av-name { font-size: 12px; }
  .av-title { font-size: 10px; }
  
  /* CTA */
  .cta-btn { 
    font-size: 14px; 
    padding: 14px 20px; 
    width: 100%; 
    justify-content: center; 
    border-radius: var(--radius-sm);
    min-height: 48px; /* Better touch target */
    touch-action: manipulation;
  }
  
  /* Calendar */
  .cal-heading { font-size: 22px; }
  .cal-subheading { font-size: 13px; }
  .calendly-inline-widget { 
    min-width: 100% !important; 
    height: 600px !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  /* Custom calendar fallback (if Calendly fails) */
  .cal-card { border-radius: var(--radius-lg); }
  .cal-top { padding: 0.9rem 1rem; }
  .cal-month-label { font-size: 14px; }
  .cal-nav-btn { width: 28px; height: 28px; font-size: 14px; }
  .cal-day-labels { padding: 0.7rem 1rem 0; }
  .day-lbl { font-size: 10px; }
  .cal-grid { padding: 0.2rem 1rem 0.8rem; gap: 2px; }
  .cd { font-size: 12px; }
  .time-section { padding: 0 1rem 1rem; }
  .time-header { font-size: 11px; }
  .time-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ts { font-size: 12px; padding: 8px 6px; }
  .cal-footer { padding: 0.9rem 1rem; }
  .booking-summary { font-size: 12px; }
  .confirm-btn { width: 100%; padding: 12px; font-size: 13px; }
  
  /* Booking progress */
  .bp-step { font-size: 11px; }
  .bp-num { width: 22px; height: 22px; font-size: 10px; }
  .bp-line { margin: 0 6px; }
  
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0.75rem 1.5rem; }
  .footer-logo { height: 24px; margin-bottom: 0.75rem; }
  .footer-tagline { font-size: 12px; margin-bottom: 1rem; }
  .social-links { gap: 8px; }
  .social-btn { width: 32px; height: 32px; }
  .footer-col-title { font-size: 10px; margin-bottom: 0.75rem; }
  .footer-links a { font-size: 12px; }
  .footer-bottom { padding: 1rem 0.75rem; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-copy { font-size: 11px; }
  .footer-legal { gap: 1rem; }
  .footer-legal a { font-size: 11px; }
  
  /* Toast */
  .toast { 
    font-size: 13px; 
    padding: 11px 18px; 
    border-radius: var(--radius-md);
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(80px);
    white-space: normal;
    text-align: center;
  }
  .toast.show { transform: translateY(0); }
}

/* ---- Small Mobile ---- */
@media (max-width: 480px) {
  .page { padding: calc(var(--nav-h) + 3px + 0.75rem) 0.5rem 2.5rem; }
  .headline { font-size: 20px; }
  .subline { font-size: 13px; }
  .stars-badge { font-size: 10px; padding: 3px 8px; }
  .cta-btn { font-size: 13px; padding: 12px 16px; }
  .cal-heading { font-size: 20px; }
  .cal-subheading { font-size: 12px; }
  .calendly-inline-widget { height: 550px !important; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .ts { font-size: 11px; padding: 7px 5px; }
}

/* ---- Large Desktop ---- */
@media (min-width: 1200px) {
  .page { max-width: 1200px; }
  .stars-badge, .headline-block, .video-wrap, .cta-btn, hr, .cal-heading, .cal-subheading {
    max-width: 720px;
  }
}
