*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #003366;
  --color-primary-dark: #002244;
  --color-accent: #FFEE58;
  --color-accent-dark: #F9E030;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-body: #1a1a1a;
  --color-gray-light: #f5f5f5;
  --color-gray: #686868;
  --color-gray-dark: #333333;
  --color-border: #e0e0e0;
  --color-border-soft: #ececec;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-accent: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container-width: 1340px;
  --container-padding: clamp(16px, 4vw, 24px);
  --section-padding: clamp(64px, 10vw, 110px);
  --header-height: 80px;

  --shadow-sm: 0 2px 10px rgba(0, 51, 102, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 51, 102, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 51, 102, 0.08);
  --shadow-btn: 0 1px 2px rgba(0, 51, 102, 0.06), 0 2px 8px rgba(0, 51, 102, 0.05);
  --shadow-btn-hover: 0 4px 20px rgba(0, 51, 102, 0.14), 0 2px 6px rgba(0, 51, 102, 0.08);
  --radius-btn: 8px;

  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Agency-level tokens (additive) */
  --hero-overlay-top: rgba(0, 34, 68, 0.78);
  --hero-overlay-bottom: rgba(0, 51, 102, 0.45);
  --yellow-line: 2px;
  --reveal-distance: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
  background: radial-gradient(circle at 10% 20%, rgba(0, 51, 102, 0.02) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(255, 238, 88, 0.03) 0%, transparent 40%),
              var(--color-white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.7em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.3; }
h4 { font-size: 1.125rem; line-height: 1.35; }

p { margin-bottom: 1em; }
p + p { margin-top: 0.25em; }

/* Editorial uppercase titles — Inter 600 com tracking (estética industrial/B2B) */
.title-caps,
.features-header h2,
.section-head-block h2,
.cta-section h2,
.catalog-intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.cta-section h2 {
  letter-spacing: 0.05em;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  max-width: 24ch;
  margin-inline: auto;
}

.hero__page-content h1.title-caps {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--color-white);
}

/* Form / split columns — títulos longos em caixa mista (Inter 700) */
.split-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 16ch;
  text-transform: none;
}

.split-head h2 .text-accent {
  color: var(--color-primary);
  font-weight: 700;
}

/* Eyebrow / kicker — small Inter 13px, uppercase, gray, used above section heads */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.kicker--light { color: var(--color-accent); }

.text-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-gray);
  max-width: 60ch;
  margin-top: 4px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

/* ========== LAYOUT UTILITIES ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.split--start {
  align-items: start;
}

.grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.text-muted {
  color: var(--color-gray);
}

.img-rounded {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-embed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-showcase {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cd-showcase img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Vídeo banner full-bleed (home) */
.video-banner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.video-banner__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: #000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-banner__preview {
  display: block;
  width: 100%;
  height: clamp(280px, 50vh, 560px);
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
}

.video-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to top, rgba(0, 17, 51, 0.55), rgba(0, 17, 51, 0.15));
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.video-banner__trigger:hover .video-banner__overlay,
.video-banner__trigger:focus-visible .video-banner__overlay {
  opacity: 1;
}

.video-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.video-banner__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-lightbox[hidden] {
  display: none;
}

body.video-lightbox-open {
  overflow: hidden;
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 30, 0.94);
}

.video-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
}

.video-lightbox__player {
  display: block;
  width: 100%;
  max-height: calc(100vh - 80px);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.video-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
  .video-banner__preview {
    height: clamp(220px, 40vh, 400px);
  }

  .video-banner__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 17, 51, 0.45), transparent 60%);
    justify-content: flex-end;
    padding-bottom: 20px;
  }
}

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed--with-photo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  aspect-ratio: auto;
  overflow: visible;
  box-shadow: none;
}

.contact-fachada {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.cadastro-aside__photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 28px;
}

.map-embed--with-photo iframe {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-info__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.contact-info__value {
  color: var(--color-gray-dark);
}

.contact-info__link {
  color: var(--color-primary);
  font-weight: 500;
}

.section--gray {
  background-color: var(--color-gray-light);
}

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0, 51, 102, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img,
.header__logo svg {
  height: 50px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.header__link:hover,
.header__link.is-active {
  color: var(--color-primary);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header__cta:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.header__cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}

.header__cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 24px var(--container-padding);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 999;
  }

  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__link,
  .header__cta {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .header__menu-btn {
    display: flex;
    z-index: 1001;
  }

  .header__menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  background-color: var(--color-primary);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.hero__text h1 {
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: 16px;
}

.hero__text h1 .highlight {
  color: var(--color-accent);
}

.hero__text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 500px;
}

.hero__image img {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.hero--page {
  min-height: 400px;
}

.hero--compact {
  min-height: 350px;
}

.hero__page-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero__page-content h1 {
  color: var(--color-white);
  font-family: var(--font-heading);
}

.hero__page-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 520px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero--page {
    min-height: 280px;
  }

  .hero--compact {
    min-height: 240px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
  }

  .hero__text p {
    max-width: none;
    margin-inline: auto;
  }

  .hero__page-content {
    padding: 40px 0;
    text-align: center;
  }

  .hero__page-content p {
    max-width: none;
    margin-inline: auto;
  }

  .hero__image { display: none; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  box-shadow: var(--shadow-btn);
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn--outline {
  border-color: var(--color-white);
  color: var(--color-white);
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-btn);
}

.btn--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--dark:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--outline:focus-visible {
  outline-color: var(--color-white);
}

/* Ghost — transparente com borda, usado sobre fundos escuros/imagem */
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.btn--ghost:active { transform: translateY(0); }

.btn--ghost:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Large — CTA principal */
.btn--lg {
  padding: 16px 36px;
  font-size: 15px;
}

/* ========== SECTION HEADER ========== */
.section-header {
  margin-bottom: 48px;
}

.section-header__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background-color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 12px auto 0;
}

/* ========== FEATURES (home) ========== */
.section-features {
  background-color: var(--color-white);
}

.features-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.features-layout__media {
  margin: 0;
}

.features-layout__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.features-header {
  margin-bottom: 40px;
}

.features-header h2 {
  margin-top: 16px;
  max-width: none;
}

.features-header p {
  color: var(--color-gray);
  max-width: 42ch;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
}

.features-prose {
  margin-bottom: 28px;
}

.features-prose p {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 48ch;
}

.features-prose p + p {
  margin-top: 16px;
}

.features-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--color-border);
}

.features-points li {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-gray-dark);
  max-width: 48ch;
}

.features-points li strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  border-top: 1px solid var(--color-border);
}

.features-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.features-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.features-item h3 strong {
  font-weight: 700;
}

.features-item p {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.65;
}

/* ========== FEATURE CARDS (inner pages) ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background-color: var(--color-white);
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.feature-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--color-gray);
  font-size: 15px;
}

@media (max-width: 992px) {
  .features-layout {
    grid-template-columns: 1fr;
  }

  .features-layout__media {
    max-width: 560px;
  }

  .features-header h2 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .features-list,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    column-gap: 0;
  }
}

/* ========== CATÁLOGO (grid — modelo portfólio) ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-section {
  padding-bottom: 80px;
}

.catalog-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.catalog-intro h2 {
  margin-top: 16px;
}

.catalog-intro__lead {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.65;
  margin-top: 12px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.catalog-search-wrap {
  flex: 1;
  min-width: 220px;
  max-width: 420px;
}

.catalog-search {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: var(--color-white);
}

.catalog-search:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

.catalog-count {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray);
  white-space: nowrap;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.catalog-filter {
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.catalog-filter:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.catalog-filter.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  padding-bottom: 16px;
}

.catalog-more[hidden] {
  display: none !important;
}

.catalog-more__btn {
  min-width: 220px;
}

.catalog-grid__note {
  font-size: 12px;
  color: var(--color-gray);
  margin-top: 24px;
  line-height: 1.45;
  text-align: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 1px solid rgba(0, 51, 102, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.02);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
  border-color: rgba(0, 51, 102, 0.12);
}

.product-card.is-in-list {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-light);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__placeholder {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 51, 102, 0.2);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
  gap: 6px;
}

.product-card__cat {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gray);
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.product-card__sub {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.4;
}

.product-card__contact {
  display: block;
  width: 100%;
  padding: 12px 14px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-btn);
  transition: background var(--transition);
}

.product-card__contact:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.product-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  min-height: 3.6em;
}

.product-card__actions {
  margin-top: auto;
  padding-top: 14px;
}

.product-card__add {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-btn);
  transition: background var(--transition);
}

.product-card__add:hover {
  background: var(--color-primary-dark);
}

.product-card__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
}

.product-card__qty-val {
  min-width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.catalog-qty-btn {
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 1;
  color: var(--color-primary);
  transition: background var(--transition);
}

.catalog-qty-btn:hover:not(:disabled) {
  background: var(--color-gray-light);
}

.catalog-empty {
  text-align: center;
  color: var(--color-gray);
  padding: 48px 20px;
  grid-column: 1 / -1;
}

/* Barra fixa do pedido */
.catalog-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.catalog-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-bar__inner p {
  font-size: 14px;
  font-weight: 500;
}

.catalog-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-bar .btn--outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  box-shadow: none;
}

.catalog-bar .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.catalog-bar .btn--primary:disabled,
.catalog-bar .btn--primary[disabled] {
  opacity: 0.45;
}

body.catalog-drawer-open {
  overflow: hidden;
}

/* Drawer lista */
.catalog-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility var(--transition);
}

.catalog-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.catalog-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity var(--transition);
}

.catalog-drawer.is-open .catalog-drawer__backdrop {
  opacity: 1;
}

.catalog-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.catalog-drawer.is-open .catalog-drawer__panel {
  transform: translateX(0);
}

.catalog-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.catalog-drawer__head h2 {
  font-size: 1.15rem;
}

.catalog-drawer__close {
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
  color: var(--color-gray);
}

.catalog-drawer__list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.catalog-drawer__empty {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.55;
}

.catalog-drawer__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.catalog-drawer__item strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.35;
}

.catalog-drawer__item span {
  font-size: 12px;
  color: var(--color-gray);
}

.catalog-drawer__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  flex-shrink: 0;
}

.catalog-drawer__qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
}

.catalog-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
}

.catalog-drawer__foot .btn {
  width: 100%;
  justify-content: center;
}

.catalog-panel__note {
  font-size: 12px;
  color: var(--color-gray);
  text-align: center;
  margin-top: 12px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card__media {
    padding: 14px;
  }

  .product-card__body {
    padding: 12px 14px 14px;
  }

  .product-card__title {
    font-size: 0.85rem;
    min-height: auto;
  }

  .product-card__price {
    font-size: 1rem;
  }

  .product-card__add {
    padding: 10px 8px;
    font-size: 11px;
  }

  .catalog-bar__actions {
    width: 100%;
  }

  .catalog-bar__actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-item__label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* ========== PARTNERS GRID ========== */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.partners-grid--dense {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  justify-items: center;
  padding: 40px 0;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
}

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .split,
  .split--start {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-search-wrap {
    max-width: none;
  }

  .catalog-count {
    text-align: center;
  }

  .partners-grid,
  .partners-grid--dense {
    gap: 32px;
  }

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

  .partner-item img {
    max-width: 100px;
    max-height: 50px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  body.has-catalog-bar .whatsapp-float {
    bottom: 88px;
  }
}

@media (max-width: 480px) {
  .partners-grid--dense {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========== BLOG CARDS ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 24px;
}

.blog-card__date {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}

.blog-card__link:hover {
  color: var(--color-accent-dark);
}

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

/* ========== FOOTER ========== */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo img,
.footer__logo svg {
  height: 45px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
  line-height: 1.6;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  transition: background-color var(--transition);
}

.footer__social a:hover {
  background-color: var(--color-accent);
}

.footer__social a svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.footer__social a:hover svg {
  fill: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background-color: var(--color-primary);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid rgba(0, 34, 68, 0.12);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  background-color: rgba(245, 245, 245, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.08);
}

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

/* ========== FORM BENEFITS LIST ========== */
.form-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--color-gray-dark);
  border-bottom: 1px solid var(--color-border);
}

.form-benefits li:last-child {
  border-bottom: none;
}

.form-benefits .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

/* ========== FORM SUCCESS MESSAGE ========== */
.form-success {
  padding: 40px;
  text-align: center;
  background: var(--color-gray-light);
  border-radius: 8px;
  margin-top: 16px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== BACKGROUND DECORATIVE SHAPES ========== */
.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 60px;
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(0, 51, 102, 0.06);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 8s ease-in-out infinite;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(0, 51, 102, 0.04);
  pointer-events: none;
  animation: float-slow 10s ease-in-out infinite reverse;
}

.section--dark::before {
  border-color: rgba(255, 238, 88, 0.08);
}

.section--dark::after {
  border-bottom-color: rgba(255, 238, 88, 0.05);
}

.section--gray::before {
  top: auto;
  bottom: 30px;
  right: 80px;
  width: 60px;
  height: 60px;
}

.section--gray::after {
  bottom: auto;
  top: 50px;
  left: auto;
  right: 30%;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* Dotted pattern for hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(255,238,88,0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Cross shapes */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '+';
  position: absolute;
  top: 20%;
  left: 8%;
  font-size: 60px;
  font-weight: 100;
  color: rgba(255, 238, 88, 0.12);
  pointer-events: none;
  animation: float-slow 12s ease-in-out infinite;
}

.cta-section::after {
  content: '+';
  position: absolute;
  bottom: 15%;
  right: 10%;
  font-size: 80px;
  font-weight: 100;
  color: rgba(255, 238, 88, 0.08);
  pointer-events: none;
  animation: float-slow 9s ease-in-out infinite reverse;
}

/* ========== LOGO MARQUEE ========== */
.logo-marquee {
  overflow: hidden;
  position: relative;
  background-color: var(--color-gray-light);
  padding: 40px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-gray-light) 0%, rgba(245, 245, 245, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-gray-light) 0%, rgba(245, 245, 245, 0) 100%);
}

.logo-track {
  display: flex;
  animation: logo-scroll 60s linear infinite;
  gap: 60px;
}

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

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(64px, 12vw, 80px);
  width: clamp(140px, 28vw, 180px);
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 15px;
  transition: transform var(--transition);
}

.logo-item:hover {
  transform: scale(1.05);
}

.logo-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

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

@media (max-width: 768px) {
  .logo-marquee {
    padding: 28px 0;
  }

  .logo-track {
    gap: 32px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo-track {
    animation: none;
  }

  .section::before,
  .section::after,
  .cta-section::before,
  .cta-section::after {
    animation: none;
  }
}

/* =====================================================================
   AGENCY-LEVEL ADDITIONS (additive — never modify existing rules)
   All new classes below are prefixed with `ag-` to avoid collision
   with the legacy BEM. The legacy classes stay untouched for safety.
   ===================================================================== */

/* --- Hero gradient overlay (replaces flat 0.3 opacity) --- */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--hero-overlay-top) 0%,
    rgba(0, 34, 68, 0.55) 55%,
    var(--hero-overlay-bottom) 100%
  );
  pointer-events: none;
}

/* --- Section reveal (driven by IntersectionObserver in reveal.js) --- */
.ag-reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.ag-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header scroll shadow (toggled by nav.js at scrollY > 80) --- */
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.90);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.06);
  border-bottom-color: rgba(0, 51, 102, 0.08);
}

/* --- Nav link underline that grows from center --- */
.header__link {
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.header__link:hover::after,
.header__link.is-active::after {
  width: 28px;
}

/* --- Button hover: subtle scale(1.02) on top of translateY --- */
.btn:hover,
.header__cta:hover {
  transform: translateY(-2px) scale(1.02);
}

/* --- Product card arrow translation on hover --- */
.product-card .product-card__contact::after {
  content: '\2192';
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-card:hover .product-card__contact::after {
  transform: translateX(4px);
}
.product-card {
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 51, 102, 0.12);
}

/* --- Yellow accent line under section badge (40px) --- */
.section-header__badge {
  position: relative;
}
.section-header__badge::after {
  content: '';
  position: absolute;
  left: 16px;
  bottom: -8px;
  width: 40px;
  height: var(--yellow-line);
  background-color: var(--color-accent);
  border-radius: 1px;
}

/* --- Decorative footer texture (very subtle SVG grain) --- */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='80' height='80' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
}
.footer > * {
  position: relative;
  z-index: 1;
}

/* --- Diagonal yellow accent line at the top of section--dark --- */
.section--dark {
  position: relative;
  overflow: hidden;
}
.section--dark::before { content: none; } /* override legacy ring for dark sections */
.section--dark::after { content: none; }
.section--dark .stats-grid { position: relative; z-index: 1; }
.section--dark::after-top {
  /* CSS pseudo can't carry a name; using a child divider instead via ::before at the very top */
}
.section--dark > .container::before {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto 48px;
  border-radius: 2px;
  position: relative;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .section--dark > .container::before {
    margin-bottom: 32px;
  }
}

/* --- Curated partner grid (3×2 desktop, replaces both old grids) --- */
.ag-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.ag-partners__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 24px;
  background: var(--color-white);
  border: 1px solid rgba(0, 51, 102, 0.05);
  border-radius: 12px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.ag-partners__item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: var(--color-accent-dark);
  transform: translateX(-50%);
  transition: width var(--transition);
  border-radius: 0 0 12px 12px;
}
.ag-partners__item:hover {
  border-color: rgba(0, 51, 102, 0.12);
  box-shadow: 0 16px 36px rgba(0, 51, 102, 0.07);
  transform: translateY(-5px);
}
.ag-partners__item:hover::after {
  width: 60%;
}
.ag-partners__logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.ag-partners__item:hover .ag-partners__logo {
  filter: grayscale(0%);
  opacity: 1;
}
.ag-partners__logo--dark {
  background: #111;
  border-radius: 6px;
  padding: 8px 16px;
  filter: none;
  opacity: 1;
}

.ag-partners__item:hover .ag-partners__logo--dark {
  filter: none;
  opacity: 1;
}

.ag-partners__logo img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.ag-partners__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  margin: 0;
}
.ag-partners__cat {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray);
}

@media (max-width: 1024px) {
  .ag-partners { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ag-partners { grid-template-columns: 1fr; }
}

/* --- Stat item — breathe more between number and label --- */
.stat-item__label {
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-top: 14px;
}

/* --- Tighter, more curated partners row on home (legacy .partners-grid) --- */
.partners-grid {
  gap: 36px;
  padding: 24px 0;
}

/* --- Decorative "+" before/after CTA h2 --- */
.cta-section h2::before,
.cta-section h2::after {
  content: '·';
  display: inline-block;
  margin: 0 18px;
  color: var(--color-accent);
  font-weight: 400;
  font-size: 0.7em;
  vertical-align: middle;
  transform: translateY(-0.15em);
}

/* --- "06" / page-number decoration on section headers of inner pages --- */
.section-header--numbered {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  column-gap: 18px;
}
.section-header--numbered__num {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-primary);
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0;
  align-self: start;
  margin-top: 6px;
}

/* --- Yellow border bottom on catalog cards (3px accent) --- */
.product-card {
  border-bottom: 3px solid var(--color-accent);
}
.product-card.is-in-list {
  border-bottom-color: var(--color-accent);
}

/* --- Catalog page hero — slightly different rhythm than deep pages --- */
.hero--catalog {
  min-height: 320px;
}

/* --- Layout helper: tight stacked rows (eyebrow + headline + intro) --- */
.section-head-block {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head-block .kicker { display: block; }
.section-head-block h2 { margin-top: 0; }
.section-head-block p {
  color: var(--color-gray);
  margin-top: 16px;
  max-width: 56ch;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .section-head-block { margin-bottom: 36px; }
  .section-header--numbered { grid-template-columns: 1fr; column-gap: 0; row-gap: 8px; }
  .section-header--numbered__num { width: max-content; }
  .cta-section h2::before,
  .cta-section h2::after { margin: 0 10px; }
}

/* --- Small visual sweetener: list checks in form-benefits get a thin yellow line --- */
.form-benefits li {
  position: relative;
}
.form-benefits li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.form-benefits li:hover::before { width: 10px; }

/* --- Focus rings more visible (a11y) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Reduce vertical padding on stats dark band to balance against other sections --- */
.section--dark {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* --- "Play" overlay on the CD video placeholder --- */
.video-embed {
  position: relative;
  cursor: pointer;
}
.video-embed::after {
  content: '\25B6';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.video-embed:hover::after { transform: translate(-50%, -50%) scale(1.05); margin: 0; }
.video-embed { padding-left: 0; padding-right: 0; }

/* --- Subtle texture on dark stats section --- */
.section--dark::after-top { content: ''; }
.section--dark > .container {
  position: relative;
  z-index: 1;
}
.section--dark {
  background:
    linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* --- Brand monogram (replaces the Google thumbnail header logo) --- */
.header__logo svg,
.footer__logo svg {
  display: block;
  height: 44px;
  width: auto;
}
.footer__logo svg { height: 40px; }

/* --- Mobile nav: tighter spacing, full-bleed --- */
@media (max-width: 768px) {
  .header__nav { padding: 32px var(--container-padding); }
  .header__link, .header__cta { padding: 14px 0; }
}

/* --- Hide decorative floating shapes inside hero so they don't bleed --- */
.hero::before { display: none; }
.hero { background-color: var(--color-primary); }

/* =====================================================================
   HERO — split (additive). Replaces the legacy .hero block on index.html
   with a full-bleed editorial image, diagonal navy veil, eyebrow / h1 /
   lead / dual CTA / KPI meta strip. All selectors prefixed hero--split /
   hero__* to avoid collision with the legacy .hero rules.
   ===================================================================== */

.hero--split {
  position: relative;
  min-height: clamp(560px, 85vh, 760px);
  display: flex;
  align-items: stretch;
  margin-top: var(--header-height);
  background-color: var(--color-primary);
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.hero--split .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero--split .hero__media img,
.hero--split .hero__media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.hero__video-expand {
  position: absolute;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(24px, 4vw, 40px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 17, 51, 0.55);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero__video-expand:hover {
  background: rgba(0, 17, 51, 0.75);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.hero__video-expand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Diagonal navy veil */
.hero--split .hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 17, 51, 0.94) 0%,
    rgba(0, 34, 68, 0.82) 38%,
    rgba(0, 51, 102, 0.5) 68%,
    rgba(0, 51, 102, 0.25) 100%
  );
}

.hero--split .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px var(--container-padding);
  display: flex;
  align-items: center;
}

/* Eyebrow */
.hero--split .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 24px;
}
.hero--split .hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  flex-shrink: 0;
}
.hero--split:hover .hero__eyebrow::before,
.hero--split:focus-within .hero__eyebrow::before { width: 56px; }

/* h1 */
.hero--split .hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--color-white);
  text-wrap: balance;
  max-width: 640px;
  margin: 0 0 20px;
}
.hero--split .hero__title-accent {
  color: var(--color-accent);
  font-weight: 700;
}

/* Lead */
.hero--split .hero__lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 0 36px;
}

/* Actions row */
.hero--split .hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.hero--split .btn--primary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero--split .btn--primary:hover svg { transform: translateX(3px); }

/* Meta strip */
.hero--split .hero__meta {
  list-style: none;
  margin: 48px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 540px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 48px);
}
.hero--split .hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
}
.hero--split .hero__meta-num {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero--split .hero__meta-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

/* Entrance animations — visible by default; animate only when motion allowed */
.hero--split .hero__eyebrow,
.hero--split .hero__title,
.hero--split .hero__lead,
.hero--split .hero__actions,
.hero--split .hero__meta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--split:not(.is-loaded) .hero__eyebrow,
  .hero--split:not(.is-loaded) .hero__title,
  .hero--split:not(.is-loaded) .hero__lead,
  .hero--split:not(.is-loaded) .hero__actions,
  .hero--split:not(.is-loaded) .hero__meta {
    opacity: 0;
    transform: translateY(20px);
  }
}

.hero--split:not(.is-loaded) .hero__eyebrow     { transition-delay: 0s; }
.hero--split:not(.is-loaded) .hero__title       { transition-delay: 0.1s; }
.hero--split:not(.is-loaded) .hero__lead        { transition-delay: 0.25s; }
.hero--split:not(.is-loaded) .hero__actions     { transition-delay: 0.4s; }
.hero--split:not(.is-loaded) .hero__meta        { transition-delay: 0.55s; }

.hero--split.is-loaded .hero__eyebrow,
.hero--split.is-loaded .hero__title,
.hero--split.is-loaded .hero__lead,
.hero--split.is-loaded .hero__actions,
.hero--split.is-loaded .hero__meta {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero--split .hero__eyebrow,
  .hero--split .hero__title,
  .hero--split .hero__lead,
  .hero--split .hero__actions,
  .hero--split .hero__meta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero--split .hero__eyebrow::before { transition: none !important; }
  .hero--split .hero__media img { transform: scale(1.04); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero--split {
    min-height: auto;
  }
  .hero--split .hero__inner {
    padding: 56px var(--container-padding) 64px;
    align-items: flex-start;
  }
  .hero--split .hero__veil {
    background: linear-gradient(
      180deg,
      rgba(0, 17, 51, 0.92) 0%,
      rgba(0, 34, 68, 0.78) 45%,
      rgba(0, 51, 102, 0.55) 100%
    );
  }
  .hero--split .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero--split .hero__actions .btn--lg {
    width: 100%;
    justify-content: center;
  }
  .hero--split .hero__meta {
    margin-top: 36px;
    gap: 20px 28px;
  }
}

@media (max-width: 480px) {
  .hero--split .hero__meta { padding-top: 20px; }
}

/* ========== MISSION, VISION & VALUES PREMIUM ENHANCEMENTS ========== */
.feature-card--mvv {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 36px;
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(245, 245, 245, 0.4) 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 51, 102, 0.05);
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.02);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card--mvv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.015) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.feature-card--mvv:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 51, 102, 0.12);
  box-shadow: 0 24px 48px rgba(0, 51, 102, 0.07);
}

.feature-card--mvv:hover::before {
  opacity: 1;
}

/* Custom top borders to differentiate sections elegantly */
.feature-card--mvv:nth-child(1) {
  border-top-color: var(--color-primary);
}
.feature-card--mvv:nth-child(2) {
  border-top-color: var(--color-accent-dark);
}
.feature-card--mvv:nth-child(3) {
  border-top-color: #10b981; /* green emerald */
}

.mvv-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 28px;
  transition: transform var(--transition), background-color var(--transition);
}

.feature-card--mvv:nth-child(1) .mvv-icon-container {
  background-color: rgba(0, 51, 102, 0.05);
  color: var(--color-primary);
}
.feature-card--mvv:nth-child(2) .mvv-icon-container {
  background-color: rgba(255, 238, 88, 0.15);
  color: #d97706;
}
.feature-card--mvv:nth-child(3) .mvv-icon-container {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.feature-card--mvv:hover .mvv-icon-container {
  transform: scale(1.08) rotate(2deg);
}

.mvv-icon-container svg {
  width: 28px;
  height: 28px;
}

.feature-card--mvv h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.mvv-lead {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-gray-dark);
  margin-bottom: 12px;
}

.mvv-detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 0;
}

.mvv-values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mvv-value-item {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-gray);
}

.mvv-value-item strong {
  color: var(--color-gray-dark);
  font-weight: 600;
}
