/* =========================================================
   MBRAX — Design System v3 · Refined Institutional
   Editorial navy + champagne · Manrope/Inter · 8pt grid
   ========================================================= */

:root {
  color-scheme: light;

  /* Surfaces */
  --bg: #fafbfc;
  --paper: #ffffff;
  --paper-cool: #f3f5f9;
  --paper-warm: #f7f5f0;

  /* Ink */
  --ink: #0b1220;
  --ink-2: #10182c;
  --ink-soft: #3f4a5e;
  --muted: #6b7382;
  --muted-2: #9aa1ad;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);

  /* Brand — Deep editorial navy */
  --brand: #102341;
  --brand-600: #1a3666;
  --brand-700: #0a1a33;
  --brand-800: #060e1c;
  --brand-deep: #070f1f;
  --brand-soft: #eef1f7;
  --brand-tint: rgba(16, 35, 65, 0.06);

  /* Accent — Champagne amber (less saturated, more editorial) */
  --accent: #c89a52;
  --accent-hot: #a87a3a;
  --accent-soft: #f6ecd9;
  --accent-deep: #5a3e16;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 18px 36px -18px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 32px 64px -28px rgba(15, 23, 42, 0.25);
  --shadow-xl: 0 40px 90px -34px rgba(7, 15, 31, 0.45);
  --shadow-brand: 0 18px 38px -16px rgba(16, 35, 65, 0.4);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 999px;

  /* Layout — 8pt rhythm, generous */
  --shell: min(100% - 2rem, 1240px);
  --section-y: clamp(2.75rem, 6vw, 6rem);
  --section-y-lg: clamp(3.5rem, 7vw, 7.5rem);
  --header-h: 4.25rem;
  --gap: 1.5rem;
  --gap-lg: 2.5rem;

  /* Typography */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Inter", system-ui, sans-serif;

  /* Motion — single refined easing, no bounce */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinema: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-fast: 200ms;
  --dur: 360ms;
  --dur-slow: 720ms;
  --dur-reveal: 1200ms;
  --dur-reveal-mobile: 800ms;

  /* Reveal distance — cinematic */
  --reveal-y: 28px;
  --reveal-y-mobile: 16px;
}

/* ===== Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 20rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(7, 15, 31, 0.32);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fadeIn var(--dur) var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; }

button { font: inherit; cursor: pointer; }

ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4, p { margin-top: 0; }

::selection { background: rgba(16, 35, 65, 0.16); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus-visible { top: 1rem; }

/* ===== Shell & Sections ===== */
.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.section--lg { padding-block: var(--section-y-lg); }

.section-heading {
  max-width: 56rem;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
}

.section-heading--centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading__lead {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(1.02rem, 0.96rem + 0.25vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

.section-heading--centered .section-heading__lead { margin-inline: auto; }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
  padding: 0;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex: 0 0 auto;
}

.eyebrow--centered {
  justify-content: center;
}

.eyebrow--light { color: rgba(255, 255, 255, 0.78); }

.eyebrow--accent { color: var(--accent-deep); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-2);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 2rem + 3.4vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 1.4rem;
}

h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
  background-image: linear-gradient(transparent 70%, var(--accent-soft) 70%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-inline: 0.05em;
}

h2 {
  font-size: clamp(1.85rem, 1.6rem + 1.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  letter-spacing: -0.012em;
  color: var(--ink-2);
}

h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

p {
  color: var(--ink-soft);
  line-height: 1.7;
  text-wrap: pretty;
}

/* ===== Buttons ===== */
.button {
  --btn-h: 3rem;
  --btn-px: 1.5rem;
  --btn-fs: 0.94rem;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: var(--btn-h);
  padding: 0 var(--btn-px);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--btn-fs);
  line-height: 1;
  letter-spacing: -0.005em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  isolation: isolate;
  transition:
    background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.button__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  transition: transform var(--dur) var(--ease);
}

.button__icon--lead {
  margin-inline-start: -0.1rem;
}

.button:hover .button__icon:not(.button__icon--lead) {
  transform: translateX(2px);
}

.button:active {
  transform: scale(0.985);
  transition-duration: 100ms;
}

/* Sizes */
.button--lg {
  --btn-h: 3.4rem;
  --btn-px: 1.85rem;
  --btn-fs: 1rem;
}

.button--small {
  --btn-h: 2.5rem;
  --btn-px: 1rem;
  --btn-fs: 0.85rem;
}

.button--block { width: 100%; }

/* Primary — Deep navy */
.button--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--brand-600);
  border-color: var(--brand-600);
  box-shadow: 0 22px 44px -18px rgba(16, 35, 65, 0.55);
}

/* Accent — Champagne amber (CTA principal) */
.button--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 14px 30px -14px rgba(200, 154, 82, 0.55);
}

.button--accent:hover,
.button--accent:focus-visible {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  box-shadow: 0 18px 36px -14px rgba(168, 122, 58, 0.6);
}

/* Ghost — outline neutral */
.button--ghost {
  background: var(--paper);
  border-color: var(--line-strong);
  color: var(--ink-2);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--paper);
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}

/* Outline — sobre fundo escuro */
.button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Quiet — minimal text */
.button--quiet {
  background: transparent;
  color: var(--ink-2);
  border-color: transparent;
  padding-inline: 0.85rem;
}

.button--quiet:hover,
.button--quiet:focus-visible {
  color: var(--brand);
  background: var(--brand-soft);
}

/* ===== Link arrow ===== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.link-arrow svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--dur) var(--ease);
}

.link-arrow:hover,
.link-arrow:focus-visible {
  color: var(--brand-600);
}

.link-arrow:hover svg,
.link-arrow:focus-visible svg {
  transform: translateX(3px);
}

.link-arrow--light {
  color: #fff;
}

.link-arrow--light:hover,
.link-arrow--light:focus-visible {
  color: var(--accent);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 251, 252, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--brand), var(--accent));
  box-shadow: 0 0 18px rgba(200, 154, 82, 0.35);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02), 0 8px 24px -16px rgba(15, 23, 42, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  max-width: min(72vw, 18rem);
  color: var(--ink-2);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: #fff;
  transition: background var(--dur) var(--ease);
}

.brand:hover .brand__mark { background: var(--brand-600); }

.brand__mark svg {
  width: 1.3rem;
  height: 1.3rem;
}

.brand__text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  line-height: 1.1;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink-2);
}

.brand__text span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ===== Menu ===== */
.menu-toggle {
  display: inline-grid;
  place-items: center;
  gap: 0.32rem;
  position: relative;
  z-index: 46;
  width: 2.6rem;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
  transition:
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: calc(var(--header-h) + 0.5rem) 1rem auto;
  z-index: 45;
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  max-height: calc(100dvh - var(--header-h) - 1rem);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -0.5rem, 0);
  transition:
    opacity var(--dur) var(--ease),
    visibility var(--dur),
    transform var(--dur) var(--ease);
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.site-nav__list {
  display: grid;
  gap: 0.1rem;
}

.site-nav__list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  background: var(--brand-soft);
  color: var(--brand);
}

.site-nav .button { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(45% 65% at 95% 5%, rgba(16, 35, 65, 0.11), transparent 60%),
    radial-gradient(50% 70% at 5% 95%, rgba(200, 154, 82, 0.08), transparent 60%),
    radial-gradient(70% 50% at 50% 100%, rgba(16, 35, 65, 0.05), transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, #f1f4f9 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: radial-gradient(ellipse 95% 75% at 50% 38%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 95% 75% at 50% 38%, #000 25%, transparent 80%);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 100px,
      rgba(200, 154, 82, 0.045) 100px,
      rgba(200, 154, 82, 0.045) 101px
    );
  mask-image: linear-gradient(120deg, transparent 0%, #000 35%, #000 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(120deg, transparent 0%, #000 35%, #000 65%, transparent 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 30%, var(--line) 70%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 4vw, 3.75rem);
  align-items: center;
}

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

.hero__title {
  max-width: 18ch;
  margin-bottom: 1.4rem;
}

.hero__lead {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(1.05rem, 0.97rem + 0.32vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero__proof {
  display: grid;
  gap: 0.65rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 38rem;
}

.hero__proof li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8.5rem, auto) 1fr;
  gap: 0.8rem 1rem;
  align-items: baseline;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(16, 35, 65, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}

.hero__proof strong {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.006em;
}

.hero__proof span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2.4rem 0 0;
  padding: 1.25rem 0;
}

.hero__stats > div {
  display: grid;
  gap: 0.32rem;
  padding: 0 1.1rem;
  border-right: 1px solid var(--line);
  align-content: start;
}

.hero__stats > div:first-child { padding-left: 0; }
.hero__stats > div:last-child { padding-right: 0; border-right: 0; }

.hero__stats dt {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.hero__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem);
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.hero__stats small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
}

/* Hero visual */
.hero-visual {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero-visual__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--brand);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  max-height: 38rem;
  transform: translateZ(0);
}

@media (min-width: 60rem) {
  .hero-visual__frame {
    aspect-ratio: 4 / 4.5;
  }
}

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

.hero-visual__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(7, 15, 31, 0.5)),
    linear-gradient(135deg, rgba(16, 35, 65, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.hero-visual__badge {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  max-width: 17rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-visual__badge--top {
  top: 1.25rem;
  left: 1.25rem;
}

.hero-visual__badge--bottom {
  bottom: 1.25rem;
  right: 1.25rem;
}

.hero-visual__badge-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: #fff;
  flex: 0 0 auto;
}

.hero-visual__badge-icon--accent {
  background: var(--accent);
  box-shadow: 0 10px 24px -12px rgba(200, 154, 82, 0.9);
}

.hero-visual__badge-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-visual__badge-text {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  line-height: 1.2;
}

.hero-visual__badge-text span {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-visual__badge-text strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.25;
}

/* ===== Trust strip ===== */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.75rem;
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.trust-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 12rem;
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    radial-gradient(80% 120% at 100% 0%, rgba(16, 35, 65, 0.08), transparent 65%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.trust-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent), transparent);
  opacity: 0.75;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.trust-card--highlight {
  background:
    linear-gradient(180deg, rgba(7, 15, 31, 0.98), rgba(10, 26, 51, 0.96)),
    radial-gradient(80% 130% at 100% 0%, rgba(200, 154, 82, 0.2), transparent 68%);
  border-color: rgba(255, 255, 255, 0.1);
}

.trust-card__kicker {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-full);
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.trust-card--highlight .trust-card__kicker {
  background: rgba(200, 154, 82, 0.16);
  color: var(--accent);
}

.trust-card strong {
  display: block;
  max-width: 16ch;
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.55vw, 1.42rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
}

.trust-card--highlight strong { color: #fff; }

.trust-card p {
  margin: 0;
  max-width: 29ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trust-card--highlight p { color: rgba(255, 255, 255, 0.72); }

@media (min-width: 48rem) {
  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

@media (max-width: 39.99rem) {
  .hero__proof li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding-left: 1rem;
  }

  .hero-visual__badge {
    max-width: min(15.5rem, calc(100% - 1.5rem));
    padding: 0.75rem 0.85rem;
    gap: 0.7rem;
  }

  .hero-visual__badge--top {
    top: 0.75rem;
    left: 0.75rem;
  }

  .hero-visual__badge--bottom {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .trust-strip {
    margin-top: 0;
    padding-block: 1rem 0;
  }

  .trust-card {
    min-height: auto;
  }
}

/* ===== About ===== */
.about {
  position: relative;
  padding-block: var(--section-y-lg);
  isolation: isolate;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.about__layout {
  display: grid;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: center;
}

.about__media {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.about__media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  aspect-ratio: 4 / 5;
  background: var(--brand);
  box-shadow: var(--shadow-xl);
}

.about__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(7, 15, 31, 0.45)),
    linear-gradient(135deg, rgba(16, 35, 65, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.about__media-card {
  position: absolute;
  right: -0.85rem;
  bottom: 2rem;
  z-index: 2;
  display: grid;
  gap: 0.3rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  text-align: left;
  min-width: 11rem;
  border: 1px solid var(--line);
}

.about__media-card-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brand);
  line-height: 1;
}

.about__media-card-label {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}

.about__media-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
}

.about__content h2 { max-width: 22ch; }

.about__lead {
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.85rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--dur) var(--ease);
}

.pillar:hover { border-color: var(--line-strong); }

.pillar__num {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
  font-feature-settings: "tnum";
}

.pillar h3 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.about__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: 2rem;
}

.about__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0;
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--brand-deep);
  color: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.about__metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(200, 154, 82, 0.08), transparent 60%);
  pointer-events: none;
}

.about__metrics article {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about__metrics article:last-child { border-right: 0; }

.about__metrics strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
}

.about__metrics span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ===== Services ===== */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--paper-cool) 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services__media,
.differentials__media,
.clients__media,
.support__visual {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(2.25rem, 4vw, 3.5rem);
  border-radius: var(--radius-2xl);
  background: var(--brand);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  aspect-ratio: 4 / 3;
}

.services__media::after,
.differentials__media::after,
.clients__media::after,
.support__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 55%, rgba(7, 15, 31, 0.42)),
    linear-gradient(110deg, rgba(16, 35, 65, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

.services__media::before,
.differentials__media::before,
.clients__media::before,
.support__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  border-radius: inherit;
  pointer-events: none;
}

@media (min-width: 40rem) {
  .services__media,
  .support__visual {
    aspect-ratio: 16 / 8;
  }
  .differentials__media,
  .clients__media {
    aspect-ratio: 16 / 7;
  }
}

@media (min-width: 64rem) {
  .services__media,
  .support__visual {
    aspect-ratio: 21 / 9;
  }
  .differentials__media,
  .clients__media {
    aspect-ratio: 21 / 8;
  }
}

.services__media img,
.differentials__media img,
.clients__media img,
.support__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  overflow: hidden;
}

.service-card__media {
  position: relative;
  overflow: hidden;
  margin: calc(clamp(1.5rem, 2.5vw, 1.85rem) * -1) calc(clamp(1.5rem, 2.5vw, 1.85rem) * -1) 0.25rem;
  aspect-ratio: 16 / 10;
  background: var(--brand-soft);
  isolation: isolate;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(7, 15, 31, 0.32)),
    linear-gradient(120deg, rgba(16, 35, 65, 0.12) 0%, transparent 50%);
  opacity: 0.7;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
  z-index: 1;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1500ms var(--ease-out);
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card:hover .service-card__media::after {
  opacity: 1;
}

.service-card:hover .service-card__media img {
  transform: scale(1);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: var(--brand);
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.service-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.service-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 0;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.service-card__list {
  display: grid;
  gap: 0.5rem;
  margin: 0.25rem 0 0;
  padding: 0;
}

.service-card__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.65rem;
  height: 1.5px;
  background: var(--brand);
  opacity: 0.7;
  border-radius: 2px;
}

.service-card .link-arrow {
  margin-top: 0.4rem;
}

/* Services CTA */
.services__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--brand-deep);
  color: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--accent);
}

.services__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 100% 50%, rgba(200, 154, 82, 0.08), transparent 60%);
  pointer-events: none;
}

.services__cta > div { position: relative; }

.services__cta .eyebrow--light {
  margin-bottom: 0.85rem;
}

.services__cta h3 {
  color: #fff;
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  margin-bottom: 0.55rem;
}

.services__cta p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  font-size: 0.97rem;
  max-width: 38rem;
}

.services__cta .button { position: relative; justify-self: start; }

/* ===== Moto Segment ===== */
.moto-segment {
  background: var(--paper-cool);
  position: relative;
  overflow: hidden;
}

.moto-segment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 0% 100%, rgba(200, 154, 82, 0.04), transparent 60%);
  pointer-events: none;
}

.moto-segment__layout {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.moto-segment__copy h2 {
  max-width: 22ch;
}

.moto-segment__copy p {
  font-size: 1rem;
  max-width: 36rem;
  color: var(--ink-soft);
}

.moto-segment__cta {
  margin-top: 1.85rem;
}

.moto-segment__media {
  position: relative;
  margin: 0;
}

.moto-segment__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  aspect-ratio: 4 / 3;
  background: var(--brand);
  box-shadow: var(--shadow-xl);
}

.moto-segment__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moto-segment__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 65%, rgba(7, 15, 31, 0.4)),
    linear-gradient(135deg, rgba(16, 35, 65, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

/* ===== Differentials ===== */
.differentials {
  position: relative;
  isolation: isolate;
}

.differentials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  opacity: 0.6;
  pointer-events: none;
}

.differentials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.differentials__grid article {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 1px solid var(--line-strong);
  transition: border-color var(--dur) var(--ease);
}

.differentials__grid article:hover {
  border-left-color: var(--accent);
}

.differentials__num {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  font-feature-settings: "tnum";
}

.differentials__num::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: 0.6rem;
}

.differentials__grid h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  max-width: 22ch;
}

.differentials__grid p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 32ch;
  color: var(--ink-soft);
}

/* ===== Process ===== */
.process {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand-700) 100%);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 95% 0%, rgba(200, 154, 82, 0.07), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(26, 54, 102, 0.5), transparent 55%);
  pointer-events: none;
}

.process > .shell { position: relative; }

/* ===== Projects ===== */
.projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.project-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  overflow: hidden;
}

.project-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 600ms var(--ease-cinema);
}

.project-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.project-card:hover::after {
  transform: scaleX(1);
}

.project-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--paper-cool), var(--brand-soft));
  border-radius: var(--radius-md);
  color: var(--brand);
  overflow: hidden;
  isolation: isolate;
}

.project-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(7, 15, 31, 0.28));
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
  z-index: 1;
}

.project-card:hover .project-card__visual::after { opacity: 1; }

.project-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1500ms var(--ease-out);
}

.project-card:hover .project-card__visual img {
  transform: scale(1);
}

.project-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
  max-width: 28ch;
  transition: color var(--dur) var(--ease);
}

.project-card:hover h3 { color: var(--brand); }

.project-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===== Clients ===== */
.clients {
  background: var(--paper-cool);
}

.clients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--dur) var(--ease);
}

.client-item:hover { border-color: var(--line-strong); }

.client-item__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  flex: 0 0 auto;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.client-item:hover .client-item__icon {
  background: var(--brand);
  color: #fff;
}

.client-item__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.client-item span {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.3;
}

/* ===== Support / Contact ===== */
.support__layout {
  display: grid;
  gap: clamp(2rem, 3.5vw, 3rem);
}

.support__channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.channel-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink-2);
  text-decoration: none;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.channel-card:hover,
.channel-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.channel-card__icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: var(--brand);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  flex: 0 0 auto;
}

.channel-card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.channel-card:hover .channel-card__icon,
.channel-card:focus-visible .channel-card__icon {
  background: var(--brand);
  color: #fff;
}

.channel-card > div {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
  align-content: center;
}

.channel-card__label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.channel-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-2);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.channel-card small {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.channel-card__arrow {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background: var(--brand-soft);
  color: var(--brand);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
  flex: 0 0 auto;
}

.channel-card__arrow svg {
  width: 1rem;
  height: 1rem;
}

.channel-card:hover .channel-card__arrow {
  background: var(--brand);
  color: #fff;
  transform: translateX(3px);
}

.channel-card--primary {
  background: var(--brand-deep);
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.channel-card--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 100% 50%, rgba(200, 154, 82, 0.1), transparent 60%);
  pointer-events: none;
}

.channel-card--primary > * { position: relative; }

.channel-card--primary .channel-card__label { color: var(--accent); }

.channel-card--primary strong { color: #fff; }
.channel-card--primary small { color: rgba(255, 255, 255, 0.66); }

.channel-card--primary .channel-card__icon {
  background: var(--accent);
  color: #fff;
}

.channel-card--primary .channel-card__arrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.channel-card--primary:hover .channel-card__icon {
  background: #fff;
  color: var(--brand);
}

.channel-card--primary:hover .channel-card__arrow {
  background: var(--accent);
  color: #fff;
}

/* Map */
.support__map {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xs);
}

.support__map-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.5rem;
}

.support__map-header > div {
  display: grid;
  gap: 0.25rem;
}

.support__map-header strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.3;
}

.support__map-header small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.support__map-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  background: var(--paper-cool);
  border: 1px solid var(--line);
}

.support__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== CTA Final ===== */
.cta-final {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand-700) 100%);
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 100% at 100% 0%, rgba(200, 154, 82, 0.14), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(26, 54, 102, 0.5), transparent 55%);
  pointer-events: none;
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 28px,
      rgba(255, 255, 255, 0.025) 28px,
      rgba(255, 255, 255, 0.025) 29px
    );
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.85rem;
  align-items: center;
}

.cta-final__copy h2 {
  color: #fff;
  margin-bottom: 0.6rem;
  max-width: 22ch;
}

.cta-final__copy p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  max-width: 38rem;
  font-size: 1rem;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  padding-block: clamp(3rem, 5vw, 4.5rem) 1.5rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer__brand p {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.65;
}

.brand--footer .brand__mark {
  background: var(--brand);
}

.site-footer__col h4 {
  color: var(--ink-2);
  margin-bottom: 1rem;
}

.site-footer__col ul { display: grid; gap: 0.6rem; }

.site-footer__col li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer__col a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.site-footer__col a:hover,
.site-footer__col a:focus-visible {
  color: var(--brand);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.site-footer__bottom small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
  position: fixed;
  z-index: 50;
  right: clamp(1rem, 2.5vw, 1.5rem);
  bottom: clamp(1rem, 2.5vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem 0.85rem 0.9rem;
  border-radius: var(--radius-full);
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.55);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.floating-whatsapp svg {
  width: 1.3rem;
  height: 1.3rem;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1ebd5a;
  box-shadow: 0 18px 38px -12px rgba(37, 211, 102, 0.7);
}

/* ===== Reveal Animations (cinematic) ===== */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity var(--dur-reveal) var(--ease-cinema),
    transform var(--dur-reveal) var(--ease-cinema);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 48rem) {
  [data-reveal] {
    transform: translate3d(0, var(--reveal-y-mobile), 0);
    transition-duration: var(--dur-reveal-mobile);
  }
}

/* Parallax — image transforms driven by scroll */
[data-parallax] {
  transform: translate3d(0, var(--py, 0px), 0) scale(1.08);
  will-change: transform;
}

/* Hero badge entrance */
.hero-visual__badge {
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  transition:
    opacity 900ms var(--ease-cinema),
    transform 900ms var(--ease-cinema);
  transition-delay: 600ms;
}

.hero-visual.is-visible .hero-visual__badge {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* About floating card entrance */
.about__media-card {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.96);
  transition:
    opacity 900ms var(--ease-cinema),
    transform 900ms var(--ease-cinema);
  transition-delay: 500ms;
}

.about__media-tag {
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
  transition:
    opacity 800ms var(--ease-cinema),
    transform 800ms var(--ease-cinema);
  transition-delay: 350ms;
}

.about__media.is-visible .about__media-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.about__media.is-visible .about__media-tag {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero stats divider grow-in */
.hero__stats {
  position: relative;
}

.hero__stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms var(--ease-cinema);
  transition-delay: 200ms;
}

.hero__stats.is-visible::before {
  transform: scaleX(1);
}

/* ===== Responsive ===== */
@media (min-width: 40rem) {
  .services__grid,
  .projects__grid,
  .clients__grid,
  .support__channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
  }

  .site-footer__brand { grid-column: span 1; }

  .support__map-header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 56rem) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
  }

  .about__layout {
    grid-template-columns: 1fr 1.05fr;
  }

  .moto-segment__layout {
    grid-template-columns: 1.05fr 1fr;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__cta {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }

  .differentials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-final__inner {
    grid-template-columns: 1.4fr auto;
    gap: 3rem;
  }
}

@media (min-width: 64rem) {
  .menu-toggle { display: none; }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .site-nav__list a {
    position: relative;
    min-height: auto;
    padding: 0.55rem 0.65rem;
    border-radius: 0;
    font-size: 0.9rem;
    color: var(--ink-soft);
    background: transparent;
  }

  .site-nav__list a::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur) var(--ease);
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    background: transparent;
    color: var(--ink-2);
  }

  .site-nav__list a:hover::after,
  .site-nav__list a:focus-visible::after {
    transform: scaleX(1);
  }

  .site-nav .button {
    width: auto;
    margin-inline-start: 0.5rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .differentials__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .projects__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .support__channels {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 80rem) {
  .services__cta {
    padding: clamp(2rem, 3vw, 2.5rem) clamp(2.5rem, 3.5vw, 3rem);
  }

  .about__metrics {
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  }
}

/* ===== Departments (sector emails) ===== */
.support__departments {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xs);
}

.support__departments-header {
  margin-bottom: clamp(1.25rem, 2vw, 1.85rem);
  text-align: center;
}

.support__departments-header .eyebrow {
  margin-bottom: 0.85rem;
  justify-content: center;
}

.support__departments-header h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.018em;
}

.support__departments-header p {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.support__departments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dept-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink-2);
  text-decoration: none;
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.dept-card:hover,
.dept-card:focus-visible {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.dept-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.dept-card:hover .dept-card__icon,
.dept-card:focus-visible .dept-card__icon {
  background: var(--brand);
  color: #fff;
}

.dept-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.dept-card__body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  flex: 1 1 auto;
}

.dept-card__label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dept-card__email {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.25;
  letter-spacing: -0.008em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dept-card__hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 48rem) {
  .support__departments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (min-width: 64rem) {
  .support__departments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Footer departments ===== */
.site-footer__departments {
  position: relative;
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.site-footer__departments h4 {
  margin-bottom: 1.25rem;
}

.site-footer__departments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__departments-grid li {
  display: grid;
  gap: 0.22rem;
  padding: 0.95rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-width: 0;
}

.site-footer__departments-grid span {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer__departments-grid a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  letter-spacing: -0.008em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--dur-fast) var(--ease);
}

.site-footer__departments-grid a:hover,
.site-footer__departments-grid a:focus-visible {
  color: var(--brand);
}

@media (min-width: 40rem) {
  .site-footer__departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .site-footer__departments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Services — More section (compact) ===== */
.services__more {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 3vw, 2.75rem);
  border-top: 1px solid var(--line);
}

.services__more-header {
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
}

.services__more-header .eyebrow {
  justify-content: center;
  margin-bottom: 0.85rem;
}

.services__more-header h3 {
  font-size: clamp(1.4rem, 1.2rem + 0.7vw, 1.75rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.018em;
  max-width: 32ch;
  margin-inline: auto;
}

.services__more-header p {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.services__more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-mini {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: 100%;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.service-mini:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-mini__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.service-mini:hover .service-mini__icon {
  background: var(--brand);
  color: #fff;
}

.service-mini__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.service-mini h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin: 0;
  text-transform: none;
  line-height: 1.3;
}

.service-mini p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.service-mini .link-arrow {
  margin-top: 0.3rem;
  font-size: 0.88rem;
}

@media (min-width: 40rem) {
  .services__more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .services__more-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Process — Timeline redesign ===== */
.process__header {
  position: relative;
  z-index: 1;
}

.process__header h2 {
  color: #fff;
  margin-inline: auto;
}

.process__header .section-heading__lead,
.process__lead {
  color: rgba(255, 255, 255, 0.78);
  margin-inline: auto;
}

.process__timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.process__step:hover {
  border-color: rgba(200, 154, 82, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.process__step-marker {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.process__step .process__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
  box-shadow: 0 8px 22px -8px rgba(200, 154, 82, 0.55);
}

.process__step-body h3 {
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
  letter-spacing: -0.012em;
}

.process__step-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.6;
}

.process__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 56rem) {
  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .process__timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .process__step {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.1rem;
    padding: 1.6rem 1.5rem;
    height: 100%;
  }

  .process__step-marker {
    place-items: start;
  }

  /* Connecting line between steps on desktop */
  .process__timeline::before {
    content: "";
    position: absolute;
    top: calc(1.6rem + 1.3rem); /* padding-top + half num height */
    left: calc(1.5rem + 2.6rem + 0.5rem); /* skip first step's num */
    right: calc(1.5rem + 2.6rem + 0.5rem);
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(200, 154, 82, 0.45) 12%,
      rgba(200, 154, 82, 0.45) 88%,
      transparent 100%
    );
    z-index: 0;
  }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    transform: none !important;
  }

  .hero-visual__badge,
  .about__media-card,
  .about__media-tag {
    opacity: 1;
    transform: none;
  }

  .hero__stats::before {
    transform: scaleX(1);
  }

  .hero-visual__frame img,
  .about__media-frame img,
  .moto-segment__frame img,
  .service-card__media img,
  .project-card__visual img {
    transform: none;
  }
}

/* ===== Print ===== */
@media print {
  .site-header,
  .menu-toggle,
  .floating-whatsapp,
  .cta-final {
    display: none;
  }

  .button {
    border: 1px solid #000;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}
