/* ================================================================
   REEL DEAL TRAILERS — Shared Design System
   Inspired by Terminal Industries: dark/light alternation,
   cross-corner card motif, notch section transitions
   Colors: #0E1818 dark · #EA580C orange · #FFFFFF white
   Type: Syne 800 display · Inter body
================================================================ */

/* RESET & BASE ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #FFFFFF;
  color: #0E1818;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: #EA580C; color: #fff; }

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

/* TOKENS ------------------------------------------------------- */
:root {
  /* Colors */
  --dark:         #0E1818;
  --dark-2:       #162222;
  --dark-3:       #1E2C2C;
  --orange:       #EA580C;
  --orange-lt:    #F97316;
  --orange-dk:    #C2410C;
  --white:        #FFFFFF;
  --off-white:    #F5F3EF;
  --light-2:      #EDEAE5;
  --text-on-dark: #EAE8E4;
  --muted-dark:   #728080;
  --muted-light:  #5A6260;
  --border-dark:  #1E2C2C;
  --border-light: #D8D4CE;

  /* Spacing */
  --pad-x:     clamp(1.5rem, 5vw, 5rem);
  --pad-y:     clamp(4rem, 7vw, 7rem);
  --max-w:     1240px;
}

/* FOCUS VISIBLE ------------------------------------------------ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* TYPOGRAPHY SCALE --------------------------------------------- */
.display {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-transform: uppercase;
}
.display-xl { font-size: clamp(2rem, 3.8vw, 3.8rem); }
.display-lg { font-size: clamp(2.5rem, 5vw, 5.5rem); }
.display-md { font-size: clamp(1.8rem, 3.5vw, 3.5rem); }
.display-sm { font-size: clamp(1.3rem, 2.5vw, 2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--orange); }
.eyebrow.on-light { color: var(--orange); }

/* LAYOUT ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* SECTIONS ----------------------------------------------------- */
.section { padding: var(--pad-y) 0; position: relative; }
.section.dark  { background: var(--dark); }
.section.dark-2 { background: var(--dark-2); }
.section.white { background: var(--white); }
.section.off-white { background: var(--off-white); }

/* TEXT COLORS ON SECTIONS */
.dark .section-label  { color: var(--orange); }
.dark .section-hed    { color: var(--text-on-dark); }
.dark .section-body   { color: var(--muted-dark); }
.dark .divider        { border-color: var(--border-dark); }

.white .section-label { color: var(--orange); }
.white .section-hed   { color: var(--dark); }
.white .section-body  { color: var(--muted-light); }

.off-white .section-label { color: var(--orange); }
.off-white .section-hed   { color: var(--dark); }
.off-white .section-body  { color: var(--muted-light); }

.section-label { margin-bottom: 1rem; }
.section-hed   { margin-bottom: 1.25rem; }
.section-body  {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  max-width: 560px;
}

/* NOTCH SECTION TRANSITION ------------------------------------- */
/* dark → white: triangle points down into white */
.notch-down {
  position: relative;
  padding-bottom: calc(var(--pad-y) + 48px);
}
.notch-down::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  border: 48px solid transparent;
  border-top-color: var(--dark);
  z-index: 2;
}
/* white → dark: triangle points down into dark */
.notch-down-rev {
  position: relative;
  padding-bottom: calc(var(--pad-y) + 48px);
}
.notch-down-rev::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  border: 48px solid transparent;
  border-top-color: var(--white);
  z-index: 2;
}
/* off-white → dark */
.notch-down-offwhite::after { border-top-color: var(--off-white); }

/* CROSS CORNER CARD MOTIF ------------------------------------- */
/* Usage: wrap card in .cross-card, add spans .cx.tl/.tr/.bl/.br */
.cross-card { position: relative; }
.cx {
  position: absolute;
  width: 12px; height: 12px;
  z-index: 1;
}
.cx::before, .cx::after {
  content: '';
  position: absolute;
  background: var(--orange);
}
.cx::before { width: 100%; height: 1px; top: 50%; }
.cx::after  { height: 100%; width: 1px; left: 50%; top: 0; }
.cx.tl { top: -6px; left: -6px; }
.cx.tr { top: -6px; right: -6px; }
.cx.bl { bottom: -6px; left: -6px; }
.cx.br { bottom: -6px; right: -6px; }

/* BUTTONS ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  touch-action: manipulation;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover { background: var(--orange-lt); }
.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border-light);
}
.btn-outline-dark:hover {
  border-color: var(--dark);
}
.btn svg { flex-shrink: 0; }

/* NAV --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  height: 66px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}
.nav-logo img { height: 36px; width: auto; }
/* White logo on all dark backgrounds — nav, footer, hero */
img[src="rdt-logo.png"] { filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta { flex-shrink: 0; }

/* Mobile nav toggle (CSS-only) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle-label span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-on-dark);
  transition: transform 0.25s, opacity 0.25s;
}

/* HERO SECTION ----------------------------------------------- */
.hero {
  background: var(--dark);
  display: grid;
  align-content: end;
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
/* subtle diagonal texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    108deg,
    transparent 0px, transparent 3px,
    rgba(255,255,255,0.01) 3px, rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-logo-wrap img {
  width: clamp(200px, 28vw, 420px);
  height: auto;
}
.hero-logo-bottom { display: flex; flex-direction: column; gap: 1.25rem; }
.hero .display-xl {
  color: var(--text-on-dark);
  margin-bottom: 0;
}
.hero .display-xl .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted-dark);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.hero-bar {
  border-top: 1px solid var(--border-dark);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat {
  padding: 0 2rem 0 0;
  border-right: 1px solid var(--border-dark);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-val {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-key {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* PAGE HERO (inner pages) ------------------------------------ */
.page-hero {
  background: var(--dark);
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    108deg,
    transparent 0px, transparent 3px,
    rgba(255,255,255,0.01) 3px, rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .display-lg { color: var(--text-on-dark); margin-bottom: 1rem; }
.page-hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--muted-dark);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 1rem;
}

/* CARDS ------------------------------------------------------- */
.card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.card.on-dark:hover { background: var(--dark-3); border-color: rgba(234,88,12,0.3); }
.card.on-light {
  background: var(--white);
  border-color: var(--border-light);
}
.card.on-light:hover { border-color: var(--orange); }
.card.on-off-white {
  background: var(--off-white);
  border-color: transparent;
  border: 1px solid var(--border-light);
}
.card-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.card-icon {
  width: 44px; height: 44px;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}
.card.on-dark .card-title { color: var(--text-on-dark); }
.card.on-light .card-title { color: var(--dark); }
.card-body {
  font-size: 0.9rem;
  line-height: 1.8;
}
.card.on-dark .card-body { color: var(--muted-dark); }
.card.on-light .card-body { color: var(--muted-light); }

/* GRIDS ------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.grid-2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.grid-2-split.center { align-items: center; }

/* BORDERED GRID (Terminal Industries logo-grid style) */
.grid-bordered {
  display: grid;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}
.grid-bordered > * {
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.grid-bordered.light {
  border-color: var(--border-light);
}
.grid-bordered.light > * {
  border-color: var(--border-light);
}

/* LIST ITEMS -------------------------------------------------- */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.check-list.on-dark li { color: var(--muted-dark); }
.check-list.on-light li { color: var(--muted-light); }

/* DIVIDER ----------------------------------------------------- */
.divider {
  border: none;
  border-top: 1px solid var(--border-dark);
}
.divider.light { border-color: var(--border-light); }

/* TESTIMONIAL CARD -------------------------------------------- */
.t-card {
  padding: 2.5rem;
  border-left: 2px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.t-card.on-dark { background: var(--dark-2); }
.t-card.on-light { background: var(--off-white); }
.t-quote {
  font-size: 1rem;
  line-height: 1.85;
  font-style: italic;
  font-weight: 300;
}
.t-card.on-dark .t-quote { color: var(--text-on-dark); }
.t-card.on-light .t-quote { color: var(--dark); }
.t-author-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.t-author-role {
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.t-card.on-dark .t-author-role { color: var(--muted-dark); }
.t-card.on-light .t-author-role { color: var(--muted-light); }

/* CTA BANNER -------------------------------------------------- */
.cta-banner {
  background: var(--orange);
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-hed {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}
.cta-banner-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}
.btn-cta-white {
  background: #fff;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-cta-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* PROCESS STEPS ----------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-step {
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.25s;
}
.process-step:hover { background: var(--dark-3); }
.process-step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: var(--border-dark);
  margin-bottom: 1.25rem;
  transition: color 0.25s;
}
.process-step:hover .process-step-num { color: var(--orange); }
.process-step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
}
.process-step-body {
  font-size: 0.85rem;
  color: var(--muted-dark);
  line-height: 1.8;
}

/* FAQ --------------------------------------------------------- */
.faq-list { margin-top: 2.5rem; }
details.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
details.faq-item.light {
  border-color: var(--border-light);
}
details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.25s, border-color 0.2s;
}
details.faq-item summary:hover .faq-plus { opacity: 1; }
details.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  border-color: var(--orange);
  color: var(--orange);
  opacity: 1;
}
details.faq-item.dark-faq summary { color: var(--text-on-dark); }
details.faq-item.dark-faq summary:hover { color: var(--white); }
details.faq-item.light-faq summary { color: var(--dark); }
details.faq-item.light-faq summary:hover { color: var(--orange-dk); }
.faq-answer {
  padding-bottom: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.9;
  max-width: 700px;
}
.faq-answer.on-dark { color: var(--muted-dark); }
.faq-answer.on-light { color: var(--muted-light); }

/* FORM ------------------------------------------------------- */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  color: var(--dark);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  min-height: 48px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #AAA6A0; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #fff; }

/* FOOTER ----------------------------------------------------- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
}
.footer-top {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 4rem;
  align-items: start;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo img { height: 40px; width: auto; }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted-dark);
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 3rem; }
.footer-nav a {
  font-size: 0.8rem;
  color: var(--muted-dark);
  transition: color 0.2s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.04em;
}
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted-dark);
  transition: color 0.2s;
  min-height: 36px;
}
.footer-contact a svg { color: var(--orange); flex-shrink: 0; }
.footer-contact a:hover { color: var(--text-on-dark); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--muted-dark);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.72rem;
  color: var(--muted-dark);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-on-dark); }

/* UTILITY ---------------------------------------------------- */
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mt-4 { margin-top: 3.5rem; }
.mb-2 { margin-bottom: 1.5rem; }
.flex-gap { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted-dark); }

/* TRAILER CARD ----------------------------------------------- */
.trailer-card {
  border: 1px solid var(--border-dark);
  background: var(--dark-2);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.trailer-card:hover { border-color: rgba(234,88,12,0.4); }
.trailer-card-head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.trailer-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.trailer-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}
.trailer-card-best {
  font-size: 0.85rem;
  color: var(--muted-dark);
  line-height: 1.75;
}
.trailer-card-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trailer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
  padding-top: 1.5rem;
  transition: gap 0.2s;
  min-height: 44px;
}
.trailer-link:hover { gap: 0.85rem; }

/* BLOCKQUOTE -------------------------------------------------- */
.pull-quote {
  border-left: 2px solid var(--orange);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.pull-quote p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-on-dark);
}

/* INDUSTRY ITEM ---------------------------------------------- */
.ind-item {
  padding: 2rem 1.75rem;
  transition: background 0.25s;
}
.ind-item:hover { background: var(--dark-3); }
.ind-icon { width: 36px; height: 36px; color: var(--orange); margin-bottom: 1.25rem; }
.ind-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  margin-bottom: 0.6rem;
}
.ind-desc { font-size: 0.82rem; color: var(--muted-dark); line-height: 1.75; }

/* OPTION ITEM ------------------------------------------------- */
.opt-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted-light);
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border-light);
}
.opt-item svg { color: var(--orange); flex-shrink: 0; }

/* TICKER ----------------------------------------------------- */
.ticker { background: var(--orange); padding: 0.8rem 0; overflow: hidden; }
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.t-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
}
.t-sep { color: rgba(255,255,255,0.35); padding: 0 0.25rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* RESPONSIVE ------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-stat { border-right: none; padding-right: 0; }
}

@media (max-width: 768px) {
  .grid-2-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .notch-down, .notch-down-rev { padding-bottom: calc(var(--pad-y) + 32px); }
  .notch-down::after, .notch-down-rev::after { border-width: 32px; }
}

@media (max-width: 640px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
}

@media (max-width: 540px) {
  .nav-toggle-label { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle:checked ~ .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--dark);
    padding: 1rem var(--pad-x) 2rem;
    border-bottom: 1px solid var(--border-dark);
    gap: 0;
  }
  .nav-toggle:checked ~ .nav-cta { display: none; }
  .nav-toggle:checked ~ .nav-links a { min-height: 52px; }
  .grid-3 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-bar { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  :root { --pad-x: 1.25rem; }
}
