/* ============================================================
   Order — Car configurator
   ------------------------------------------------------------
   Figma referansı: /UI/Order (4621:36874)
   Single-page configurator: version → color → wheels → interior
   → accessoires → protection → résumé. Reserve.html'a feed eder.
   ============================================================ */

.order-page main { background: var(--color-bg); }

.c-order {
  padding-top: var(--navbar-h);
  padding-bottom: var(--s-20);
}

/* === Hero strip with car preview ========================= */
.c-order-hero {
  position: relative;
  background: var(--gray-50);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.c-order-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--s-10) var(--gutter-desktop);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}

@media (max-width: 980px) {
  .c-order-hero__inner {
    grid-template-columns: 1fr;
    padding: var(--s-6) var(--gutter-mobile);
    gap: var(--s-4);
  }
}

.c-order-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--s-3);
}

.c-order-hero__breadcrumb a { color: var(--color-text-muted); transition: color var(--t-fast) var(--ease-out); }
.c-order-hero__breadcrumb a:hover { color: var(--color-text-strong); }

.c-order-hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0 0 var(--s-2);
}

.c-order-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-text-strong);
  margin: 0 0 var(--s-3);
}

.c-order-hero__sub {
  font-size: var(--fs-base);
  color: var(--color-text);
  margin: 0 0 var(--s-4);
  max-width: 420px;
}

.c-order-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
}

.c-order-hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.c-order-hero__meta-key { font-size: var(--fs-xs); color: var(--color-text-muted); }
.c-order-hero__meta-val { font-size: var(--fs-md); font-weight: 700; color: var(--color-text-strong); }

.c-order-hero__img {
  height: 360px;
  background: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter var(--t-base) var(--ease-out);
}

@media (max-width: 980px) { .c-order-hero__img { height: 220px; } }

/* === Layout: configurator + sticky summary =============== */
.c-order-body {
  max-width: 1280px;
  margin: var(--s-10) auto 0;
  padding-inline: var(--gutter-desktop);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s-10);
  align-items: flex-start;
}

@media (max-width: 980px) {
  .c-order-body {
    grid-template-columns: 1fr;
    padding-inline: var(--gutter-mobile);
    gap: var(--s-6);
  }
}

.c-order-config {
  display: flex;
  flex-direction: column;
  gap: var(--s-10);
}

/* === Section blocks ====================================== */
.c-order-sec {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
}

@media (max-width: 720px) { .c-order-sec { padding: var(--s-5); } }

.c-order-sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.c-order-sec__heading {
  flex: 1;
  min-width: 0;
}

.c-order-sec__step {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--brand-red);
}

.c-order-sec__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--color-text-strong);
  margin: 4px 0 0;
}

.c-order-sec__sub {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin: 4px 0 0;
}

/* === Grade cards (version selector) ====================== */
.c-grade-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

@media (max-width: 720px) { .c-grade-list { grid-template-columns: 1fr; } }

.c-grade {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--s-5);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  text-align: left;
}

.c-grade:hover { border-color: var(--color-border-strong); }

.c-grade.is-selected {
  border-color: var(--brand-black);
  background: var(--gray-25);
  box-shadow: 0 0 0 1px var(--brand-black);
}

.c-grade__check {
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}

.c-grade.is-selected .c-grade__check {
  background: var(--brand-black);
  border-color: var(--brand-black);
  color: var(--white);
}

.c-grade.is-selected .c-grade__check svg { display: block; }
.c-grade__check svg { width: 12px; height: 12px; display: none; }

.c-grade__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-text-strong);
  margin: 0;
}

.c-grade__tagline {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin: 0;
}

.c-grade__badges { display: flex; flex-wrap: wrap; gap: 6px; }

.c-grade__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.c-grade__badge--gray { background: var(--gray-100); color: var(--gray-700); }
.c-grade__badge--blue { background: rgba(11, 165, 236, 0.10); color: #0586BD; }
.c-grade__badge--green { background: rgba(8, 151, 41, 0.10); color: #087029; }

.c-grade__price-row {
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.c-grade__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-text-strong);
}

.c-grade__price small {
  font-weight: 500;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-left: 4px;
}

/* === Color swatch cards (exterior, interior, wheels) ===== */
.c-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: stretch;
}

.c-swatch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
  width: 88px;
  padding: var(--s-2) var(--s-2) var(--s-3);
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: border-color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}

.c-swatch:hover { background: var(--gray-25); }

.c-swatch.is-selected {
  border-color: var(--brand-black);
  background: var(--white);
}

.c-swatch__dot {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  position: relative;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out);
}

.c-swatch:hover .c-swatch__dot { transform: scale(1.06); }

.c-swatch.is-selected .c-swatch__dot {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--brand-black);
}

/* For wheels — show a wheel-like radial */
.c-swatch__wheel {
  width: 52px; height: 52px;
  border-radius: 999px;
  position: relative;
  background:
    radial-gradient(circle, transparent 32%, currentColor 33%, currentColor 36%, transparent 37%, transparent 44%, currentColor 45%, currentColor 48%, transparent 49%, transparent 62%, currentColor 63%, currentColor 65%, transparent 66%),
    var(--wheel-tone, #C4C4C4);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.18);
}

.c-swatch__wheel.is-dark {
  background:
    radial-gradient(circle, transparent 32%, currentColor 33%, currentColor 36%, transparent 37%, transparent 44%, currentColor 45%, currentColor 48%, transparent 49%, transparent 62%, currentColor 63%, currentColor 65%, transparent 66%),
    #1C1C1C;
  color: rgba(255, 255, 255, 0.25);
}

.c-swatch__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-text-strong);
  line-height: 1.3;
}

.c-swatch__price {
  font-size: 11px;
  color: var(--color-text-muted);
}

.c-swatch__price--included { color: #087029; font-weight: 600; }

/* === Accessory list ====================================== */
.c-acc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

@media (max-width: 720px) { .c-acc-list { grid-template-columns: 1fr; } }

.c-acc {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-4);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}

.c-acc:hover { border-color: var(--color-border-strong); }

.c-acc.is-selected {
  border-color: var(--brand-black);
  background: var(--gray-25);
}

.c-acc input { position: absolute; opacity: 0; pointer-events: none; }

.c-acc__check {
  width: 20px; height: 20px;
  border-radius: 4px;
  border: 1.5px solid var(--color-border-strong);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}

.c-acc.is-selected .c-acc__check {
  background: var(--brand-black);
  border-color: var(--brand-black);
}

.c-acc.is-selected .c-acc__check::after {
  content: "";
  width: 6px; height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.c-acc__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }

.c-acc__name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-text-strong);
}

.c-acc__desc {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.c-acc__price {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--color-text-strong);
  white-space: nowrap;
}

/* === Protection plan radio cards ========================= */
.c-plan-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

@media (max-width: 720px) { .c-plan-list { grid-template-columns: 1fr; } }

.c-plan {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: border-color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}

.c-plan:hover { border-color: var(--color-border-strong); }

.c-plan.is-selected {
  border-color: var(--brand-black);
  background: var(--gray-25);
  box-shadow: 0 0 0 1px var(--brand-black);
}

.c-plan__check {
  position: absolute;
  top: var(--s-4); right: var(--s-4);
  width: 20px; height: 20px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border-strong);
  transition: background var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}

.c-plan.is-selected .c-plan__check {
  background: var(--brand-black);
  border-color: var(--brand-black);
}

.c-plan.is-selected .c-plan__check::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: var(--white);
}

.c-plan__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--color-text-strong);
  margin: 0;
  padding-right: var(--s-6);
}

.c-plan__desc {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.c-plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-plan__features li {
  font-size: 11px;
  color: var(--color-text);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.c-plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: #1F8A4C;
  font-weight: 700;
}

.c-plan__price {
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.c-plan__price-label { font-size: var(--fs-xs); color: var(--color-text-muted); }
.c-plan__price-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-text-strong);
}

/* === Summary card (right column) ========================= */
.c-order-summary {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--navbar-h) + var(--s-4));
  max-height: calc(100vh - var(--navbar-h) - var(--s-8));
  display: flex;
  flex-direction: column;
}

.c-order-summary__head {
  padding: var(--s-5) var(--s-5) var(--s-3);
  border-bottom: 1px solid var(--color-border);
}

.c-order-summary__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-text-strong);
  margin: 0;
}

.c-order-summary__grade {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0;
}

.c-order-summary__preview {
  height: 140px;
  background-size: 92% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--gray-25);
  border-bottom: 1px solid var(--color-border);
  transition: filter var(--t-base) var(--ease-out);
}

.c-order-summary__body {
  padding: var(--s-3) var(--s-5);
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.c-summary-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  padding: 6px 0;
}

.c-summary-line__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.c-summary-line__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.c-summary-line__val {
  color: var(--color-text-strong);
  font-weight: 500;
}

.c-summary-line__price {
  color: var(--color-text-strong);
  font-weight: 600;
  white-space: nowrap;
}

.c-summary-line__price--included {
  color: #087029;
  font-size: var(--fs-xs);
}

.c-summary-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--s-2) 0;
}

.c-order-summary__total {
  padding: var(--s-4) var(--s-5);
  background: var(--gray-25);
  border-top: 1px solid var(--color-border);
}

.c-order-summary__total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
}

.c-order-summary__total-row + .c-order-summary__total-row { margin-top: var(--s-2); }

.c-order-summary__total-key { font-size: var(--fs-sm); color: var(--color-text-strong); font-weight: 600; }

.c-order-summary__total-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--color-text-strong);
  letter-spacing: -0.01em;
}

.c-order-summary__monthly-val {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.c-order-summary__monthly-val strong {
  color: var(--brand-red);
  font-weight: 700;
}

.c-order-summary__actions {
  padding: var(--s-4) var(--s-5) var(--s-5);
  background: var(--gray-25);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.c-order-summary__cta {
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--brand-red);
  color: var(--white);
  border: 1px solid var(--brand-red);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
}

.c-order-summary__cta:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.c-order-summary__cta svg { width: 14px; height: 14px; }

.c-order-summary__back {
  height: 44px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-strong);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background var(--t-fast) var(--ease-out);
}

.c-order-summary__back:hover { background: var(--white); }

/* === Mobile sticky bottom bar (alternative to right column on mobile) === */
@media (max-width: 980px) {
  .c-order-summary {
    position: relative;
    top: 0;
    max-height: none;
  }
}

/* === Tab switcher for payment mode (mini, inline) ======= */
.c-pm-tabs {
  display: inline-flex;
  background: var(--gray-100);
  padding: 4px;
  border-radius: var(--radius-pill);
  gap: 2px;
}

.c-pm-tab {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 var(--s-4);
  border-radius: var(--radius-pill);
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
}

.c-pm-tab[aria-pressed="true"] {
  background: var(--white);
  color: var(--color-text-strong);
  box-shadow: var(--shadow-xs);
}

/* ============================================================
   TSS — Safety you can trust slider
   ============================================================ */
.c-tss {
  background: var(--brand-black);
  color: var(--white);
  border: none;
}

.c-tss .c-order-sec__step { color: rgba(255,255,255,0.5); }
.c-tss .c-order-sec__title { color: var(--white); }
.c-tss .c-order-sec__sub { color: rgba(255,255,255,0.6); }

.c-tss__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 var(--s-3);
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--s-2);
  width: fit-content;
}

.c-tss__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1F8A4C;
}

.c-tss__controls {
  display: inline-flex;
  gap: var(--s-2);
}

.c-tss__nav {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out),
              opacity var(--t-fast) var(--ease-out);
}

.c-tss__nav:hover { background: rgba(255,255,255,0.18); }
.c-tss__nav:disabled { opacity: 0.35; cursor: not-allowed; }
.c-tss__nav svg { width: 16px; height: 16px; }

.c-tss__track {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--s-3);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.c-tss__track::-webkit-scrollbar { display: none; }

.c-tss__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}

@media (max-width: 720px) { .c-tss__card { flex: 0 0 260px; } }

.c-tss__card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}

.c-tss__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(255, 0, 34, 0.15), rgba(11, 165, 236, 0.15));
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-tss__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 0, 34, 0.4), transparent 50%),
    radial-gradient(circle at 70% 65%, rgba(11, 165, 236, 0.35), transparent 55%);
  mix-blend-mode: screen;
}

.c-tss__play {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--brand-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}

.c-tss__card:hover .c-tss__play { transform: scale(1.08); background: var(--white); }
.c-tss__play svg { width: 22px; height: 22px; margin-left: 2px; }

.c-tss__duration {
  position: absolute;
  bottom: var(--s-3);
  right: var(--s-3);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  z-index: 2;
}

.c-tss__body {
  padding: var(--s-4) var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}

.c-tss__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--white);
  margin: 0;
}

.c-tss__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}

.c-tss__cta {
  margin-top: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.08);
  width: fit-content;
}

.c-tss__cta::after {
  content: "→";
  transition: transform var(--t-fast) var(--ease-out);
}

.c-tss__cta:hover::after { transform: translateX(3px); }

/* Video lightbox */
.c-tss-lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0,0,0,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}

.c-tss-lightbox[aria-hidden="false"] { opacity: 1; pointer-events: auto; }

.c-tss-lightbox__panel {
  width: min(880px, calc(100% - 32px));
  background: var(--brand-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.c-tss-lightbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}

.c-tss-lightbox__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  margin: 0;
}

.c-tss-lightbox__close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-tss-lightbox__close svg { width: 16px; height: 16px; }

.c-tss-lightbox__video {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 0, 34, 0.25), transparent 50%),
    radial-gradient(circle at 70% 65%, rgba(11, 165, 236, 0.3), transparent 55%),
    var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-sm);
  text-align: center;
  padding: var(--s-6);
}
