:root {
  --abiref-blue: #26498A;
  --abiref-blue-2: #26498A;
  --abiref-red: #EE2128;
  --abiref-red-2: #EE2128;
  --abiref-ink: #102033;
  --abiref-light-blue: #c5d8f5;
  --abiref-muted: #5b6778;
  --abiref-muted-on-accent: rgba(16, 32, 51, 0.82);
  --abiref-line: #dbe3ef;
  --abiref-soft: #f7f7f8;
  --abiref-bg: #ffffff;
  --abiref-page-bg: #ffffff;
  --abiref-page-wash: #ffffff;
  --abiref-shadow: 0 18px 40px rgba(38, 73, 138, 0.12);
  --abiref-radius: 20px;
  color-scheme: light;
}

html {
  color-scheme: light;
}

[data-theme="dark"] {
  --abiref-ink: #edf0f6;
  --abiref-muted: #a5adc2;
  --abiref-muted-on-accent: rgba(237, 240, 246, 0.85);
  --abiref-line: #2c3142;
  --abiref-soft: #1c2030;
  --abiref-bg: #191c28;
  --abiref-page-bg: #100e14;
  --abiref-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  --abiref-accent-light: #6ea1f0;
  color-scheme: dark;
}

/* style.css sets h1-h6 to a fixed dark navy; keep headings legible on dark surfaces */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--abiref-ink);
}

/* Brand-blue text (not backgrounds) needs a lighter tone to stay readable on dark surfaces */
[data-theme="dark"] .abiref-menu > a.is-active,
[data-theme="dark"] .abiref-menu > a:hover,
[data-theme="dark"] .abiref-menu__dropdown > a:hover,
[data-theme="dark"] .abiref-menu__dropdown > a.is-active,
[data-theme="dark"] .abiref-menu__panel a:hover,
[data-theme="dark"] .section-label,
[data-theme="dark"] .link-arrow,
[data-theme="dark"] .booking-steps__num,
[data-theme="dark"] .not-found__code,
[data-theme="dark"] .sd-hero__label,
[data-theme="dark"] .sd-crumb a,
[data-theme="dark"] .pill i {
  color: var(--abiref-accent-light);
}

html { scroll-behavior: smooth; }
body.abiref-app {
  margin: 0;
  background: var(--abiref-page-wash, var(--abiref-bg)) no-repeat, var(--abiref-bg);
  color: var(--abiref-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  transition: background 0.25s ease, color 0.25s ease;
}
[data-theme="dark"] body.abiref-app {
  background: var(--abiref-bg);
}

a { text-decoration: none; }

.abiref-reveal {
  opacity: 1;
  transform: none;
}

html.abiref-animate .abiref-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.abiref-animate .abiref-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .abiref-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.abiref-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--abiref-bg);
  box-shadow: none;
  margin: 0;
}

.abiref-topbar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: var(--abiref-blue);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
}

.abiref-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.abiref-topbar__left {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.abiref-topbar__link {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.abiref-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.abiref-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--abiref-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.abiref-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--abiref-blue);
  box-shadow: var(--abiref-shadow);
}

.abiref-brand__image {
  width: 160px;
  height: auto;
  max-height: 120px;
  display: block;
}

.abiref-brand__text {
  font-size: 1rem;
  line-height: 1.1;
}

.abiref-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.abiref-menu > a,
.abiref-menu__dropdown > a {
  color: var(--abiref-ink);
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 999px;
}

.abiref-menu > a.is-active,
.abiref-menu > a:hover,
.abiref-menu__dropdown > a:hover,
.abiref-menu__dropdown > a.is-active {
  color: var(--abiref-blue);
}

.abiref-menu__dropdown {
  position: relative;
}

.abiref-menu__dropdown.is-open .abiref-menu__panel,
.abiref-menu__dropdown:hover .abiref-menu__panel {
  display: grid;
}

.abiref-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  border-radius: 16px;
  box-shadow: var(--abiref-shadow);
  padding: 10px;
  display: none;
  z-index: 1002;
}

.abiref-menu__panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--abiref-ink);
  font-weight: 600;
}

.abiref-menu__panel a:hover {
  background: var(--abiref-soft);
  color: var(--abiref-blue-2);
}

.abiref-btn,
.abiref-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.abiref-btn:hover {
  transform: translateY(-1px);
}

.abiref-btn--accent {
  background: var(--abiref-red);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(238, 33, 40, 0.24);
}

.abiref-btn--accent:hover {
  background: var(--abiref-blue);
  box-shadow: 0 12px 30px rgba(38, 73, 138, 0.24);
}

.abiref-btn--light {
  background: #ffffff;
  color: var(--abiref-blue);
  border-color: var(--abiref-line);
}

.abiref-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.abiref-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--abiref-line);
  border-radius: 14px;
  background: var(--abiref-bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.abiref-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--abiref-line);
  border-radius: 999px;
  background: var(--abiref-bg);
  color: var(--abiref-ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.abiref-theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--abiref-blue-2);
}

.abiref-theme-toggle__icon {
  font-size: 1rem;
  display: none;
}

.abiref-theme-toggle__icon--light { display: block; }

[data-theme="dark"] .abiref-theme-toggle__icon--light { display: none; }
[data-theme="dark"] .abiref-theme-toggle__icon--dark { display: block; }

.abiref-theme-toggle--mobile { display: none; }

/* ---- Social links in the nav (next to the theme toggle) ---- */
.abiref-social {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.abiref-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s var(--abiref-ease), transform 0.18s var(--abiref-ease);
}

.abiref-social__link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.abiref-mobile__social {
  display: flex;
  gap: 8px;
  padding-top: 6px;
}

.abiref-mobile__social .abiref-social__link {
  background: rgba(255, 255, 255, 0.12);
}

.abiref-mobile__social .abiref-social__link:hover {
  background: rgba(255, 255, 255, 0.22);
}

.abiref-burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--abiref-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.abiref-mobile {
  display: none;
  padding: 0 16px 16px;
  position: relative;
  z-index: 1001;
  gap: 10px;
}

.abiref-mobile.is-open {
  display: grid;
}

.abiref-mobile__group {
  display: grid;
  gap: 8px;
}

.abiref-mobile__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  margin-top: 10px;
  border: 0;
  border-radius: 16px;
  background: var(--abiref-bg);
  color: var(--abiref-ink);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.abiref-mobile__toggle i {
  transition: transform 0.2s ease;
}

.abiref-mobile__group.is-open .abiref-mobile__toggle i {
  transform: rotate(180deg);
}

.abiref-mobile__subpanel {
  display: grid;
  gap: 8px;
  padding-left: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  margin-left: 12px;
}

.abiref-mobile__subpanel[hidden] {
  display: none !important;
}

.abiref-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.abiref-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.abiref-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.abiref-mobile a {
  display: block;
  padding: 14px 16px;
  margin-top: 10px;
  border-radius: 16px;
  background: var(--abiref-bg);
  color: var(--abiref-ink);
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(15, 42, 95, 0.05);
}

.section-shell {
  padding: 76px 0;
  background: var(--abiref-bg);
}

.section-shell--alt {
  background: var(--abiref-bg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--abiref-blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head__top .section-label {
  margin-bottom: 0;
}

.section-head .section-title {
  margin-bottom: 0;
}

.section-head__link {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  white-space: nowrap;
}

.clients-section {
  padding-bottom: 56px;
}

.clients-subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: var(--abiref-muted-on-accent);
  font-size: 1.02rem;
}

.clients-marquee {
  margin-top: 40px;
  overflow: hidden;
  -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);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: abiref-marquee 28s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 84px;
  padding: 0 24px;
  border-radius: var(--abiref-radius);
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  box-shadow: var(--abiref-shadow);
  color: var(--abiref-ink);
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

@keyframes abiref-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.section-copy {
  max-width: 760px;
  color: var(--abiref-muted-on-accent);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-shell {
  padding: 56px 0 38px;
  background: var(--abiref-bg);
}

.hero-panel {
  background: var(--abiref-blue);
  color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--abiref-shadow);
  padding: 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--abiref-light-blue);
}

.hero-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trailer-quote {
  margin: 18px 0 8px;
  padding: 18px 22px;
  border-left: 6px solid var(--abiref-red);
  background: rgba(238, 33, 40, 0.08);
  border-radius: 18px;
}

.trailer-quote__mark {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--abiref-red);
  margin-bottom: 8px;
}

.trailer-quote__copy {
  margin: 0;
  color: var(--abiref-ink);
  font-weight: 600;
  max-width: 520px;
}

.hero-art,
.media-art {
  min-height: 360px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.28), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art::before,
.media-art::before {
  content: "🚛";
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Segoe UI Emoji", sans-serif;
  font-variant-emoji: text;
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px var(--abiref-red);
  text-shadow: none;
  filter: none;
  display: block;
}

.hero-art::after,
.media-art::after {
  display: none;
}

.media-art:has(img)::before,
.hero-art:has(img)::before {
  display: none;
}

.hero-art--home { min-height: 420px; }
.hero-art--services { min-height: 320px; }

.hero-art--gif {
  background: #26498A;
  padding: 20px;
}

.hero-art--gif img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.hero-art--brand {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 35%),
    linear-gradient(145deg, #ffffff, #edf3ff 55%, #f8fbff);
  padding: 20px;
}

.hero-art--brand img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.hero-art--brand::before,
.hero-art--brand::after {
  display: none;
}

.hero-art--photo::before,
.hero-art--photo::after {
  display: none;
}

.hero-art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-art--gif::before,
.hero-art--gif::after {
  display: none;
}

.hero-art--home.hero-art--gif {
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.hero-art--home.hero-art--gif:hover {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 16px 28px rgba(38, 73, 138, 0.18));
}

.media-art--gif {
  background: #26498A;
  padding: 20px;
}

.hero-art--slider {
  background: #26498A;
  padding: 0;
}

.hero-art--slider::before,
.hero-art--slider::after {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px 46px;
  background: linear-gradient(to top, rgba(16, 32, 51, 0.78), transparent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.media-art--gif img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.media-art--gif::before,
.media-art--gif::after {
  display: none;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-card,
.trailer-card,
.value-card,
.faq-card,
.info-card {
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  border-radius: var(--abiref-radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(15, 42, 95, 0.03);
  height: 100%;
}

.service-card__media,
.trailer-card__media {
  min-height: 160px;
  height: 180px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(38, 73, 138, 0.12);
  border: 1px solid rgba(38, 73, 138, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--abiref-blue);
  overflow: hidden;
}

.service-card--compact {
  padding: 16px;
}

.service-card--compact .service-card__media {
  min-height: 125px;
  margin-bottom: 14px;
}

.service-card__media img,
.trailer-card__media img,
.media-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3,
.trailer-card h3,
.value-card h3,
.faq-card h3,
.info-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.booking-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.booking-steps li {
  padding-left: 0;
}

.booking-steps__num {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--abiref-blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-steps strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.booking-steps p {
  margin: 0;
  color: var(--abiref-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.muted {
  color: var(--abiref-muted);
}

.link-arrow {
  font-weight: 800;
  color: var(--abiref-blue-2);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--abiref-soft);
  color: var(--abiref-ink);
  font-weight: 700;
}

.pill i {
  color: var(--abiref-blue);
}

.detail-hero {
  padding: 44px 0 20px;
  background: var(--abiref-bg);
}

.detail-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.detail-shell--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.detail-shell--centered .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.detail-shell--centered .hero-actions {
  justify-content: center;
}

.detail-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.spec-card {
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  border-radius: 18px;
  padding: 18px;
}

.spec-card strong {
  display: block;
  margin-bottom: 6px;
}

.cta-band {
  background: var(--abiref-blue);
  color: #fff;
  border-radius: 28px;
  padding: 30px;
}

.cta-band h1,
.cta-band h2,
.cta-band h3,
.cta-band p {
  color: var(--abiref-light-blue);
}

.cta-band .section-label {
  background: rgba(255, 255, 255, 0.16);
  color: var(--abiref-light-blue);
}

.cta-band .pill {
  background: rgba(255, 255, 255, 0.14);
  color: var(--abiref-light-blue);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.form-shell {
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  border-radius: 24px;
  box-shadow: var(--abiref-shadow);
  padding: 24px;
}

.form-control,
.form-select,
.form-check-input {
  border-color: #cfd8e6;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--abiref-blue-2);
  box-shadow: 0 0 0 0.2rem rgba(38, 73, 138, 0.12);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  background-image: none;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.12);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.18);
}

.form-hint {
  display: block;
  margin-top: 6px;
  color: #5b6b82;
  font-size: 13px;
  line-height: 1.4;
}

.form-control.is-invalid ~ .form-hint,
.form-select.is-invalid ~ .form-hint {
  display: none;
}

.form-field-error,
.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 13px;
  font-weight: 600;
}

.form-field-error[hidden] {
  display: none;
}

.abiref-footer {
  margin-top: 40px;
  padding: 54px 0 24px;
  background: var(--abiref-blue);
  color: rgba(255,255,255,0.86);
}

.abiref-footer h5 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.abiref-footer__brand p {
  max-width: 320px;
  color: rgba(255,255,255,0.72);
}

.abiref-brand--footer .abiref-brand__image {
  width: 180px;
  max-height: 140px;
}

.abiref-footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.abiref-footer__links,
.abiref-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abiref-footer__links li {
  margin-bottom: 10px;
}

.abiref-footer__links a,
.abiref-contact a,
.abiref-contact span {
  color: rgba(255,255,255,0.78);
}

.abiref-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.abiref-footer__bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-size: 0.92rem;
}

.abiref-footer__credit {
  margin: 0;
  font-weight: 700;
}

.abiref-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.abiref-footer .abiref-social-icons {
  margin-top: 16px;
}
.abiref-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.abiref-social-icons__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.abiref-social-icons--footer .abiref-social-icons__link {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.abiref-social-icons--footer .abiref-social-icons__link:hover {
  background: #fff;
  color: #26498A;
  transform: translateY(-2px);
}
.abiref-social-icons--contact .abiref-social-icons__link {
  background: #fff;
  color: #26498A;
  border: 1px solid var(--abiref-line, #e6eaf1);
}
.abiref-social-icons--contact .abiref-social-icons__link:hover {
  background: #26498A;
  color: #fff;
  transform: translateY(-2px);
}

.faq-card summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin: 12px 0 0;
  color: var(--abiref-muted);
}

.trailer-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.trailer-filter a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--abiref-line);
  background: var(--abiref-bg);
  color: var(--abiref-ink);
  font-weight: 700;
}

.trailer-filter a.is-active {
  background: var(--abiref-blue-2);
  border-color: var(--abiref-blue-2);
  color: #fff;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.status-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
}

.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.not-found__box {
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  border-radius: 28px;
  box-shadow: var(--abiref-shadow);
  padding: 40px;
  text-align: center;
}

.not-found__code {
  font-size: 4rem;
  font-weight: 900;
  color: var(--abiref-blue-2);
  line-height: 1;
}

.sd-hero {
  padding: 56px 0 64px;
}

.sd-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--abiref-muted-on-accent);
}

.sd-crumb a { color: var(--abiref-blue); }
.sd-crumb strong { color: var(--abiref-ink); font-weight: 800; }

.sd-hero__row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.sd-hero__image {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--abiref-soft);
  border: 1px solid var(--abiref-line);
}

.sd-hero__image img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sd-hero__copy-block {
  padding-left: 8px;
}

.sd-hero__label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--abiref-blue);
}

.sd-hero__title {
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--abiref-ink);
}

.sd-hero__copy {
  margin: 0 0 28px;
  max-width: 480px;
  color: var(--abiref-muted-on-accent);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sd-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.sd-offer {
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
}

.sd-offer h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sd-offer p {
  margin: 0;
  color: var(--abiref-muted);
  line-height: 1.55;
}

.sd-why {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.sd-why li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

.sd-why i {
  color: var(--abiref-red);
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .abiref-menu { display: none; }
  .abiref-burger { display: inline-flex; }
  .abiref-mobile.is-open { display: grid; }
  .abiref-theme-toggle--mobile { display: inline-flex; }
  .hero-grid,
  .detail-shell,
  .card-grid--3,
  .card-grid--4,
  .card-grid--2,
  .spec-grid,
  .sd-hero__row,
  .sd-offers {
    grid-template-columns: 1fr;
  }
  .sd-hero__row {
    gap: 28px;
  }
  .sd-hero__image {
    max-width: 280px;
  }
  .sd-hero__image img {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .abiref-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .abiref-nav {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-panel,
  .service-card,
  .trailer-card,
  .value-card,
  .faq-card,
  .info-card,
  .form-shell,
  .not-found__box {
    border-radius: 18px;
  }

  .section-shell,
  .hero-shell,
  .detail-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-band,
  .hero-panel {
    padding: 22px;
  }
}

/* ============================================================
   MODERN REFRESH LAYER  —  2026 redesign
   Loaded last so it refines the base system above without
   rewriting it. Scoped to public site (.abiref-app).
   ============================================================ */
.abiref-app {
  --abiref-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --abiref-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --abiref-shadow-sm: 0 1px 2px rgba(16, 32, 51, 0.04), 0 4px 12px rgba(16, 32, 51, 0.05);
  --abiref-shadow-md: 0 8px 24px rgba(16, 32, 51, 0.08), 0 2px 6px rgba(16, 32, 51, 0.04);
  --abiref-shadow-lg: 0 28px 70px -12px rgba(16, 32, 51, 0.22);
  --abiref-ring: 0 0 0 4px rgba(38, 73, 138, 0.16);
  --abiref-grad-blue: linear-gradient(135deg, #2f5aa8 0%, #26498A 55%, #1c3970 100%);
  /* Bold logo swoosh — the nested blue + red "C" brush strokes from the Abi mark,
     full colour. Drop it off a corner of any hero / band as a brand overlay. */
  --abiref-swoosh: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M232 74a112 112 0 1 0 34 190' stroke='%232f5aa8' stroke-width='46'/%3E%3Cpath d='M214 120a66 66 0 1 0 20 112' stroke='%23EE2128' stroke-width='44'/%3E%3C/g%3E%3C/svg%3E");
  --abiref-swoosh-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340'%3E%3Cg fill='none' stroke-linecap='round' stroke='%23ffffff'%3E%3Cpath d='M232 74a112 112 0 1 0 34 190' stroke-width='46' stroke-opacity='.16'/%3E%3Cpath d='M214 120a66 66 0 1 0 20 112' stroke-width='44' stroke-opacity='.16'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}

/* Bold brand-swoosh overlay — bleeds off the top-right of a
   position:relative;overflow:hidden parent. Use .abiref-swoosh--bl for bottom-left. */
.abiref-swoosh {
  position: absolute;
  z-index: 0;
  top: clamp(-190px, -15vw, -110px);
  right: clamp(-180px, -13vw, -100px);
  width: min(62vw, 560px);
  aspect-ratio: 1;
  pointer-events: none;
  background: var(--abiref-swoosh) center / contain no-repeat;
}
.abiref-swoosh--bl {
  top: auto; right: auto;
  bottom: clamp(-180px, -13vw, -100px);
  left: clamp(-170px, -12vw, -90px);
  transform: rotate(174deg);
}
.abiref-swoosh--sm { width: min(48vw, 380px); }
@media (max-width: 575.98px) { .abiref-swoosh { width: 300px; opacity: 0.85; } }

[data-theme="dark"] .abiref-app {
  --abiref-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.35);
  --abiref-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --abiref-shadow-lg: 0 30px 70px -12px rgba(0, 0, 0, 0.6);
}

.abiref-app h1,
.abiref-app h2,
.abiref-app h3,
.abiref-app .section-title,
.abiref-app .hero-title,
.abiref-app .detail-title {
  font-family: var(--abiref-display);
  letter-spacing: -0.03em;
}

/* ---- Sticky header: glass + scroll shrink ---- */
.abiref-header {
  background: color-mix(in srgb, var(--abiref-bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--abiref-ease), border-color 0.3s var(--abiref-ease),
    box-shadow 0.3s var(--abiref-ease);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .abiref-header { background: var(--abiref-bg); }
}

.abiref-header.is-scrolled {
  background: color-mix(in srgb, var(--abiref-bg) 92%, transparent);
  border-bottom-color: var(--abiref-line);
  box-shadow: var(--abiref-shadow-sm);
}

.abiref-header.is-scrolled .abiref-nav {
  min-height: 64px;
}

.abiref-nav {
  transition: min-height 0.3s var(--abiref-ease);
}

.abiref-menu > a,
.abiref-menu__dropdown > a {
  position: relative;
  transition: color 0.2s var(--abiref-ease), background 0.2s var(--abiref-ease);
}

.abiref-menu > a:not(.abiref-btn):hover,
.abiref-menu__dropdown > a:hover {
  background: color-mix(in srgb, var(--abiref-blue) 8%, transparent);
}

.abiref-menu > a.is-active:not(.abiref-btn)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--abiref-blue);
}

[data-theme="dark"] .abiref-menu > a.is-active:not(.abiref-btn)::after {
  background: var(--abiref-accent-light, #6ea1f0);
}

.abiref-menu__panel {
  transition: opacity 0.18s var(--abiref-ease), transform 0.18s var(--abiref-ease);
}

/* ---- Buttons: gradient primary, smooth motion, focus ring ---- */
.abiref-btn,
.abiref-btn:visited {
  transition: transform 0.2s var(--abiref-ease), box-shadow 0.25s var(--abiref-ease),
    background 0.25s var(--abiref-ease), filter 0.25s var(--abiref-ease);
}

.abiref-btn:focus-visible {
  outline: none;
  box-shadow: var(--abiref-ring);
}

.abiref-btn--accent {
  background: linear-gradient(135deg, #f5333a 0%, #EE2128 50%, #cf1a20 100%);
  box-shadow: 0 10px 26px -6px rgba(238, 33, 40, 0.5);
}

.abiref-btn--accent:hover {
  background: linear-gradient(135deg, #f5333a 0%, #EE2128 50%, #cf1a20 100%);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px -8px rgba(238, 33, 40, 0.55);
  transform: translateY(-2px);
}

.abiref-btn--light {
  background: #ffffff;
  color: var(--abiref-blue);
  box-shadow: var(--abiref-shadow-sm);
}

.abiref-btn--light:hover {
  box-shadow: var(--abiref-shadow-md);
  transform: translateY(-2px);
}

.abiref-menu .abiref-btn--accent {
  min-height: 42px;
}

/* ---- Cards: softer edges, layered shadow, smooth hover ---- */
.service-card,
.trailer-card,
.value-card,
.faq-card,
.info-card {
  box-shadow: var(--abiref-shadow-sm);
  transition: transform 0.3s var(--abiref-ease), box-shadow 0.3s var(--abiref-ease),
    border-color 0.3s var(--abiref-ease);
}

.service-card:hover,
.trailer-card:hover,
.value-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--abiref-shadow-lg);
  border-color: color-mix(in srgb, var(--abiref-blue) 30%, var(--abiref-line));
}

.abiref-app a.service-card,
.abiref-app a.trailer-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.abiref-app a.service-card:hover,
.abiref-app a.trailer-card:hover { color: inherit; }
.abiref-app a.service-card:focus-visible,
.abiref-app a.trailer-card:focus-visible {
  outline: 3px solid rgba(38, 73, 138, 0.45);
  outline-offset: 3px;
}
.abiref-app .link-arrow i { display: inline-block; transition: transform 0.2s var(--abiref-ease); }
.abiref-app .service-card:hover .link-arrow i,
.abiref-app .trailer-card:hover .link-arrow i { transform: translateX(5px); }

/* ---- Section headings ---- */
.section-label {
  background: color-mix(in srgb, var(--abiref-blue) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--abiref-blue) 18%, transparent);
}

/* ---- Forms ---- */
.form-control,
.form-select {
  border-radius: 12px;
  transition: border-color 0.2s var(--abiref-ease), box-shadow 0.2s var(--abiref-ease);
}

/* ---- Footer polish ---- */
.abiref-footer {
  background: var(--abiref-grad-blue);
}

.abiref-footer__links a,
.abiref-contact a {
  transition: color 0.18s var(--abiref-ease), padding-left 0.18s var(--abiref-ease);
}

.abiref-footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* ---- Scroll reveal (used by homepage + rollout pages) ---- */
.abiref-app [data-reveal] {
  opacity: 1;
  transform: none;
}

html.abiref-animate .abiref-app [data-reveal]:not(.is-in) {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--abiref-ease), transform 0.7s var(--abiref-ease);
}

html.abiref-animate .abiref-app [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .abiref-app [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
  .abiref-header,
  .abiref-btn,
  .service-card,
  .trailer-card {
    transition: none !important;
  }
}

/* ---- Header: keep the top bar on one row on small screens ---- */
@media (max-width: 991.98px) {
  .abiref-nav { gap: 12px; }
  .abiref-brand__image { width: 132px; max-height: 52px; }
}

@media (max-width: 575.98px) {
  .abiref-brand__image { width: 112px; max-height: 44px; }
  .abiref-brand__text { display: none; }
  .abiref-nav { min-height: 62px; }
}

/* ============================================================
   PHASE 2 — Modern SaaS rollout to inner pages
   Restyles the shared vocabulary (detail-hero, section-*, cards,
   cta-band, forms, pills) so every page inherits the new look.
   ============================================================ */

/* ---- Section rhythm ---- */
.abiref-app .section-shell {
  padding: clamp(56px, 8vw, 100px) 0;
  background: #ffffff;
}
.abiref-app .section-shell--alt {
  background: var(--abiref-soft);
}
[data-theme="dark"] .abiref-app .section-shell--alt { background: #14161d; }

.abiref-app .section-title {
  font-family: var(--abiref-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: inherit;
  padding-bottom: 0;
}
.abiref-app .section-copy { line-height: 1.75; }

/* one-child hero shells shouldn't leave half the row empty */
.abiref-app .detail-shell > :only-child {
  grid-column: 1 / -1;
  max-width: 780px;
}
.abiref-app .detail-shell--centered > :only-child { max-width: 720px; }

/* ---- Inner-page hero ---- */
.abiref-app .detail-hero,
.abiref-app .sd-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px) 0 clamp(36px, 5vw, 56px);
  background:
    radial-gradient(760px 420px at 82% -12%, color-mix(in srgb, var(--abiref-blue) 16%, transparent) 0%, transparent 60%),
    var(--abiref-bg);
}
/* bold logo swoosh — bleeds off the top-right of every inner-page hero */
.abiref-app .detail-hero::after,
.abiref-app .sd-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(-190px, -15vw, -110px);
  right: clamp(-180px, -13vw, -100px);
  width: min(60vw, 520px);
  aspect-ratio: 1;
  pointer-events: none;
  background: var(--abiref-swoosh) center / contain no-repeat;
}
@media (max-width: 575.98px) {
  .abiref-app .detail-hero::after,
  .abiref-app .sd-hero::after { width: 280px; opacity: 0.85; }
}
.abiref-app .detail-hero > .container,
.abiref-app .sd-hero > .container { position: relative; z-index: 1; }

/* tighten the gap between an intro hero and the first content section */
.abiref-app .detail-hero + .section-shell,
.abiref-app .sd-hero + .section-shell { padding-top: clamp(28px, 5vw, 52px); }

.abiref-app .detail-title,
.abiref-app .sd-hero__title {
  font-family: var(--abiref-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

/* ---- Cards: unify radius / padding / heading font ---- */
.abiref-app .service-card,
.abiref-app .trailer-card,
.abiref-app .value-card,
.abiref-app .faq-card,
.abiref-app .info-card,
.abiref-app .spec-card,
.abiref-app .sd-offer {
  border-radius: 18px;
}
.abiref-app .service-card h3,
.abiref-app .trailer-card h3,
.abiref-app .value-card h3,
.abiref-app .faq-card h3,
.abiref-app .info-card h3,
.abiref-app .sd-offer h3 {
  font-family: var(--abiref-display);
  letter-spacing: -0.02em;
}

/* gradient accent bar on hover for the primary card types */
.abiref-app .service-card,
.abiref-app .trailer-card,
.abiref-app .value-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.abiref-app .service-card::after,
.abiref-app .trailer-card::after,
.abiref-app .value-card::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  border-radius: 0;
  background: var(--abiref-blue);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s var(--abiref-ease);
  z-index: 2;
  pointer-events: none;
}
.abiref-app .service-card:hover::after,
.abiref-app .trailer-card:hover::after,
.abiref-app .value-card:hover::after { transform: scaleX(1); }

/* card media: rounded + zoom on hover */
.abiref-app .service-card__media,
.abiref-app .trailer-card__media {
  border-radius: 14px;
  overflow: hidden;
}
.abiref-app .service-card__media img,
.abiref-app .trailer-card__media img {
  transition: transform 0.5s var(--abiref-ease);
}
.abiref-app .service-card:hover .service-card__media img,
.abiref-app .trailer-card:hover .trailer-card__media img { transform: scale(1.05); }

/* ---- CTA band: gradient + glow ---- */
.abiref-app .cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #2f5aa8 0%, var(--abiref-blue) 55%, #1c3970 100%);
  padding: clamp(28px, 5vw, 52px);
}
.abiref-app .cta-band::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(520px 300px at 88% 8%, rgba(255, 255, 255, 0.16), transparent 60%),
    var(--abiref-swoosh-white) bottom -120px left -110px / min(44vw, 340px) auto no-repeat;
}
.abiref-app .cta-band > * { position: relative; z-index: 1; }
.abiref-app .cta-band h2 {
  font-family: var(--abiref-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
[data-theme="dark"] .abiref-app .cta-band h2 { color: #fff; }
.abiref-app .cta-band p { color: rgba(255, 255, 255, 0.82); }

/* ---- Forms ---- */
.abiref-app .form-shell {
  border-radius: 20px;
  box-shadow: var(--abiref-shadow-md);
  padding: clamp(22px, 3vw, 32px);
}
.abiref-app .form-control,
.abiref-app .form-select {
  min-height: 46px;
  border-radius: 12px;
}
.abiref-app .form-label { margin-bottom: 6px; }

/* ---- Pills / chips ---- */
.abiref-app .pill {
  border: 1px solid var(--abiref-line);
  background: #ffffff;
  color: var(--abiref-muted);
  font-weight: 600;
  font-size: 0.86rem;
}

/* ---- Link arrow ---- */
.abiref-app .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--abiref-ease);
}
.abiref-app .link-arrow:hover { gap: 11px; }

/* ---- Trailer filter chips ---- */
.abiref-app .trailer-filter a {
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s var(--abiref-ease);
}
.abiref-app .trailer-filter a:hover {
  border-color: var(--abiref-blue);
  color: var(--abiref-blue);
}
.abiref-app .trailer-filter a.is-active {
  background: var(--abiref-blue);
  border-color: var(--abiref-blue);
  color: #fff;
}

/* ---- Trailer quote block ---- */
.abiref-app .trailer-quote {
  border-radius: 16px;
  border-left-width: 4px;
}

/* ---- FAQ accordion: chevron indicator ---- */
.abiref-app .faq-card { transition: box-shadow 0.25s var(--abiref-ease), border-color 0.25s var(--abiref-ease); }
.abiref-app .faq-card[open] { border-color: color-mix(in srgb, var(--abiref-blue) 30%, var(--abiref-line)); box-shadow: var(--abiref-shadow-md); }
.abiref-app .faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.abiref-app .faq-card summary::after {
  content: "\F282"; /* bi-chevron-down */
  font-family: "bootstrap-icons";
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--abiref-blue);
  transition: transform 0.25s var(--abiref-ease);
  flex-shrink: 0;
}
.abiref-app .faq-card[open] summary::after { transform: rotate(180deg); }
[data-theme="dark"] .abiref-app .faq-card summary::after { color: var(--abiref-accent-light, #6ea1f0); }

/* ---- Spec cards: icon + label row ---- */
.abiref-app .spec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--abiref-shadow-sm);
  transition: transform 0.3s var(--abiref-ease), box-shadow 0.3s var(--abiref-ease);
}
.abiref-app .spec-card:hover { transform: translateY(-3px); box-shadow: var(--abiref-shadow-md); }
.abiref-app .spec-card i { color: var(--abiref-blue); font-size: 1.15rem; flex-shrink: 0; }
[data-theme="dark"] .abiref-app .spec-card i { color: var(--abiref-accent-light, #6ea1f0); }
.abiref-app .spec-card strong { display: block; margin: 0; }

/* ---- Status dot as a soft pill ---- */
.abiref-app .status-dot {
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, #16a34a 12%, transparent);
  color: #15803d;
}
[data-theme="dark"] .abiref-app .status-dot { color: #4ade80; }

/* ---- service-detail specifics ---- */
.abiref-app .sd-offer {
  box-shadow: var(--abiref-shadow-sm);
  transition: transform 0.3s var(--abiref-ease), box-shadow 0.3s var(--abiref-ease);
}
.abiref-app .sd-offer:hover { transform: translateY(-4px); box-shadow: var(--abiref-shadow-lg); }
.abiref-app .sd-why li i { color: var(--abiref-blue); }
[data-theme="dark"] .abiref-app .sd-why li i { color: var(--abiref-accent-light, #6ea1f0); }

/* ---- media art frame ---- */
.abiref-app .media-art,
.abiref-app .hero-art {
  border-radius: 20px;
  box-shadow: var(--abiref-shadow-lg);
}

/* ---- Header: stop nav items wrapping ---- */
.abiref-btn,
.abiref-btn:visited { white-space: nowrap; }
.abiref-menu > a,
.abiref-menu__dropdown > a { white-space: nowrap; }

/* ---- Card grid: graceful 2-step collapse ---- */
@media (min-width: 992px) {
  .abiref-app .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .abiref-app .card-grid--3,
  .abiref-app .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
  .abiref-app .card-grid--2,
  .abiref-app .card-grid--3,
  .abiref-app .card-grid--4 { grid-template-columns: 1fr; }
}

/* ---- Inner-page reveal stagger ---- */
.abiref-app [data-reveal-stagger] > * {
  opacity: 1;
  transform: none;
}
html.abiref-animate .abiref-app [data-reveal-stagger]:not(.is-in) > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--abiref-ease), transform 0.6s var(--abiref-ease);
}
html.abiref-animate .abiref-app [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
html.abiref-animate .abiref-app [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.06s; }
html.abiref-animate .abiref-app [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.12s; }
html.abiref-animate .abiref-app [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.18s; }
html.abiref-animate .abiref-app [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.24s; }
html.abiref-animate .abiref-app [data-reveal-stagger].is-in > *:nth-child(n+6) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .abiref-app [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   BRAND RED — red navigation + red content cards
   ============================================================ */

/* ---------- Navigation: red bar, white type ---------- */
.abiref-header {
  background: var(--abiref-red);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .abiref-header { background: var(--abiref-red); }
}
.abiref-header.is-scrolled {
  background: #d81f26;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 26px -6px rgba(150, 15, 20, 0.5);
}

/* logo art is dark — sit it on a white chip so it reads on red */
.abiref-brand__image {
  background: #fff;
  border-radius: 12px;
  padding: 5px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}
.abiref-brand,
.abiref-brand__text { color: #fff; }

.abiref-menu > a:not(.abiref-btn),
.abiref-menu__dropdown > a {
  color: rgba(255, 255, 255, 0.92);
}
.abiref-menu > a:not(.abiref-btn):hover,
.abiref-menu__dropdown > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.abiref-menu > a.is-active:not(.abiref-btn) { color: #fff; }
.abiref-menu > a.is-active:not(.abiref-btn)::after,
[data-theme="dark"] .abiref-menu > a.is-active:not(.abiref-btn)::after { background: #fff; }

/* dropdown panel stays white with its dark text — good contrast pop on red */

/* header CTA: white pill on the red bar */
.abiref-menu .abiref-btn--accent,
.abiref-menu .abiref-btn--accent:visited {
  background: #fff;
  color: var(--abiref-red) !important;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.28);
}
.abiref-menu .abiref-btn--accent:hover {
  background: #fff;
  color: var(--abiref-red) !important;
  filter: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(0, 0, 0, 0.32);
}

.abiref-theme-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.abiref-theme-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

.abiref-burger {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}
.abiref-burger span { background: #fff; }

.abiref-mobile a.abiref-mobile__sub {
  margin-top: 0;
  margin-left: 0;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

.abiref-mobile { background: #d81f26; }
.abiref-mobile__toggle,
.abiref-mobile a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}
.abiref-mobile__toggle:hover,
.abiref-mobile a:hover { background: rgba(255, 255, 255, 0.22); }

/* ---------- Content cards: page type, quiet edge, blue hover bar ---------- */
.abiref-app .service-card,
.abiref-app .trailer-card,
.abiref-app .value-card,
.abiref-app .faq-card,
.abiref-app .info-card,
.abiref-app .spec-card,
.abiref-app .sd-offer,
.hp .hp-svc,
.hp .hp-trailer,
.hp .hp-step {
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  color: inherit;
  box-shadow: var(--abiref-shadow-sm);
}
.abiref-app .service-card:hover,
.abiref-app .trailer-card:hover,
.abiref-app .value-card:hover,
.abiref-app .info-card:hover,
.abiref-app .spec-card:hover,
.abiref-app .sd-offer:hover,
.hp .hp-svc:hover,
.hp .hp-trailer:hover,
.hp .hp-step:hover {
  background: var(--abiref-bg);
  border-color: color-mix(in srgb, var(--abiref-blue) 28%, var(--abiref-line));
  box-shadow: var(--abiref-shadow-lg);
}

.abiref-app .service-card h3,
.abiref-app .trailer-card h3,
.abiref-app .value-card h3,
.abiref-app .faq-card h3,
.abiref-app .faq-card summary,
.abiref-app .info-card h3,
.abiref-app .sd-offer h3,
.abiref-app .spec-card strong,
.hp .hp-svc h3,
.hp .hp-trailer__body h3,
.hp .hp-step h4 { color: var(--abiref-ink); }

.abiref-app .service-card p,
.abiref-app .trailer-card p,
.abiref-app .value-card p,
.abiref-app .faq-card p,
.abiref-app .info-card p,
.abiref-app .sd-offer p,
.hp .hp-svc p,
.hp .hp-trailer__body p,
.hp .hp-step p,
.abiref-app .service-card .muted,
.abiref-app .trailer-card .muted,
.abiref-app .value-card .muted,
.abiref-app .info-card .muted { color: var(--abiref-muted); }

.abiref-app .value-card h3 .text-danger { color: var(--abiref-blue) !important; }

.abiref-app .service-card .link-arrow,
.abiref-app .trailer-card .link-arrow,
.abiref-app .faq-card a,
.abiref-app .info-card a,
.abiref-app .info-card .link-arrow,
.hp .hp-svc .hp-link,
.hp .hp-trailer .hp-link,
.hp .hp-step .hp-link { color: var(--abiref-blue); }
[data-theme="dark"] .hp .hp-svc .hp-link,
[data-theme="dark"] .hp .hp-trailer .hp-link,
[data-theme="dark"] .hp .hp-step .hp-link { color: var(--hp-blue-soft, #8fb4ee); }

.hp .hp-svc__icon,
.hp .hp-step__num {
  background: linear-gradient(135deg, #2f5aa8, var(--abiref-blue));
  box-shadow: 0 10px 22px -8px rgba(38, 73, 138, 0.6);
  color: #fff;
}
.abiref-app .spec-card i { color: var(--abiref-blue); }
.abiref-app .faq-card summary::after { color: var(--abiref-blue); }
.abiref-app .faq-card[open] {
  background: var(--abiref-bg);
  border-color: color-mix(in srgb, var(--abiref-blue) 28%, var(--abiref-line));
}

.hp .hp-svc__tags span,
.abiref-app .service-card .pill,
.abiref-app .info-card .pill {
  background: #ffffff;
  border: 1px solid var(--abiref-line);
  color: var(--abiref-muted);
}
.abiref-app .service-card .pill i { color: var(--abiref-blue); }

.hp .hp-trailer__price { color: var(--abiref-blue); }
[data-theme="dark"] .hp .hp-trailer__price { color: var(--hp-blue-soft, #8fb4ee); }
.abiref-app .trailer-card .status-dot {
  background: color-mix(in srgb, #16a34a 12%, transparent);
  color: #15803d;
}
.abiref-app .trailer-card .status-dot::before { background: #16a34a; }
.abiref-app .trailer-card .fw-bold { color: var(--abiref-blue); }

.abiref-app .info-card .booking-steps__num { color: var(--abiref-blue); }
.abiref-app .info-card .booking-steps strong { color: var(--abiref-ink); }
.abiref-app .info-card .booking-steps p { color: var(--abiref-muted); }

.abiref-app .service-card::after,
.abiref-app .trailer-card::after,
.abiref-app .value-card::after,
.hp .hp-svc::before,
.hp .hp-trailer::before,
.hp .hp-step::before { background: var(--abiref-blue); }

.abiref-app .service-card__media,
.abiref-app .trailer-card__media,
.hp .hp-trailer__media {
  border: 0;
}

.abiref-app .info-card h3 .text-danger { color: var(--abiref-blue) !important; }

/* ---- About page: stat strip (typographic, no card) ---- */
.abiref-app .stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(32px, 5vw, 52px);
}

.abiref-app .stat {
  text-align: center;
}

.abiref-app .stat__num {
  font-family: var(--abiref-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--abiref-red);
}

.abiref-app .stat__label {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--abiref-muted);
}

@media (max-width: 575.98px) {
  .abiref-app .stat-strip { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}

.abiref-header .abiref-brand__text { display: none; }

.abiref-footer__credit a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.abiref-footer__credit a:hover { color: #fff; }

.abiref-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--abiref-red, #ee2128);
  color: #fff;
  box-shadow: 0 14px 30px rgba(238, 33, 40, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.abiref-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.abiref-scroll-top:hover { background: #d51d23; color: #fff; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.industry-card {
  background: var(--abiref-bg);
  border: 1px solid var(--abiref-line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--abiref-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--abiref-shadow-lg);
}
.industry-card__media {
  position: relative;
  height: 92px;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--abiref-soft);
}
.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.industry-card__icon {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--abiref-blue);
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.12);
}
.industry-card h2 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.industry-card p {
  margin: 0;
  color: var(--abiref-muted);
  line-height: 1.6;
}
.section-head-center {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
  .industry-grid { grid-template-columns: 1fr; }
  .abiref-scroll-top { right: 16px; bottom: 16px; }
}

/* Editorial industry / service rows */
.ind {
  --ind-navy: #05122b;
  --ind-navy-2: #0a2150;
  --ind-blue: #26498A;
  --ind-red: #EE2128;
  --ind-ink: var(--abiref-ink);
  --ind-muted: var(--abiref-muted);
  --ind-line: var(--abiref-line);
  --ind-ease: cubic-bezier(0.22, 1, 0.36, 1);
  overflow-x: hidden;
}
.ind-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: clamp(52px, 8vw, 100px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(160deg, var(--ind-navy) 0%, var(--ind-navy-2) 62%, var(--ind-navy) 100%);
}
.ind-hero__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 18, 43, 0.78) 0%, rgba(5, 18, 43, 0.88) 100%),
    url("../img/industries/logistics.jpg") center / cover no-repeat;
  transform: scale(1.04);
}
.ind-hero .container { position: relative; z-index: 1; }
.ind-hero__inner { max-width: 720px; margin: 0 auto; }
.ind-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #c7d8f5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ind-hero h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin: 18px auto 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(5, 18, 43, 0.45);
}
.ind-hero__lead {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.ind-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
.ind-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 44px auto 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  max-width: 860px;
  text-align: left;
}
.ind-stat { padding: 22px 20px; background: rgba(5, 18, 43, 0.35); }
.ind-stat strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.ind-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}
.ind-jump {
  padding: 22px 0;
  border-bottom: 1px solid var(--ind-line);
  position: sticky;
  top: 78px;
  z-index: 900;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
}
.ind-jump__row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.ind-jump a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ind-line);
  background: #fff;
  color: var(--ind-ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.25s var(--ind-ease), color 0.25s var(--ind-ease), transform 0.25s var(--ind-ease);
}
.ind-jump a i { color: var(--ind-blue); }
.ind-jump a:hover {
  border-color: color-mix(in srgb, var(--ind-blue) 40%, transparent);
  color: var(--ind-blue);
  transform: translateY(-1px);
}
.ind-jump a:focus-visible {
  outline: 3px solid rgba(38, 73, 138, 0.45);
  outline-offset: 2px;
}
.ind-list { padding: clamp(28px, 5vw, 48px) 0 clamp(64px, 9vw, 108px); background: var(--abiref-soft); }
.ind-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px) 0;
  scroll-margin-top: 170px;
}
.ind-row + .ind-row { border-top: 1px solid color-mix(in srgb, var(--ind-line) 80%, transparent); }
.ind-row--flip { grid-template-columns: 0.95fr 1.05fr; }
.ind-row--flip .ind-row__media { order: 2; }
.ind-row--flip .ind-row__copy { order: 1; }
.ind-row__media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 24px 48px -28px rgba(16, 32, 51, 0.45);
}
.ind-row__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s var(--ind-ease);
}
.ind-row:hover .ind-row__media img { transform: scale(1.1); }
.ind-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 18, 43, 0.45));
  pointer-events: none;
}
.ind-row__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ind-blue);
  font-size: 1.2rem;
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.18);
}
.ind-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ind-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ind-row h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 10px 0 0;
  color: var(--ind-ink);
}
.ind-row__copy p {
  margin: 14px 0 0;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ind-muted);
}
.ind-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ind-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ind-ink);
}
.ind-points i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--ind-red);
}
.ind-row__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 700;
  color: var(--ind-blue);
  text-decoration: none;
  transition: gap 0.2s var(--ind-ease);
}
.ind-row__link:hover { gap: 12px; color: var(--ind-blue); }
.ind-row__link:focus-visible {
  outline: 3px solid rgba(38, 73, 138, 0.45);
  outline-offset: 3px;
}
.ind-support {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #fff;
}
.ind-support h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.ind-support__lead {
  margin: 12px 0 0;
  max-width: 540px;
  color: var(--ind-muted);
  line-height: 1.7;
}
.ind-support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.ind-support__card {
  padding: 26px 24px;
  border: 1px solid var(--ind-line);
  border-radius: 20px;
  background: var(--abiref-bg);
  box-shadow: var(--abiref-shadow-sm);
  height: 100%;
}
.ind-support__card i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ind-blue) 10%, transparent);
  color: var(--ind-blue);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.ind-support__card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.ind-support__card p {
  margin: 0;
  color: var(--ind-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
@media (max-width: 991.98px) {
  .ind-row,
  .ind-row--flip { grid-template-columns: 1fr; }
  .ind-row--flip .ind-row__media,
  .ind-row--flip .ind-row__copy { order: 0; }
  .ind-stats { grid-template-columns: 1fr; }
  .ind-support__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ind-row__media img,
  .ind-row:hover .ind-row__media img { transform: none; transition: none; }
}

/* Services catalog — distinct from industries editorial rows */
.svc { overflow-x: hidden; }
.svc-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: clamp(52px, 8vw, 100px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(160deg, #05122b 0%, #0a2150 58%, #05122b 100%);
}
.svc-hero__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 18, 43, 0.78) 0%, rgba(5, 18, 43, 0.88) 100%),
    var(--svc-hero-image, url("../img/about-workshop.jpg")) center / cover no-repeat;
}
.svc-hero .container { position: relative; z-index: 1; }
.svc-hero__inner { max-width: 720px; margin: 0 auto; }
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #c7d8f5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.svc-hero h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 18px auto 0;
  color: #fff;
  max-width: 16ch;
}
.svc-hero__lead {
  max-width: 540px;
  margin: 18px auto 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
.svc-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 44px auto 0;
  max-width: 860px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}
.svc-fact { padding: 22px 20px; background: rgba(5, 18, 43, 0.35); }
.svc-fact strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}
.svc-fact span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}
.svc-catalog {
  padding: clamp(48px, 7vw, 88px) 0;
  background: var(--abiref-soft);
}
.svc-catalog__head,
.svc-work__head {
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
}
.svc-kicker {
  color: var(--abiref-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.svc-catalog__head h2,
.svc-work__head h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 10px 0 0;
  color: var(--abiref-ink);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.svc-panel {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--abiref-line);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--abiref-shadow-sm);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease;
}
.svc-panel:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--abiref-blue) 28%, var(--abiref-line));
  box-shadow: 0 22px 48px -24px rgba(16, 32, 51, 0.35);
  color: inherit;
}
.svc-panel:focus-visible {
  outline: 3px solid rgba(38, 73, 138, 0.45);
  outline-offset: 3px;
}
.svc-panel__media {
  margin: 0;
  position: relative;
  min-height: 220px;
  min-width: 0;
  overflow: hidden;
  background: #0a2150;
}
.svc-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-panel:hover .svc-panel__media img { transform: scale(1.1); }
.svc-panel__body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.svc-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.svc-panel__num {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--abiref-muted);
}
.svc-panel__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--abiref-blue) 10%, transparent);
  color: var(--abiref-blue);
  font-size: 1rem;
}
.svc-panel h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--abiref-ink);
}
.svc-panel p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--abiref-muted);
}
.svc-panel ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}
.svc-panel li {
  position: relative;
  padding-left: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--abiref-ink);
}
.svc-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--abiref-red);
}
.svc-panel__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--abiref-blue);
}
.svc-panel:hover .svc-panel__more i { transform: translateX(3px); }
.svc-panel__more i { transition: transform 0.2s ease; }
.svc-work {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #fff;
}
.svc-work__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--abiref-line);
  border-bottom: 1px solid var(--abiref-line);
}
.svc-work__row article {
  padding: 28px 28px 28px 0;
}
.svc-work__row article + article {
  padding-left: 28px;
  border-left: 1px solid var(--abiref-line);
}
.svc-work__row strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--abiref-ink);
}
.svc-work__row p {
  margin: 10px 0 0;
  color: var(--abiref-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
@media (max-width: 991.98px) {
  .svc-facts,
  .svc-work__row { grid-template-columns: 1fr; }
  .svc-work__row article,
  .svc-work__row article + article {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--abiref-line);
  }
  .svc-work__row article:first-child { border-top: 0; }
}
@media (max-width: 767.98px) {
  .svc-grid,
  .svc-panel { grid-template-columns: 1fr; }
  .svc-panel__media { min-height: 180px; max-height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-panel,
  .svc-panel__media img,
  .svc-panel:hover,
  .svc-panel:hover .svc-panel__media img { transform: none; transition: none; }
}
