/* ============================================
   UNITRANS — Home page styles
   ============================================ */

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, #050d1f 0%, #0a1428 40%, #0f1d3a 100%);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.95) brightness(0.85);
}

.hero-bg::before {
  content: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 13, 31, 0.85) 0%, rgba(5, 13, 31, 0.6) 35%, rgba(10, 20, 40, 0.35) 70%, rgba(10, 20, 40, 0.25) 100%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(225, 37, 44, 0.18), transparent 70%);
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black, transparent 90%);
}

/* World map silhouette */
.hero-world {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 700px;
  opacity: 0.06;
  z-index: -1;
  pointer-events: none;
}

.hero-arrows {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 4px;
  z-index: 1;
}
.hero-arrows span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 50px 70px;
  border-color: transparent transparent transparent white;
  opacity: 0.95;
}
.hero-arrows span:nth-child(2) { opacity: 0.7; }
.hero-arrows span:nth-child(3) { opacity: 0.45; }
@media (max-width: 768px) {
  .hero-arrows span { border-width: 30px 0 30px 42px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  width: 100%;
}
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 72px);
  line-height: 0.98;
  letter-spacing: 0.003em;
  text-transform: uppercase;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLineUp 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.25s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.4s; }
@keyframes heroLineUp {
  to { transform: translateY(0); }
}

.hero-title .accent-line {
  position: relative;
  color: var(--red-500);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeIn 1s 0.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--red-500);
}

.hero-lede {
  margin-top: 32px;
  max-width: 56ch;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  animation: heroFadeIn 1s 0.7s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1s 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

/* Side info card */
.hero-side {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: heroFadeIn 1s 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}
@media (max-width: 960px) {
  .hero-side { display: none; }
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: transform var(--t-fast), background var(--t-fast);
}
.hero-badge:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
}
.hero-badge svg {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 6px;
  background: var(--red-500);
  border-radius: 8px;
  color: white;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ============================================
   Stats band
   ============================================ */
.stats {
  background: var(--navy-900);
  color: white;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(225, 37, 44, 0.1) 50%, transparent),
    radial-gradient(ellipse at center, rgba(225, 37, 44, 0.08), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .stat:not(:last-child)::after { display: none; }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .suffix { color: var(--red-500); font-size: 0.7em; }
.stat-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 8px;
}

/* ============================================
   About preview (split)
   ============================================ */
.about-preview {
  background: var(--ink-50);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.about-visual:hover img { transform: scale(1.04); }
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 13, 31, 0.3));
  pointer-events: none;
}
.about-stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: white;
  z-index: 2;
}
.about-stamp .since {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
}
.about-stamp .since-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.about-stamp .from {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 12ch;
  line-height: 1.4;
}

.about-text h2 { margin-top: 16px; margin-bottom: 28px; }
.about-text .lede + p { margin-top: 16px; }

/* ============================================
   Services
   ============================================ */
.services {
  background: white;
  position: relative;
}
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .services-head { grid-template-columns: 1fr; }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-100);
  border-left: 1px solid var(--ink-100);
}
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  padding: 40px 32px 36px;
  background: white;
  border-right: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  transition: background var(--t), color var(--t);
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-900);
  transform: translateY(100%);
  transition: transform var(--t);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::before { transform: translateY(0); }
.service-card:hover { color: white; }
.service-card:hover .service-num,
.service-card:hover .service-desc,
.service-card:hover .service-arrow { color: rgba(255,255,255,0.85); }
.service-card:hover .service-icon-wrap { background: var(--red-500); color: white; }
.service-card:hover .service-arrow { color: var(--red-400); }

/* Service card styled as button for modal trigger */
button.service-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-300);
  margin-bottom: 28px;
  transition: color var(--t);
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--ink-50);
  color: var(--red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--t), color var(--t);
}
.service-icon-wrap svg { width: 36px; height: 36px; }
.service-card h3 { margin-bottom: 12px; }
.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  transition: color var(--t);
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-500);
  transition: color var(--t), gap var(--t-fast);
}
.service-card:hover .service-arrow { gap: 12px; }

/* ============================================
   Skills (savoir-faire) on dark
   ============================================ */
.skills {
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.skills::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/about-story.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  opacity: 0.18;
  mask-image: linear-gradient(to left, black 30%, transparent 70%);
  -webkit-mask-image: linear-gradient(to left, black 30%, transparent 70%);
}
.skills-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .skills-inner { grid-template-columns: 1fr; gap: 48px; }
}
.skills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.skill-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
  transition: padding-left var(--t-fast);
}
.skill-item:hover { padding-left: 12px; }
.skill-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red-500);
  line-height: 1;
  flex: 0 0 auto;
  width: 48px;
}
.skill-text {
  font-size: 17px;
  line-height: 1.55;
  color: white;
}

/* ============================================
   Atouts (cards over a light section)
   ============================================ */
.atouts { background: var(--ink-50); }
.atouts-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.atouts-head .eyebrow { justify-content: center; }
.atouts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .atouts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .atouts-grid { grid-template-columns: 1fr; } }
.atout {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px 36px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid transparent;
}
.atout:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--ink-100);
}
.atout-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--red-500);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.atout h3 { margin-bottom: 10px; }
.atout p { font-size: 15px; color: var(--ink-700); line-height: 1.55; }

/* ============================================
   Network map
   ============================================ */
.network {
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.network-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) { .network-grid { grid-template-columns: 1fr; } }

.network-text h2 { margin-top: 16px; margin-bottom: 24px; }
.network-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.network-item {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background var(--t-fast), border-color var(--t-fast);
  overflow: hidden;
}
.network-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}
.network-item.is-active {
  background: rgba(225, 37, 44, 0.08);
  border-color: rgba(225, 37, 44, 0.55);
}
.network-item strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: white;
}
.network-item span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.network-hubs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms ease, opacity 240ms ease, margin-top 280ms ease;
}
.network-item.is-active .network-hubs {
  max-height: 280px;
  opacity: 1;
  margin-top: 8px;
}
.network-hubs li {
  font-size: 11.5px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.92);
  padding: 4px 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}

.network-map {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  min-height: 480px;
}
.network-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.45;
  filter: brightness(0.9) saturate(0.85);
  user-select: none;
  pointer-events: none;
}
.network-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.network-map-overlay .hub-label text {
  fill: rgba(255,255,255,0.85);
  font-family: var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 200ms ease;
  paint-order: stroke;
  stroke: rgba(5,13,31,0.9);
  stroke-width: 3px;
  stroke-linejoin: round;
}
.network-map-overlay .hub.hub-main .hub-label text,
.network-map-overlay .hub:hover .hub-label text {
  opacity: 1;
}
.network-map-overlay .hub { cursor: pointer; transition: transform 200ms ease; transform-box: fill-box; transform-origin: center; }
.network-map-overlay .hub:hover .map-dot { fill: #ef3a40; r: 7; }

/* Dim/highlight hubs by region */
.network-map-overlay .hub.dim { opacity: 0.25; }
.network-map-overlay .flight-path.dim { opacity: 0.08; }
.network-map-overlay .flight-path.active { opacity: 1; stroke-width: 1.5; }

/* Show all labels when a region is active */
.network-map-overlay .hub.active .hub-label text { opacity: 1; }

.map-dot {
  fill: var(--red-500);
  filter: drop-shadow(0 0 8px rgba(225, 37, 44, 0.8));
}
.map-pulse {
  fill: var(--red-500);
  opacity: 0.5;
  transform-origin: center;
  animation: pulse 2.6s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(3.5); opacity: 0; }
}

.flight-path {
  fill: none;
  stroke: var(--red-400);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
  opacity: 0.7;
  animation: dashFlow 6s linear infinite;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -200; }
}

/* ============================================
   Partners
   ============================================ */
.partners { background: white; padding: 96px 0; }
.partners-head { text-align: center; margin-bottom: 48px; }
.partners-head .eyebrow { justify-content: center; }

/* Marquee carousel */
.partners-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  padding: 24px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: partnersScroll 40s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  min-width: 180px;
  padding: 0 24px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter var(--t), opacity var(--t);
  cursor: default;
}
.partner:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.partner img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-fallback {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 768px) {
  .partners-track { gap: 56px; animation-duration: 30s; }
  .partner { height: 52px; min-width: 140px; padding: 0 16px; }
  .partner-fallback { font-size: 22px; }
}

/* Old strip — keep selectors no-op for safety */
.partners-strip { display: none; }
.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--t), opacity var(--t), transform var(--t);
  cursor: default;
}
.partner:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}
.partner svg { max-height: 100%; max-width: 100%; }

/* ============================================
   Testimonials
   ============================================ */
.testi {
  background: var(--ink-50);
  overflow: hidden;
}
.testi-head { text-align: center; margin-bottom: 56px; }
.testi-head .eyebrow { justify-content: center; }
.testi-slider {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.testi-slide {
  flex: 0 0 100%;
  padding: 0 8px;
}
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 56px 56px 48px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .testi-card { padding: 40px 28px 36px; } }
.testi-quote-mark {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--ink-100);
  line-height: 1;
  pointer-events: none;
}
.testi-quote {
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy-900);
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
}
.testi-author {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.testi-name { font-weight: 700; color: var(--navy-900); }
.testi-role { font-size: 13px; color: var(--ink-500); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-200);
  cursor: pointer;
  transition: background var(--t), width var(--t);
}
.testi-dot.is-active { background: var(--red-500); width: 24px; border-radius: 999px; }
.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--navy-900);
  border: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.testi-arrow:hover {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: white; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--ink-100);
}
.faq-item:last-child { border-bottom: 1px solid var(--ink-100); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--red-500); }
.faq-q .icn {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--t), color var(--t);
}
.faq-q .icn::before, .faq-q .icn::after {
  content: "";
  position: absolute;
  background: var(--navy-900);
  transition: transform var(--t), background var(--t);
}
.faq-q .icn::before { width: 12px; height: 2px; }
.faq-q .icn::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-q .icn { background: var(--red-500); }
.faq-item.is-open .faq-q .icn::before,
.faq-item.is-open .faq-q .icn::after { background: white; }
.faq-item.is-open .faq-q .icn::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(.2,.8,.2,1);
}
.faq-item.is-open .faq-a { max-height: 240px; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 64ch;
}

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  background: var(--navy-900);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(225, 37, 44, 0.25), transparent 60%),
    linear-gradient(135deg, transparent, rgba(225, 37, 44, 0.06));
}
.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .cta-band-inner { grid-template-columns: 1fr; gap: 32px; } }
.cta-band h2 { margin-bottom: 20px; }
.cta-band .lede { color: rgba(255,255,255,0.8); max-width: none; }
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 960px) { .cta-band-actions { align-items: flex-start; } }
.cta-call {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.cta-call strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  letter-spacing: 0.02em;
}

/* Section title block */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 56ch;
}
.section-head h2 { margin-top: 4px; }
