/* ROImonks · Video Creatives — page-level styles
   Tokens come from colors_and_type.css */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: #fff; color: var(--fg-1);
  font-family: var(--font-body); line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ============================================================
   Reusable primitives
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-1);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--rm-teal);
  display: inline-block;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em; padding: 16px 28px; border: 0; border-radius: 2px;
  cursor: pointer; transition: background var(--dur) var(--ease),
    color var(--dur) var(--ease), transform var(--dur) var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn .arr { font-family: var(--font-display); font-weight: 500; font-size: 18px; line-height: 1; }
.btn.orange { background: var(--rm-orange); color: #fff; }
.btn.orange:hover { background: var(--rm-orange-700); }
.btn.teal { background: var(--rm-teal); color: #fff; }
.btn.teal:hover { background: var(--rm-teal-700); }
.btn.ghost-dark { background: transparent; color: #fff; border: 2px solid #fff; padding: 14px 26px; }
.btn.ghost-dark:hover { background: #fff; color: var(--fg-1); }
.btn.lg { padding: 20px 36px; font-size: 17px; }

/* ============================================================
   Marquee — repeating brand taglines, scrolls L→R
   ============================================================ */
.marquee {
  background: var(--rm-black); color: #fff; overflow: hidden;
  border-top: 6px solid var(--rm-teal);
  border-bottom: 6px solid var(--rm-yellow);
}
.marquee__track {
  display: flex; gap: 48px; padding: 14px 0;
  animation: marquee 38s linear infinite;
  width: max-content;
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; letter-spacing: 0.22em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__dot { color: var(--rm-teal); font-size: 12px; }
.marquee__accent { color: var(--rm-orange); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   Shared ROImonks header from homepage
   ============================================================ */
header.site {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--border-1);
}
header.site .bar { display: flex; align-items: center; gap: 28px; padding: 14px 32px; max-width: var(--container); margin: 0 auto; }
header.site .logo { height: 48px; width: auto; }
header.site .cta-head { margin-left: auto; }
header.site .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 26px; border: 0; border-radius: 2px; cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
header.site .btn.orange { background: var(--rm-orange); color: #fff; }
header.site .btn.orange:hover { background: var(--rm-orange-700); }
@media (max-width: 640px) {
  header.site .bar { padding: 12px 20px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--rm-white);
  padding: 72px 0 104px;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 0.92fr;
  gap: 72px; align-items: start;
}
.hero__grid > * { min-width: 0; }
.hero__copy { padding-top: 8px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rm-teal-50); border: 1px solid var(--rm-teal-200);
  color: var(--rm-teal-900);
  font-family: var(--font-display); font-weight: 500;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 14px; margin-bottom: 26px; white-space: nowrap;
}
.hero__tag .sq { width: 9px; height: 9px; background: var(--rm-teal); display: inline-block; }
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 5.4vw, 78px); line-height: 1.02;
  letter-spacing: -0.012em; text-transform: uppercase;
  margin: 0 0 24px; color: var(--fg-1);
}
.hero h1 .accent-teal { color: var(--rm-teal); }
.hero h1 .accent-orange { color: var(--rm-orange); }
.hero__lead {
  font-size: 19px; line-height: 1.55; color: var(--fg-2);
  max-width: 480px; margin: 0 0 36px;
}
.hero__lead b { color: var(--fg-1); font-weight: 700; }
.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cta-note {
  margin: 16px 0 0;
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0.02em; color: var(--fg-3);
}
.cta-note--dark { color: #9A9A98; }
.showreel-cta {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 64px 32px 0;
}
.showreel-cta .cta-note { margin-top: 16px; }
.hero__meta {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border-1);
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 5px; }
.hero__meta-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 34px; line-height: 1; color: var(--rm-teal);
}
.hero__meta-num .inf { display: inline-block; font-size: 1.4em; line-height: 0; vertical-align: -0.1em; }
.hero__meta-lbl {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.06em; color: var(--fg-2); text-transform: uppercase;
}
.hero__trust {
  margin-top: 56px;
  display: flex; flex-direction: column; gap: 16px;
}
.hero__trust-label {
  font-family: var(--font-display); font-weight: 500;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); text-align: center;
}

/* Client-logo marquee (mirrors the ДОВЕРИХА НИ СЕ slider) */
.trust-slider {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.trust-slider__track {
  display: flex; width: max-content;
  animation: trust-marquee 42s linear infinite;
}
.trust-slider:hover .trust-slider__track { animation-play-state: paused; }
.trust-slider__row {
  display: flex; align-items: center; flex-shrink: 0;
}
.trust-slider__logo {
  flex-shrink: 0; width: 132px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 22px;
}
.trust-slider__logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1); opacity: 0.55;
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.trust-slider__logo img:hover { filter: grayscale(0); opacity: 1; }
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Square media frame */
.hero__media { position: relative; display: flex; justify-content: center; align-items: flex-start; padding-top: calc(59px + 0.30 * clamp(44px, 5.4vw, 78px)); }
.hero__frame { position: relative; width: 580px; max-width: 100%; }
.hero__frame-accent {
  position: absolute; inset: 0; z-index: 0;
  background: var(--rm-teal);
  transform: translate(24px, 24px);
}
.phone {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 1 / 1;
  background: #000; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.phone video, .phone__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.phone__poster { z-index: 2; transition: opacity 500ms var(--ease); }
.phone__poster.gone { opacity: 0; pointer-events: none; }
.phone__play {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  color: #fff;
}
.phone__play svg { width: 78px; height: 78px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5)); }
.phone__play.hidden { display: none; }
.phone__sound {
  position: absolute; bottom: 16px; right: 16px; z-index: 5;
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.55); color: #fff; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--dur) var(--ease);
}
.phone__sound:hover { background: var(--rm-orange); }
.phone__sound svg { width: 18px; height: 18px; }

/* Proof chip (top-right of frame) */
.hero__chip {
  position: absolute; top: -18px; right: -18px; z-index: 6;
  background: var(--rm-black); color: #fff;
  font-family: var(--font-display); font-weight: 500;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 16px; box-shadow: var(--shadow-md);
}
.hero__chip b { color: var(--rm-yellow); font-weight: 600; }

/* Proof stat card (bottom-left of frame) */
.hero__proof {
  position: absolute; left: -34px; bottom: -26px; z-index: 6;
  background: #fff; box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--rm-teal);
  padding: 12px 16px; display: flex; align-items: center; gap: 11px;
}
.hero__proof img { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; }
.hero__proof .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; line-height: 1; color: var(--fg-1);
}
.hero__proof .num small { color: var(--rm-teal); font-size: 0.62em; font-weight: 600; }
.hero__proof .lbl {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--fg-2);
  margin-top: 3px; max-width: 110px; line-height: 1.3;
}
.hero__proof .col { display: flex; flex-direction: column; }

/* Hero stripe footer */
.hero__stripes { display: flex; gap: 0; height: 8px; margin-top: 0; }
.hero__stripes .s1 { background: var(--rm-teal); flex: 7; }
.hero__stripes .s2 { background: var(--rm-yellow); flex: 3; }
.hero__stripes .s3 { background: var(--rm-orange); flex: 1; }

/* ============================================================
   SECTION: heading construct shared
   ============================================================ */
.sec { padding: 120px 0; position: relative; }
.sec--alt { background: var(--rm-grey-200); }
.sec--dark { background: var(--rm-black); color: #fff; }

.sec__head { max-width: 880px; margin: 0 auto 64px; text-align: center; }
.sec__head .eyebrow { justify-content: center; }
.sec__head h2 {
  margin: 18px 0 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.08;
  letter-spacing: -0.005em; text-transform: uppercase;
}
.sec__head h2 .accent-teal { color: var(--rm-teal); }
.sec__head h2 .accent-orange { color: var(--rm-orange); }
.sec__head p {
  font-size: 18px; color: var(--fg-2); margin: 18px auto 0; max-width: 640px;
}
.sec--dark .sec__head p { color: #BBBBB9; }
.sec--dark .sec__head h2 { color: #fff; }
.sec--dark .eyebrow { color: #fff; }

/* Page-title style backdrop ("VIDEO CREATIVES" faded behind heading) */
.sec__backdrop {
  position: absolute; top: 60px; left: 0; right: 0;
  text-align: center; pointer-events: none; z-index: 0;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(80px, 12vw, 180px); line-height: 0.85;
  color: #DADADA; opacity: 0.55;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.sec--dark .sec__backdrop { color: #2C2C2A; opacity: 1; }
.sec__head, .sec__body { position: relative; z-index: 1; }

/* ============================================================
   COMPARISON  (Traditional vs ROImonks)
   ============================================================ */
.compare {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 0; align-items: stretch;
  box-shadow: var(--shadow-lg);
}
.compare__col { padding: 48px 44px 56px; }
.compare__col--bad { background: var(--rm-grey-200); color: var(--fg-2); }
.compare__col--good {
  background: var(--rm-teal); color: #fff; position: relative; overflow: hidden;
}
.compare__col--good::before {
  /* yellow stripe accent in corner */
  content: ""; position: absolute; top: 0; right: 0;
  width: 0; height: 0; border-left: 80px solid transparent;
  border-top: 80px solid var(--rm-yellow);
}
.compare__tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; margin-bottom: 16px;
}
.compare__col--bad .compare__tag { background: var(--rm-grey-500); color: #fff; }
.compare__col--good .compare__tag { background: var(--rm-black); color: #fff; }
.compare__col h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; line-height: 1.1; text-transform: uppercase;
  letter-spacing: 0.01em; margin: 0 0 32px;
}
.compare__col--bad h3 { color: var(--fg-1); }
.compare__col--good h3 { color: #fff; }
.compare__list { list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px; }
.compare__list li {
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
}
.compare__icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.compare__col--bad .compare__list li {
  color: var(--fg-2); text-decoration: line-through;
  text-decoration-color: rgba(34,34,33,0.4);
  text-decoration-thickness: 1px;
}
.compare__col--bad .compare__icon { color: var(--rm-grey-500); }
.compare__col--good .compare__icon { color: var(--rm-yellow); }
.compare__vs {
  background: var(--rm-black); color: var(--rm-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 40px; letter-spacing: 0.05em;
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* ============================================================
   PILLARS (What Makes This Work)
   ============================================================ */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pillar {
  background: var(--rm-yellow-50);
  border-top: 4px solid var(--rm-teal);
  padding: 36px 32px 40px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.14em; color: var(--rm-orange);
}
.pillar__icon {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
}
.pillar__icon img { width: 60px; height: 60px; object-fit: contain; }
.pillar h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 1.15;
  text-transform: uppercase; letter-spacing: 0.005em;
  margin: 4px 0 0; color: var(--fg-1);
}
.pillar p {
  font-size: 15px; line-height: 1.6; color: var(--fg-1); margin: 0;
}

/* ============================================================
   SHOWCASE (4 phone frames with looping videos)
   ============================================================ */
.showcase {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.show {
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.show__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  border: 3px solid var(--rm-black);
  border-radius: 32px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease);
}
.show:hover .show__frame { transform: translateY(-6px); }
.show__frame::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 16px; background: var(--rm-black);
  border-radius: 0 0 10px 10px; z-index: 3;
}
.show__frame video { width: 100%; height: 100%; object-fit: cover; border-radius: 29px; }
.show__tag {
  position: absolute; top: 18px; right: 12px; z-index: 4;
  background: var(--rm-orange); color: #fff;
  font-family: var(--font-display); font-weight: 500;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 9px;
}
.show__tag.teal { background: var(--rm-teal); }
.show__tag.yellow { background: var(--rm-yellow); color: var(--fg-1); }
.show__tag.black { background: var(--rm-black); }
.show__cap {
  display: flex; flex-direction: column; gap: 6px;
}
.show__cap h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; line-height: 1.2; text-transform: uppercase;
  letter-spacing: 0.02em; margin: 0; color: var(--fg-1);
}
.show__cap small {
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0.05em; color: var(--fg-3); text-transform: uppercase;
}

/* ============================================================
   PROCESS (4-step timeline)
   ============================================================ */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process::before {
  content: ""; position: absolute; top: 60px; left: 8%; right: 8%;
  height: 4px;
  background: linear-gradient(to right,
    var(--rm-teal) 0 25%, var(--rm-yellow) 25% 50%,
    var(--rm-orange) 50% 75%, var(--rm-teal) 75% 100%);
  z-index: 0;
}
.step {
  position: relative; z-index: 1; padding: 0 16px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px;
}
.step__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 120px; line-height: 1; color: var(--fg-1);
  background: #fff; padding: 0 18px 4px 0;
  position: relative; letter-spacing: -0.02em;
}
.sec--alt .step__num { background: var(--rm-grey-200); }
.step__num::before {
  content: ""; position: absolute; bottom: 12px; left: 0;
  width: 56px; height: 6px; background: var(--rm-teal);
}
.step:nth-child(2) .step__num::before { background: var(--rm-yellow); }
.step:nth-child(3) .step__num::before { background: var(--rm-orange); }
.step:nth-child(4) .step__num::before { background: var(--rm-teal); }
.step h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.15; text-transform: uppercase;
  letter-spacing: 0.005em; margin: 0; color: var(--fg-1);
}
.step p {
  font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0;
}

/* ============================================================
   STATS (dark band, animated counters)
   ============================================================ */
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.stat-cell {
  padding: 0; position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px;
}
.stat-cell__icon { width: 80px; height: 80px; }
.stat-cell__icon img { width: 100%; height: 100%; object-fit: contain; }
.stat-cell__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(80px, 11vw, 160px); line-height: 0.92;
  color: var(--rm-teal); letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.stat-cell__num small {
  font-size: 0.42em; color: var(--rm-yellow); font-weight: 600;
  letter-spacing: 0;
}
.stat-cell__lbl {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; line-height: 1.2; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff; max-width: 360px;
}
.stat-cell__lbl b { color: var(--rm-yellow); font-weight: 500; }

/* Single centered stat variant */
.stats--single { grid-template-columns: 1fr; }
.stat-cell--center {
  align-items: center; text-align: center;
}
.stat-cell--center .stat-cell__num { justify-content: center; }
.stat-cell--center .stat-cell__lbl { max-width: 480px; }
.stats--single .stat-cell--center .stat-cell__num {
  font-size: clamp(110px, 16vw, 220px);
}

/* ============================================================
   WHY US — 3 simple cards
   ============================================================ */
.whyus { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.why {
  padding: 40px 36px; background: #fff;
  border: 1px solid var(--border-1);
  display: flex; flex-direction: column; gap: 18px;
  transition: background var(--dur) var(--ease);
}
.why + .why { border-left: 0; }
.why:hover { background: var(--rm-teal-50); }
.why__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rm-teal);
}
.why__icon svg { width: 56px; height: 56px; }
.why h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.15; text-transform: uppercase;
  letter-spacing: 0.01em; margin: 0; color: var(--fg-1);
}
.why p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--fg-2); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-band {
  background: var(--rm-black); color: #fff;
  padding: 100px 32px; position: relative; overflow: hidden;
}
.cta-band__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin: 18px 0 0; color: #fff;
}
.cta-band h2 .accent-teal { color: var(--rm-teal); }
.cta-band h2 .accent-orange { color: var(--rm-orange); }
.cta-band__right { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.cta-band__right p { color: #BBBBB9; font-size: 17px; line-height: 1.55; max-width: 380px; margin: 0; }
.cta-band__arrow {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%) rotate(-12deg);
  width: 320px; opacity: 0.18; z-index: 0;
}
.cta-band .eyebrow { color: #fff; }
.cta-band .eyebrow::before { background: var(--rm-orange); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq__grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--border-2);
}
.faq-item {
  border-bottom: 1px solid var(--border-2);
  background: #fff;
  transition: background var(--dur) var(--ease);
}
.faq-item.open { background: var(--rm-teal-50); }
.faq-item button {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 26px 0; cursor: pointer;
  display: grid; grid-template-columns: 48px 1fr 32px; gap: 20px;
  align-items: center;
}
.faq-item__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px; letter-spacing: 0.14em; color: var(--rm-teal);
}
.faq-item__q {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.25; color: var(--fg-1);
  text-transform: uppercase; letter-spacing: 0.005em;
}
.faq-item__icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--rm-black); color: #fff;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-item.open .faq-item__icon { background: var(--rm-orange); transform: rotate(45deg); }
.faq-item__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease);
}
.faq-item.open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__body > div { overflow: hidden; }
.faq-item__body p {
  margin: 0 60px 32px 68px; padding: 0;
  font-size: 16px; line-height: 1.7; color: var(--fg-2); max-width: 760px;
}

/* ============================================================
   Footer spacer (no real footer, but a tasteful bottom band)
   ============================================================ */
.bottom-rule {
  height: 8px; display: flex;
}
.bottom-rule .a { background: var(--rm-teal); flex: 5; }
.bottom-rule .b { background: var(--rm-yellow); flex: 3; }
.bottom-rule .c { background: var(--rm-orange); flex: 1; }
.bottom-rule .d { background: var(--rm-black); flex: 4; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .trust-slider__track { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  /* Stack: copy → CTAs + note → video → meta stats → trust logos */
  .hero__grid { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  .hero__copy { display: contents; }
  .hero__ctas { width: 100%; }
  .hero__media { order: 1; width: 100%; align-self: stretch; padding-top: 0; margin-top: 44px; }
  .hero__meta { order: 2; width: 100%; }
  .compare { grid-template-columns: minmax(0, 1fr); }
  .compare__vs { writing-mode: initial; transform: none; padding: 18px; font-size: 24px; letter-spacing: 0.1em; text-align: center; }
  .pillars, .showcase, .process, .whyus { grid-template-columns: 1fr 1fr; }
  .whyus { gap: 16px; }
  .why + .why { border-left: 1px solid var(--border-1); }
  .stats { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  html, body { overflow-x: clip; }
  .container, .container-wide, .container-narrow { padding: 0 24px; }
  .sec { padding: 72px 0; }
  .sec__head { margin-bottom: 48px; }
  .sec__head p { font-size: 16px; }
  .sec__backdrop { font-size: 56px; top: 48px; }
  .pillars, .process, .whyus { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .show__frame { border-radius: 22px; }
  .show__frame video { border-radius: 19px; }
  .show__frame::before { width: 52px; height: 12px; border-radius: 0 0 8px 8px; }
  .show__tag { top: 12px; right: 8px; font-size: 10px; padding: 4px 7px; }
  .show__cap h4 { font-size: 15px; }
  .show__cap small { font-size: 11px; }
  .process::before { display: none; }
  .step { padding: 0; }
  .step__num { font-size: 80px; }
  .hero { padding: 56px 0 72px; }
  .hero__tag { white-space: normal; line-height: 1.5; }
  .hero h1 { font-size: 36px; }
  .hero__lead { font-size: 17px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .btn.lg { padding: 18px 24px; font-size: 16px; white-space: normal; text-align: center; }
  .hero__meta { gap: 24px 32px; }
  .hero__frame { width: 100%; }
  .hero__frame-accent { transform: translate(14px, 14px); }
  .hero__proof { left: -10px; bottom: -18px; padding: 10px 12px; }
  .hero__proof .num { font-size: 22px; }
  .hero__chip { top: -14px; right: -8px; font-size: 11px; padding: 9px 12px; }
  .compare__col { padding: 36px 24px 44px; }
  .compare__col h3 { font-size: 26px; margin-bottom: 24px; }
  .compare__vs { font-size: 18px; padding: 16px 12px; }
  .pillar { padding: 28px 24px 34px; }
  .why { padding: 32px 24px; }
  .showreel-cta { padding: 48px 0 0; }
  .showreel-cta .btn { width: 100%; }
  .cta-band { padding: 72px 24px; }
  .cta-band__inner { gap: 40px; }
  .cta-band__right { align-items: stretch; }
  .cta-band__right .btn { width: 100%; }
  .faq-item button { grid-template-columns: 34px 1fr 28px; gap: 12px; padding: 22px 0; }
  .faq-item__q { font-size: 18px; }
  .faq-item__body p { margin: 0 0 28px 46px; }
  .contact-cta__panel { padding: 48px 24px 44px; }
  .contact-cta__panel > p { font-size: 16px; }
  .contact-cta__actions { width: 100%; }
  .contact-cta__actions .btn { width: 100%; }
}
