:root {
  --bg: #1c1c1c;
  --panel: #262626;
  --ink: #f5f5f5;
  --muted: #a3a3a3;
  --line: #404040;
  --red: #ef4444;
  --red-dark: #dc2626;
  --mint: #10b981;
  --gold: #f59e0b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-action {
  border-radius: 999px;
  padding: 9px 13px;
}

.nav-links a:hover,
.header-action:hover {
  background: var(--line);
  color: var(--ink);
}

.header-action {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
}

.section,
.section-band {
  padding-inline: clamp(18px, 4vw, 56px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(calc(100vh - 74px), 820px);
  padding-block: clamp(48px, 7vw, 88px);
  overflow: hidden;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-motion-ball {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-motion-ball--youtube {
  top: clamp(160px, 25%, 260px);
  right: clamp(-240px, -10vw, -110px);
  width: clamp(420px, 46vw, 780px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: var(--red);
  box-shadow: 0 0 0 clamp(12px, 1.8vw, 30px) rgba(239, 68, 68, 0.08),
    0 0 100px rgba(239, 68, 68, 0.24);
  animation: hero-orb-enter 1.35s cubic-bezier(.16, 1, .3, 1) .12s both;
}

@keyframes hero-orb-enter {
  from {
    opacity: 0.15;
    transform: translate(100vw, -50%) scale(.2);
  }
  to {
    opacity: .78;
    transform: translateY(-50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-ball {
    animation: none;
    opacity: .75;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-text,
.section-heading p,
.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 17px;
  cursor: pointer;
  font-weight: 850;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(255, 48, 48, 0.24);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.ghost {
  border-color: var(--line);
  background: var(--panel);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.hero-stat-grid article {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-stat-grid article:last-child {
  border-right: 0;
}

.hero-stat-grid span {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.hero-stat-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

/* Hero video grid — all videos visible like YT Jobs */
.hero-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px;
}

.hero-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #141414;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  width: 100%;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.hero-thumb:hover img {
  transform: scale(1.04);
}

.hero-thumb .play-dot {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.hero-thumb-info {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 8px 6px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  text-align: left;
}

.hero-thumb-info strong,
.hero-thumb-info small {
  display: block;
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
}

.hero-thumb-info small {
  opacity: 0.75;
}

.poster-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 48, 48, 0.95), rgba(25, 24, 23, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.08) 24px 25px);
  color: #fff;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 950;
}

.section {
  padding-block: clamp(58px, 8vw, 104px);
}

.hero {
  padding-bottom: clamp(16px, 3vw, 40px);
}

.portfolio-section {
  padding-top: clamp(24px, 4vw, 48px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.portfolio-heading {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.portfolio-heading-copy {
  margin: 0 auto;
}

.portfolio-heading p {
  margin-right: auto;
  margin-left: auto;
}

.section-copy {
  min-width: 0;
}

.plans-heading {
  align-items: center;
  grid-template-columns: minmax(0, 0.5fr) minmax(400px, 1.1fr);
}

.plan-calculator {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(24, 22, 19, 0.1);
  padding: 18px;
}

.calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.calculator-head span,
.plan-calculator p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.calculator-head strong {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-align: right;
}

.plan-calculator p {
  min-height: 38px;
  margin: 0;
}

.plan-calculator .button {
  width: 100%;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  padding: 9px 13px;
  font-weight: 800;
}

.filter-chip[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

/* video-grid is now category rows — no CSS grid needed */
.video-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hero grid - 3 columns */
.hero-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
}

.hero-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #141414;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.hero-thumb:hover img {
  transform: scale(1.05);
}

.hero-thumb .play-dot {
  right: 9px;
  bottom: 9px;
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.hero-thumb-info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px 14px 10px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
}

.hero-thumb-info strong {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.hero-thumb-info small {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
}
/* Category row sliders (portfolio) */
.video-category-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.video-cat-label {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  color: var(--ink);
}

.row-nav-pair {
  display: flex;
  gap: 6px;
}

.video-row-track {
  overflow: hidden;
  padding-bottom: 6px;
  display: block;
}

.video-row-track.marquee .marquee-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.video-row-track.marquee .marquee-inner:hover {
  animation-play-state: paused !important;
}

.video-category-row:nth-child(even) .video-row-track.marquee .marquee-inner {
  animation: marqueeScrollReverse 40s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 6px)); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translateX(calc(-50% - 6px)); }
  100% { transform: translateX(0); }
}

.video-row-track::-webkit-scrollbar { display: none; }

.video-row-track .video-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* Slider nav buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 140ms, box-shadow 140ms;
}

.slider-nav:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.slider-nav--prev { left: 6px; }
.slider-nav--next { right: 6px; }

.row-nav-pair .slider-nav {
  position: static;
  transform: none;
  width: 30px;
  height: 30px;
  font-size: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-card,
.price-card,
.method-card,
.process-list article,
.delivery-card,
.availability-day,
.contact-form,
.quote-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.video-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #141414;
  overflow: hidden;
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.035);
}

.play-dot {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  pointer-events: none;
}

.video-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.pill {
  border-radius: 999px;
  background: var(--line);
  padding: 5px 8px;
  font-weight: 750;
}

.video-card h3 {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.video-card p {
  color: var(--muted);
  font-size: 13px;
}

.video-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

.video-stats span {
  border-radius: var(--radius);
  background: var(--panel);
  padding: 7px 6px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.split-section {
  background: #181818;
}

/* Pricing grid - 3 cols per tab */
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
}

.price-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 30px;
}

.price-card p,
.process-list p,
.delivery-card,
.availability-day {
  color: var(--muted);
}

.price-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.price-card li {
  margin: 8px 0;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.method-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(5, minmax(0, 0.38fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--line);
}

.method-card > * {
  min-width: 0;
  background: var(--panel);
  padding: 18px;
}

.method-card h3 {
  margin-bottom: 8px;
}

.method-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.rate-box strong,
.rate-box span {
  display: block;
}

.rate-box strong {
  font-size: 28px;
  line-height: 1;
}

.rate-box span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

/* Prices in green */
.rate-green {
  color: #16a34a !important;
}

.price-label {
  color: #16a34a !important;
}

.price-unit {
  color: var(--muted);
  font-size: 13px;
  margin-top: -2px;
  margin-bottom: 10px;
}

.price-card--highlight {
  border-color: var(--red);
  border-width: 2px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-list article {
  padding: 22px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--red-dark);
  font-weight: 950;
}

.schedule-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.55fr);
  gap: 16px;
  align-items: start;
}

/* ── Week Calendar ─────────────────────────────────── */
.timezone-switcher {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.timezone-switcher strong,
.timezone-switcher small {
  display: block;
}

.timezone-switcher strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timezone-switcher small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.timezone-switcher select {
  min-width: 210px;
  margin: 0;
}

.week-calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px 14px;
  background: #4ade80;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 160ms;
}

.cal-day:last-child {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  padding: 12px;
  border-right: 0;
}

.cal-day:last-child .cal-abbr,
.cal-day:last-child .cal-hours {
  display: none;
}

.cal-day:hover:not(.cal-day--off) {
  background: #22c55e;
}

.cal-day--off {
  background: #ef4444;
  opacity: 1;
}

.cal-abbr {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}

.cal-day-name {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #000;
}

.cal-hours {
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 800;
  white-space: nowrap;
}

.cal-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  margin-top: 2px;
}

.cal-off-badge {
  display: inline-block;
  margin-top: 2px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 48, 48, 0.5);
}

.delivery-card {
  padding: 22px;
}

.delivery-card dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.delivery-card dt {
  color: var(--ink);
  font-weight: 850;
}

.delivery-card dd {
  margin: 4px 0 0;
}

.contact-section {
  background: var(--panel);
  color: var(--ink);
}

.contact-section .eyebrow {
  color: #ff6b6b;
}

.contact-copy p {
  color: var(--muted);
}

/* ── Plan Summary (contact section) ────────────────── */
.plan-summary {
  max-width: 100%;
  margin-top: 24px;
  padding: 24px 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.plan-summary > span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.plan-summary strong {
  display: block;
  font-size: 36px;
  color: #fff;
  line-height: 1.1;
}

.plan-summary small {
  display: block;
  margin-top: 8px;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.plan-note {
  display: block !important;
  margin-top: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.6) !important;
  opacity: 1;
}

/* ── Payment Badges ─────────────────────────────────── */
.payment-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.payment-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.pay-badge--paypal {
  background: #003087;
  border-color: #003087;
}

.pay-badge--paypal::before {
  content: "🅿";
  font-size: 14px;
}

.pay-badge--binance {
  background: #F0B90B;
  border-color: #F0B90B;
  color: #1a1100;
}

.pay-badge--binance::before {
  content: "◆";
  font-size: 11px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

.form-status {
  display: block;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  padding: 12px;
  outline: none;
}

select {
  appearance: none;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

select::-ms-expand {
  display: none;
}

.field-hint {
  margin-top: -2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 48, 48, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .plans-heading,
  .schedule-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .method-card,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .week-calendar {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-action {
    margin-left: auto;
  }

  h1 {
    font-size: 48px;
  }

  .timezone-switcher {
    align-items: stretch;
    flex-direction: column;
  }

  .timezone-switcher select {
    min-width: 0;
    width: 100%;
  }

  .hero-stat-grid,
  .video-grid,
  .pricing-grid,
  .method-card,
  .process-list,
  .week-calendar,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .week-calendar {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stat-grid article:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .form-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ─ Video Modal ────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.video-modal-box {
  position: relative;
  z-index: 1;
  width: min(900px, 95vw);
  border-radius: 12px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: modal-in 220ms ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms;
}

.video-modal-close:hover {
  background: rgba(255,255,255,0.28);
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
  background: var(--surface);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.schedule-section {
  padding-top: clamp(24px, 4vw, 48px);
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: visible;
}

.testimonials-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 48px 4px 48px;
}

.testi-card {
  position: relative;
  overflow: visible;
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow 200ms, transform 200ms;
}

.testi-quote {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  z-index: 10;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

.testi-quote::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #3b82f6 transparent transparent transparent;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
}

.testi-quote--bottom {
  top: auto;
  bottom: -42px;
  animation: float-bottom 3s ease-in-out infinite;
}

.testi-quote--bottom::after {
  bottom: auto;
  top: -6px;
  border-width: 0 6px 6px;
  border-color: transparent transparent #3b82f6 transparent;
}

@keyframes float-bottom {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 4px); }
}

.testi-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.testi-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.testi-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.testi-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1d9bf0;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 1000;
  color: #fff;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.34);
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testi-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.testi-handle {
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
}

.testi-subscribers {
  display: block;
  color: rgba(0, 0, 0, 0.85);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section,
  .section-band {
    padding-inline: 18px;
  }

  .testimonials-section {
    padding-top: 34px;
  }

  .testimonials-section .section-heading.compact {
    text-align: center;
    margin-inline: auto;
  }

  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    padding: 22px 0 24px;
  }

  .testi-card {
    width: 100%;
    min-width: 0;
    padding: 7px 8px;
    gap: 7px;
    border-radius: 20px;
  }

  .testi-header {
    width: 100%;
    min-width: 0;
    gap: 7px;
  }

  .testi-avatar {
    width: 34px;
    height: 34px;
  }

  .testi-verified {
    width: 16px;
    height: 16px;
    border-width: 2px;
    font-size: 9px;
  }

  .testi-name,
  .testi-handle,
  .testi-subscribers {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .testi-name {
    font-size: 12px;
  }

  .testi-handle {
    font-size: 10px;
  }

  .testi-subscribers {
    font-size: 9px;
  }

  .testi-quote {
    max-width: 128px;
    top: -27px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .testi-quote--bottom {
    top: auto;
    bottom: -27px;
  }

  .schedule-section {
    padding-top: 30px;
  }

  .schedule-section .section-heading.compact {
    max-width: 100%;
  }

  .schedule-section h2 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .schedule-layout {
    gap: 12px;
    overflow: hidden;
  }

  .timezone-switcher {
    width: 100%;
    min-width: 0;
    padding: 14px;
    border-radius: 12px;
    overflow: hidden;
  }

  .timezone-switcher > div {
    min-width: 0;
  }

  .timezone-switcher small {
    font-size: 11px;
  }

  .week-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .cal-day {
    min-width: 0;
    gap: 4px;
    padding: 12px 6px 10px;
  }

  .cal-day:last-child {
    grid-column: 1 / -1;
  }

  .cal-abbr {
    font-size: 10px;
  }

  .cal-day-name {
    font-size: 13px;
  }

  .cal-hours {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.15;
    white-space: normal;
  }

  .delivery-card {
    padding: 18px;
  }

  .plan-summary {
    padding: 22px;
  }

  .plan-summary strong {
    font-size: 30px;
  }

  .plan-summary small {
    font-size: 38px;
  }

  .payment-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .payment-label,
  .payment-badges small {
    grid-column: 1 / -1;
    margin: 0 !important;
  }

  .pay-badge {
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 9px 10px;
  }
}

@media (max-width: 390px) {
  .section,
  .section-band {
    padding-inline: 14px;
  }

  .testimonials-track {
    gap: 12px 8px;
  }

  .testi-card {
    padding: 6px;
  }

  .testi-avatar {
    width: 30px;
    height: 30px;
  }

  .testi-name {
    font-size: 11px;
  }

  .testi-handle,
  .testi-subscribers {
    font-size: 9px;
  }

  .cal-day {
    padding: 11px 8px;
  }
}

/* Legal Modal */

.legal-modal-container {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-modal-container[hidden] {
  display: none !important;
}
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.legal-modal-box {
  position: relative;
  z-index: 2;
  background: #111111;
  color: #ededed;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  font-family: var(--font-family);
}
.legal-modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid #2a2a2a;
}
.legal-modal-header h2 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}
.legal-modal-body {
  padding: 16px 24px;
  overflow-y: auto;
  font-size: 13.5px;
  line-height: 1.6;
}
.legal-modal-body h3 {
  color: #fff;
  font-size: 15px;
  margin: 20px 0 10px;
}
.legal-modal-body h3:first-child {
  margin-top: 0;
}
.legal-modal-body p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.85);
}
.legal-modal-body ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: rgba(255,255,255,0.85);
}
.legal-modal-body li {
  margin-bottom: 12px;
}
.legal-modal-body li strong {
  color: #fff;
}
.legal-fiscal-guide {
  background: rgba(70, 210, 120, 0.08);
  border: 1px solid rgba(70, 210, 120, 0.45);
  border-radius: 8px;
  margin: 0 0 22px;
  padding: 14px 16px 16px;
}
.legal-fiscal-guide h3 {
  margin: 0 0 8px;
}
.legal-fiscal-guide p {
  margin-bottom: 12px;
}
.legal-fiscal-guide label {
  color: rgba(255,255,255,0.78);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}
.legal-fiscal-select {
  width: 100%;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #ffffff 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, #ffffff 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
    #151515;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  min-height: 44px;
  padding: 10px 38px 10px 12px;
}
.legal-fiscal-select:focus {
  border-color: #46d278;
  box-shadow: 0 0 0 3px rgba(70, 210, 120, 0.18);
  outline: none;
}
.legal-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  background: #151515;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.legal-modal-alert {
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid #ff3c3c;
  color: #ffcccc;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.legal-modal-alert strong {
  color: #ff3c3c;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.legal-modal-alert ol {
  margin: 12px 0 0 0;
  padding-left: 20px;
  color: rgba(255,255,255,0.85);
}

.legal-modal-alert ol li {
  margin-bottom: 8px;
}
