/* ═══════════════════════════════════════════════════════════
   COMPONENTS — All section styles
   ═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.4) 100%
  );
}

/* Subtle red wash to unify the hero image with brand */
.hero__red-wash {
  position: absolute;
  inset: 0;
  background: rgba(196, 30, 42, 0.08);
  mix-blend-mode: color;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  max-width: 680px;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent-hot);
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  .hero__img {
    object-position: 65% center;
  }
  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.4) 50%,
      rgba(10, 10, 10, 0.15) 100%
    );
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 60px;
  }
  .hero__tag::before {
    display: none;
  }
  .hero__content .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE — Animated social proof strip
   ══════════════════════════════════════════════════════════ */

.marquee {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}

/* Fade edges */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

.marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 12px;
}

.marquee__item strong {
  color: var(--accent-hot);
  font-weight: 700;
  margin-right: 6px;
}

.marquee__sep {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ══════════════════════════════════════════════════════════
   VSL — Video Section with Background Image
   ══════════════════════════════════════════════════════════ */

.vsl-wrap {
  position: relative;
  overflow: hidden;
}

.vsl-bg-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.vsl-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0) 40%,
    rgba(10, 10, 10, 0.6) 70%,
    rgba(10, 10, 10, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.vsl-section {
  position: relative;
  padding: 64px var(--container-pad) 80px;
  z-index: 2;
}

.vsl-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.vsl-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.vsl-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.vsl-placeholder:hover .vsl-thumb {
  filter: brightness(0.35);
  transform: scale(1.03);
}

.vsl-play {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.vsl-placeholder:hover .vsl-play {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 24px rgba(196, 30, 42, 0.4));
}

/* Custom Vimeo Player */
.vsl-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.vsl-player__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vsl-player__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vsl-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.vsl-controls.visible {
  opacity: 1;
}

.vsl-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.vsl-controls button:hover {
  opacity: 1;
}

.vsl-controls__progress {
  flex: 1;
  height: 32px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.vsl-controls__bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: height 0.15s ease;
}

.vsl-controls__progress:hover .vsl-controls__bar {
  height: 6px;
}

.vsl-controls__filled {
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.vsl-controls__time {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  min-width: 36px;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vsl-section {
    padding: 48px var(--container-pad) 60px;
  }
  .vsl-frame {
    border-radius: 8px;
  }
  .vsl-play {
    width: 64px;
    height: 64px;
  }
  .vsl-controls {
    gap: 8px;
    padding: 10px 12px;
  }
  .vsl-controls__fs {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   COMPARISON
   ══════════════════════════════════════════════════════════ */

.comparison {
  padding: var(--section-pad) 0;
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.comparison__col {
  padding: 40px;
  border-radius: var(--radius);
}

.comparison__col--weak {
  background: var(--surface);
  border: 1px solid var(--border);
}

.comparison__col--strong {
  background: var(--accent-dim);
  border: 1px solid rgba(196, 30, 42, 0.25);
}

.comparison__heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.comparison__heading--weak {
  color: var(--muted);
}

.comparison__heading--strong {
  color: var(--accent-hot);
  border-bottom-color: var(--accent);
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--faint);
}

.comparison__list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.comparison__col--weak .comparison__list li {
  color: var(--muted);
}

@media (max-width: 768px) {
  .comparison__grid {
    grid-template-columns: 1fr;
  }
  .comparison__col {
    padding: 28px;
  }
}

/* ══════════════════════════════════════════════════════════
   BENTO GRID — Benefits
   ══════════════════════════════════════════════════════════ */

.bento {
  padding: var(--section-pad) 0;
}

.bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "hero hero  viz"
    "intrusive patterns viz"
    "regulation regulation accel";
  gap: 20px;
  margin-top: 40px;
}

.bento__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento__card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 30, 42, 0.3);
}

.bento__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

/* Grid placements */
.bento__card--hero       { grid-area: hero; }
.bento__card--intrusive  { grid-area: intrusive; }
.bento__card--patterns   { grid-area: patterns; }
.bento__card--viz        { grid-area: viz; }
.bento__card--accel      { grid-area: accel; }
.bento__card--regulation { grid-area: regulation; }

/* Hero card — large */
.bento__card--hero {
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(196, 30, 42, 0.06) 100%);
}
.bento__card--hero h3 { font-size: 26px; }

/* Viz card — tall */
.bento__card--viz {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(196, 30, 42, 0.04) 100%);
}

/* Regulation card — wide */
.bento__card--regulation {
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.bento__card--regulation .bento__text { flex: 1; }

.bento__icon {
  margin-bottom: 20px;
}

/* Decorative visuals (desktop only) */
.bento__visual {
  opacity: 0.25;
  pointer-events: none;
}

.bento__visual--shield {
  position: absolute;
  right: 28px;
  bottom: 20px;
}

.bento__card--viz .bento__visual {
  margin-top: auto;
  padding-top: 32px;
  text-align: center;
}

.bento__stat {
  flex-shrink: 0;
  text-align: center;
  padding: 20px 28px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  border: 1px solid rgba(196, 30, 42, 0.2);
}

.bento__stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-hot);
  line-height: 1;
}

.bento__stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.bento__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .bento__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero hero"
      "intrusive patterns"
      "viz accel"
      "regulation regulation";
  }
}

/* Mobile — uniform grid, no bento */
@media (max-width: 520px) {
  .bento__grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 16px;
  }
  .bento__card {
    grid-area: auto !important;
    padding: 28px 24px;
  }
  .bento__card--hero {
    padding: 28px 24px;
    background: var(--surface);
  }
  .bento__card--hero h3 {
    font-size: 20px;
  }
  .bento__visual,
  .bento__stat {
    display: none;
  }
  .bento__card--regulation {
    display: block;
  }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */

.testimonials {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonials__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonials__photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.testimonials__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.testimonials__card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
  padding: 24px 28px 0;
}

.testimonials__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  padding: 0 28px;
}

.testimonials__title {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 4px;
  padding: 0 28px;
}

/* Bottom padding on last visible element in card */
.testimonials__card .testimonials__title:last-child {
  padding-bottom: 24px;
}

.testimonials__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease;
  cursor: pointer;
}

.testimonials__dots .dot.active {
  background: var(--accent);
}

.testimonials__dots {
  display: none;
}

@media (max-width: 960px) {
  .testimonials__track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials__track {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   THE EDGE + COMPARISON (combined)
   ══════════════════════════════════════════════════════════ */

.edge {
  padding: var(--section-pad) 0;
}

.edge__combined p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.edge__tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white) !important;
  text-transform: uppercase;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--accent);
}

/* Edge Read More */
.edge__more-wrap {
  margin-bottom: 40px;
}

.edge__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-hot);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 8px 0;
}

.edge__read-more:hover {
  color: var(--white);
}

.edge__read-more svg {
  transition: transform 0.3s ease;
}

.edge__read-more.open svg {
  transform: rotate(180deg);
}

.edge__expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.edge__expanded.open {
  max-height: 500px;
  margin-top: 20px;
}

/* Comparison grid within edge */
.edge__combined .comparison__grid {
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════════
   AUDIENCE — Is This For Me?
   ══════════════════════════════════════════════════════════ */

.audience {
  padding: var(--section-pad) 0;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.audience__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.audience__card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 42, 0.3);
}

.audience__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.audience__card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.audience__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--faint);
}

@media (max-width: 960px) {
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .audience__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */

.about {
  padding: var(--section-pad) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.about__images {
  display: flex;
  flex-direction: column;
}

.about__headshot {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--accent);
}

.about__text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-hot);
  font-style: italic;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--accent);
  margin: 28px 0;
}

/* Read More */
.about__more-wrap {
  margin-top: 4px;
}

.about__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-hot);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 8px 0;
}

.about__read-more:hover {
  color: var(--white);
}

.about__read-more svg {
  transition: transform 0.3s ease;
}

.about__read-more.open svg {
  transform: rotate(180deg);
}

.about__expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.about__expanded.open {
  max-height: 400px;
  margin-top: 20px;
}

.about__expanded p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__headshot {
    max-width: 320px;
  }
}

/* ══════════════════════════════════════════════════════════
   VERTICAL STEPS — Process
   ══════════════════════════════════════════════════════════ */

.vsteps {
  padding: var(--section-pad) 0;
}

.vsteps__list {
  position: relative;
  margin-top: 48px;
}

/* Connector line */
.vsteps__list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 39px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-dim) 90%, transparent);
}

.vsteps__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  position: relative;
}

.vsteps__num {
  position: relative;
  z-index: 2;
}

.vsteps__num span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-hot);
}

.vsteps__step:first-child .vsteps__num span {
  box-shadow: 0 0 30px rgba(196, 30, 42, 0.3);
}

.vsteps__body {
  padding: 8px 0;
}

.vsteps__body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vsteps__body h3 em {
  font-style: normal;
  color: var(--accent-hot);
}

.vsteps__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--faint);
  max-width: 560px;
}

.vsteps__sub {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.vsteps__sub li {
  font-size: 14px;
  color: var(--faint);
  line-height: 1.6;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vsteps__sub li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.vsteps__sub li strong {
  color: var(--accent-hot);
}

@media (max-width: 768px) {
  .vsteps__list::before {
    left: 27px;
  }
  .vsteps__step {
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .vsteps__num span {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */

.faq {
  padding: var(--section-pad) 0;
}

.faq__list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent-hot);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--faint);
  padding-right: 36px;
}

/* ══════════════════════════════════════════════════════════
   APPLICATION FORM
   ══════════════════════════════════════════════════════════ */

.apply {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.apply__inner {
  max-width: 640px;
  margin: 0 auto;
}

.apply__header {
  text-align: center;
  margin-bottom: 40px;
}

.apply__header .section-subtitle {
  margin: 0 auto;
}

.apply__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.form-group .required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.form-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.form-callout p {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.form-callout ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-callout li {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.form-callout li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.form-word-count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  transition: color 0.2s ease;
}

.form-word-count.warn {
  color: var(--accent-hot);
}

.form-word-count.ok {
  color: #22c55e;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--accent);
}

.form-group .error-msg {
  font-size: 12px;
  color: var(--accent-hot);
  margin-top: 2px;
}

.form-message {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  display: block;
  background: var(--accent-dim);
  border: 1px solid rgba(196, 30, 42, 0.3);
  color: var(--accent-hot);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL VIDEO BUTTON
   ══════════════════════════════════════════════════════════ */

.testimonials__video-btn {
  margin: 16px 28px 24px;
  font-size: 11px !important;
  letter-spacing: 0.06em;
  padding: 10px 16px !important;
  border-color: var(--accent) !important;
  color: var(--accent-hot) !important;
  text-transform: none;
  white-space: normal;
  text-align: left;
  line-height: 1.4;
}

.testimonials__video-btn:hover {
  background: var(--accent-dim) !important;
  border-color: var(--accent-hot) !important;
}

.testimonials__video-btn svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   VIDEO MODAL
   ══════════════════════════════════════════════════════════ */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.open .video-modal__content {
  transform: scale(1);
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background 0.2s ease;
}

.video-modal__close:hover {
  background: var(--accent);
}

.video-modal__player {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__player iframe,
.video-modal__player video {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

.video-modal__info {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.video-modal__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}
