/* ================================================================
   HydON — Comércio e Serviços Técnicos
   Stylesheet compartilhado — 6 páginas
================================================================ */

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1A2035; background: #fff; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --blue:       #0056A3;
  --blue-dark:  #003D7A;
  --blue-light: #00A3DF;
  --orange:     #FF6400;
  --orange-dk:  #E05800;
  --navy:       #0F1628;
  --navy-mid:   #1A2035;
  --gray-50:    #F7F9FB;
  --gray-100:   #EEF1F5;
  --gray-300:   #CBD5E1;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --white:      #FFFFFF;
  --header-h:   90px;
  --radius:     4px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy-mid);
}
h1 { font-size: clamp(3rem, 6vw, 5.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
p  { font-size: 1.0rem; line-height: 1.8; color: var(--gray-700); }

.eyebrow {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.eyebrow-blue { color: var(--blue); }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-w { max-width: 1380px; margin: 0 auto; padding: 0 3rem; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(255,100,0,0.28);
}
.btn-orange:hover { background: var(--orange-dk); border-color: var(--orange-dk); box-shadow: 0 6px 18px rgba(255,100,0,0.35); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* ── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
/* Institutional top stripe */
.site-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange) 0%, var(--blue) 100%);
  transition: opacity 0.3s;
}
.site-header.transparent::before { opacity: 0; }
.site-header.elevated {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.09);
}
/* Transparent mode — home hero only */
.site-header.transparent {
  background: transparent;
  border-color: transparent;
}

.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo-color {
  display: block; height: 48px; width: auto; object-fit: contain;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 0.3rem; }
.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(0,86,163,0.07); }
.site-header.transparent .nav-link { color: rgba(255,255,255,0.88); }
.site-header.transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  margin-left: 0.75rem;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-dk) !important; transform: translateY(-1px); }
.site-header.transparent .nav-cta { background: var(--orange) !important; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-mid); transition: all 0.3s; }
.site-header.transparent .nav-toggle span { background: var(--white); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: var(--header-h);
  min-height: 42vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,22,40,0.88) 0%, rgba(15,22,40,0.6) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 3rem 0 3.5rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.breadcrumb a, .breadcrumb span {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--orange); }
.page-hero h1 {
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero .lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  line-height: 1.7;
}
.page-hero .lead strong { color: var(--white); font-weight: 600; }
.orange-rule {
  display: block;
  width: 40px; height: 3px;
  background: var(--orange);
  margin-bottom: 1.25rem;
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }

.bg-white  { background: var(--white); }
.bg-light  { background: var(--gray-50); }
.bg-navy   { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }

/* Section header */
.section-hd { margin-bottom: 3.5rem; }
.section-hd h2 { margin-top: 0.5rem; }
.section-hd h2 em { font-style: normal; color: var(--orange); }
.section-hd p { margin-top: 1rem; max-width: 58ch; font-size: 0.95rem; }

/* Dark section text */
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.bg-navy-mid h1, .bg-navy-mid h2, .bg-navy-mid h3 { color: var(--white); }
.bg-navy p, .bg-navy-mid p { color: rgba(255,255,255,0.68); }
.bg-navy p strong, .bg-navy-mid p strong { color: var(--white); font-weight: 600; }
.bg-navy .eyebrow, .bg-navy-mid .eyebrow { color: var(--orange); }
.bg-navy h2 em, .bg-navy-mid h2 em { color: var(--orange); }

/* ── GRID UTILITIES ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.grid-2-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.align-center { align-items: center; }
.align-start   { align-items: start; }

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--gray-100);
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 3.5rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  display: block;
}
.stat-suffix { font-size: 1.8rem; }
.stat-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.4rem;
}

/* ── CARD BASE ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.75rem; }
.card-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,100,0,0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card p  { font-size: 0.87rem; line-height: 1.65; }

/* Service card (dark) */
.svc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.svc-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,100,0,0.35); }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue-light));
  opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(255,100,0,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.svc-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.75rem; }
.svc-card p  { color: rgba(255,255,255,0.62); font-size: 0.88rem; line-height: 1.7; }
.svc-card .card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600;
  color: var(--orange);
  margin-top: 1.25rem;
  transition: gap 0.2s;
}
.svc-card .card-link:hover { gap: 0.75rem; }

/* Segment card */
.seg-card {
  padding: 2rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.seg-card::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--orange);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(.16,1,.3,1);
}
.seg-card:hover { border-color: var(--gray-300); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.seg-card:hover::after { transform: scaleY(1); }
.seg-icon { color: var(--blue); margin-bottom: 1rem; }
.seg-card h3 { font-size: 1.1rem; color: var(--navy-mid); margin-bottom: 0.5rem; }
.seg-card p  { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* Product card — dark header, no fake image */
.prod-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.prod-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}
.prod-card-hd {
  background: var(--navy);
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--orange);
}
.prod-card-hd::before {
  content: attr(data-num);
  position: absolute; right: -0.5rem; top: -0.75rem;
  font-family: 'Barlow', sans-serif;
  font-size: 6.5rem; font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
}
.prod-card-hd::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--orange), transparent 60%);
}
.prod-icon {
  width: 44px; height: 44px;
  background: rgba(255,100,0,0.12);
  border: 1px solid rgba(255,100,0,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.prod-icon svg { width: 22px; height: 22px; }
.prod-card-hd h3 {
  font-size: 1.05rem; color: var(--white);
  margin-bottom: 0;
}
.prod-num-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.prod-body { padding: 1.5rem; flex: 1; }
.prod-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.prod-body p  { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }
.prod-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--blue);
  margin-top: 1rem; letter-spacing: 0.02em;
  transition: gap 0.2s;
}
.prod-link:hover { gap: 0.7rem; }
.prod-link svg { transition: transform 0.2s; }
.prod-link:hover svg { transform: translateX(3px); }

/* Training card */
.trein-card {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  overflow: hidden;
}
.trein-header {
  background: var(--blue-dark);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.trein-header::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,100,0,0.15), transparent);
  z-index: 1;
}
.trein-header-photo { background-size: cover; background-position: center; }
.trein-header-photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.72) 100%);
}
.trein-header-photo .trein-type,
.trein-header-photo h3,
.trein-header-photo .trein-hours { position: relative; z-index: 2; }
.trein-type {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}
.trein-header h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 0.25rem; }
.trein-hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-family: 'DM Mono', monospace;
}
.trein-body { background: rgba(255,255,255,0.03); padding: 2.5rem; }
.trein-desc { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.75rem; }
.trein-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.6rem;
}
.level-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.75rem; }
.level-tag {
  font-size: 0.8rem; font-weight: 500;
  color: var(--blue-light);
  background: rgba(0,163,223,0.12);
  border: 1px solid rgba(0,163,223,0.2);
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
}
.modulos-list { }
.modulos-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modulos-list li:last-child { border-bottom: none; }
.modulos-list li::before {
  content: '↳';
  color: var(--orange);
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── FEATURE LIST ────────────────────────────────────────────── */
.feat-list { list-style: none; margin-top: 1.25rem; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 0.4rem;
}
.feat-list.dark li { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.08); }
.feat-list.dark li::before { background: var(--orange); }

/* ── ALERT BOX ───────────────────────────────────────────────── */
.alert-info {
  background: rgba(0,86,163,0.06);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.alert-info svg { flex-shrink: 0; color: var(--blue); margin-top: 0.1rem; }
.alert-info p { font-size: 0.9rem; color: var(--gray-700); margin: 0; }
.alert-info p strong { color: var(--navy-mid); }

/* ── CHECKLIST ───────────────────────────────────────────────── */
.checklist { list-style: none; }
.checklist li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 2px solid var(--orange);
  border-radius: 3px;
  background: rgba(255,100,0,0.06);
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--navy);
  padding: 5rem 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,86,163,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.cta-banner h2 em { font-style: normal; color: var(--orange); }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TWO-COL CONTENT ─────────────────────────────────────────── */
.split-left  { padding-right: 3rem; }
.split-right { padding-left: 3rem; }

/* ── FULL-BLEED HALF SPLIT ───────────────────────────────────── */
.split-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}
.split-bleed-txt {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem clamp(2rem, 5vw, 5rem);
  background: var(--sbl-bg, #fff);
}
.split-bleed-txt-inner { max-width: 520px; margin-left: auto; }
.split-bleed-img {
  position: relative; overflow: hidden;
}
.split-bleed-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.split-bleed:hover .split-bleed-img img { transform: scale(1.03); }
.split-bleed-img::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* Desktop: lateral — blenda imagem c/ coluna de texto */
  background: linear-gradient(to right, var(--sbl-bg, #fff) 0%, transparent 38%);
}
/* Flip: image left, text right */
.split-bleed.flip .split-bleed-txt { order: 2; }
.split-bleed.flip .split-bleed-img { order: 1; }
.split-bleed.flip .split-bleed-txt-inner { margin-left: 0; margin-right: auto; }
.split-bleed.flip .split-bleed-img::before {
  background: linear-gradient(to left, var(--sbl-bg, #fff) 0%, transparent 38%);
}
/* Mobile: gradiente em baixo (override no @media 1024px) */

/* ── PHOTO WITH OVERLAY ──────────────────────────────────────── */
.photo-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; height: 100%; min-height: 380px;
}
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.photo-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

/* ── VALUES GRID ─────────────────────────────────────────────── */
.value-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
}
.value-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 0.45rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  color: var(--navy-mid);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  cursor: pointer; padding-right: 2.5rem;
}
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

/* Contact info */
.contact-info { padding-right: 3rem; }
.contact-block { margin-bottom: 2rem; }
.contact-block h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.contact-block p  { font-size: 0.9rem; }
.dado-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.dado-row:last-child { border-bottom: none; }
.dado-icon-wrap {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,100,0,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.dado-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 0.15rem;
}
.dado-val { font-size: 0.9rem; font-weight: 500; color: var(--navy-mid); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.16,1,.3,1), transform 0.65s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gray-100);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-100);
}
.footer-brand-logo { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 0.87rem; color: var(--gray-500); line-height: 1.7; max-width: 30ch; }
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--navy-mid); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--navy-mid); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .split-left  { padding-right: 0; }
  .split-right { padding-left: 0; }
}
/* Product card photo background */
.prod-card-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--navy);
}
.prod-card-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,22,40,0.55) 0%, rgba(15,22,40,0.88) 65%, rgba(15,22,40,0.96) 100%);
}
/* Ensure prod-card-hd content sits above photo */
.prod-card-hd .prod-icon,
.prod-card-hd .prod-num-tag,
.prod-card-hd h3 { position: relative; z-index: 1; }
.prod-card-hd .prod-num-bg { position: relative; z-index: 1; }

/* Product detail photo same treatment */
.prod-detail-hd .prod-detail-icon,
.prod-detail-hd .prod-detail-num,
.prod-detail-hd h3 { position: relative; z-index: 1; }

@media (max-width: 1024px) {
  .split-bleed { grid-template-columns: 1fr; min-height: auto; }
  .split-bleed-img { height: 300px; order: -1; }
  .split-bleed-img img { position: relative; inset: auto; width: 100%; height: 100%; }
  .split-bleed-txt { order: 1; padding: 2.5rem 1.5rem; }
  .split-bleed-txt-inner { max-width: 100%; margin: 0; overflow-wrap: break-word; }
  .split-bleed.flip .split-bleed-txt { order: 1; }
  .split-bleed.flip .split-bleed-img { order: -1; }
  .split-bleed-img::before {
    display: block;
    background: linear-gradient(to top, var(--sbl-bg, #fff) 0%, transparent 50%);
    z-index: 1;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .container   { padding: 0 1.25rem; }
  .container-w { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .grid-2, .grid-3, .grid-4, .grid-2-tight { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
  .site-nav.open { display: flex; }
  .nav-link { padding: 0.75rem 1rem; color: var(--navy-mid) !important; background: transparent !important; }
  .nav-cta { margin: 0.5rem 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .contact-info { padding-right: 0; }

  /* Page hero mobile */
  .page-hero h1 { font-size: clamp(1.55rem, 7vw, 2.1rem); line-height: 1.2; }
  .page-hero .lead { font-size: 0.875rem; line-height: 1.65; }
  .page-hero { min-height: 34vh; }
  .page-hero-content { padding: 1.75rem 0 2.5rem; }
  /* Inner page hero: softer bottom fade to blend with next section */
  .page-hero-bg::after {
    background:
      linear-gradient(to right, rgba(15,22,40,0.88) 0%, rgba(15,22,40,0.70) 100%),
      linear-gradient(to bottom, transparent 40%, rgba(15,22,40,0.88) 100%);
  }

  /* Logo on mobile header */
  .logo-color { height: 40px; }
}
