/* ────────────────────────────────────────────────────────────────
   Aramis Axis — Design System
   Palette: cream/sand/bronze on earth/ink/midnight
   Typography: Polymath (Adobe Fonts)
──────────────────────────────────────────────────────────────── */

:root {
  --cream:        #F5EED5;
  --cream-soft:   #EFE6C6;
  --sand:         #D1BD82;
  --bronze:       #A8824D;
  --bronze-deep:  #8A6B3F;
  --bronze-glow:  rgba(168, 130, 77, 0.18);
  --earth:        #3D332F;
  --ink:          #1C1B21;
  --midnight:     #080E1A;
  --navy:         #142740;

  --bg:          var(--midnight);
  --bg-alt:      var(--ink);
  --fg:          var(--cream);
  --fg-mute:     rgba(245, 238, 213, 0.62);
  --fg-faint:    rgba(245, 238, 213, 0.38);
  --rule:        rgba(168, 130, 77, 0.28);
  --rule-strong: rgba(168, 130, 77, 0.55);

  --display: 'polymath', 'Cormorant Garamond', 'Times New Roman', serif;
  --body:    'polymath', 'Helvetica Neue', system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --max:    1320px;
  --header-h: 88px;

  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(15px, 1vw + 0.6rem, 17px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--bronze); color: var(--midnight); }

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* grain overlay */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  z-index: 0;
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
}
.eyebrow::before {
  content: "";
  width: 2.25rem; height: 1px;
  background: var(--cream);
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.018em;
}
.h-display {
  font-size: clamp(2.6rem, 6.4vw, 5.8rem);
  font-weight: 300;
}
.h-display em { font-style: italic; color: var(--sand); }

.h-section {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.h-section em { font-style: italic; color: var(--bronze); }

.lede {
  font-size: clamp(1.05rem, 1.1vw + 0.7rem, 1.22rem);
  color: var(--fg-mute);
  max-width: 56ch;
  line-height: 1.55;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--bronze);
  transition: all 220ms var(--ease);
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.btn .arrow { transition: transform 260ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--bronze); color: var(--midnight); }
.btn-primary:hover { background: var(--sand); border-color: var(--sand); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,238,213,0.3);
}
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze); }

.btn-light {
  background: var(--midnight);
  color: var(--cream);
  border-color: var(--midnight);
}
.btn-light:hover { background: var(--bronze); color: var(--midnight); border-color: var(--bronze); }

/* ───────── HEADER ───────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 1.2rem 0;
  background: rgba(8, 14, 26, 0.55);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  transition: background 260ms var(--ease), padding 260ms var(--ease), border-color 260ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 14, 26, 0.96);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: rgba(168,130,77,0.18);
  padding: 0.85rem 0;
}
.site-header .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

/* logo — no filter, no hover effect, no blending — original logo colors preserved */
.brand-mark {
  display: flex;
  align-items: center;
  height: 3.4rem;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal;
  isolation: isolate;
  text-decoration: none;
}
.brand-mark svg,
.brand-mark img,
.brand-mark .logo-img {
  height: 100%;
  width: auto;
  display: block;
  filter: none !important;
  mix-blend-mode: normal !important;
  object-fit: contain;
  -webkit-user-drag: none;
}
.brand-mark svg * { filter: none !important; mix-blend-mode: normal !important; }

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  flex-wrap: nowrap;
}
.nav a {
  position: relative;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  transition: color 200ms var(--ease);
  padding: 0.4rem 0;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: all 240ms var(--ease);
  transform: translateX(-50%);
}
.nav a:hover,
.nav a.active { color: var(--cream); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--bronze); }

.nav-cta { justify-self: end; }
.nav-cta .btn { padding: 0.65rem 1.1rem; font-size: 0.68rem; }

.hamburger { display: none; }

/* mobile nav — fixed off-screen by default on every viewport */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 90;
  padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%);
  transition: transform 480ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.8rem;
  text-decoration: none;
}
.mobile-nav a.active { color: var(--bronze); }
.mobile-nav .btn { margin-top: 1rem; align-self: flex-start; }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  font-size: 1.4rem;
  color: var(--cream);
}

@media (max-width: 1024px) {
  .nav, .nav-cta { display: none; }
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.55rem;
    justify-self: end;
    background: transparent;
    border: 0;
  }
  .hamburger span {
    width: 22px;
    height: 1px;
    background: var(--cream);
    transition: all 220ms var(--ease);
  }
}

/* ───────── HERO (home) ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,14,26,0.55) 0%, rgba(8,14,26,0.25) 28%, rgba(8,14,26,0.62) 65%, rgba(8,14,26,0.94) 100%),
    url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=2400&q=80') center / cover no-repeat;
  z-index: -2;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(8,14,26,0.5) 80%);
  z-index: -1;
  pointer-events: none;
}

.hero .wrap { width: 100%; }

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 920px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
}

.hero-eyebrow { margin-bottom: 1.6rem; }

.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--sand); font-weight: 300; }

.hero-sub {
  margin-top: 1.6rem;
  color: var(--fg-mute);
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.2rem);
  max-width: 48ch;
  line-height: 1.55;
}

.hero-ctas {
  display: flex; flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 920px) { .hero-meta { align-items: flex-start; text-align: left; } }
.hero-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hero-meta p {
  margin: 0;
  color: var(--fg-mute);
  font-size: 0.95rem;
  max-width: 28ch;
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--fg-faint);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--bronze), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ───────── PAGE HERO (sub-pages) ───────── */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--midnight);
}
.page-hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: saturate(0.85);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,14,26,0.65) 0%, rgba(8,14,26,0.92) 80%, rgba(8,14,26,1) 100%);
}
.page-hero .crumb {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.page-hero .crumb .crumb-nav {
  display: inline-flex;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.page-hero .crumb .crumb-nav a { color: var(--bronze); text-decoration: none; }
.page-hero .crumb .crumb-nav a:hover { color: var(--sand); }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  color: var(--cream);
  letter-spacing: -0.022em;
  max-width: 18ch;
}
.page-hero h1 em { color: var(--sand); font-style: italic; }
.page-hero p.lede { margin-top: 1.6rem; }

/* ───────── STATS BAR ───────── */
.stats-bar {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.stats-bar .row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: center;
  gap: 0;
}
.stats-bar .cell {
  padding: 2rem var(--gutter);
  border-right: 1px solid var(--rule);
}
.stats-bar .cell:last-child { border-right: 0; }
.stats-bar .lead {
  font-family: var(--display);
  font-size: clamp(1rem, 1vw + 0.6rem, 1.3rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}
.stats-bar .num {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw + 0.6rem, 3rem);
  color: var(--sand);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-bar .num em { font-style: normal; font-size: 0.55em; color: var(--bronze); margin-right: 0.1em; }
.stats-bar .lab {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
@media (max-width: 880px) {
  .stats-bar .row { grid-template-columns: 1fr 1fr; }
  .stats-bar .cell { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stats-bar .cell:nth-child(2n) { border-right: 0; }
  .stats-bar .cell:last-child { border-bottom: 0; }
}

/* ───────── SECTION SCAFFOLD ───────── */
section { position: relative; padding-block: clamp(4.5rem, 8vw, 8rem); }
.section-light { background: var(--cream); color: var(--earth); }
.section-light .lede { color: rgba(61,51,47,0.7); }
.section-light .eyebrow { color: var(--bronze); }
.section-light .eyebrow::before { background: var(--bronze); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.section-head .left { display: flex; flex-direction: column; gap: 1.4rem; }
.section-head .right { padding-bottom: 0.4rem; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ───────── TRUST ───────── */
.trust {
  background: var(--midnight);
  padding-block: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.trust .row {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .trust .row { grid-template-columns: 1fr; gap: 2rem; } }
.trust h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw + 0.6rem, 2.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.trust h3 em { color: var(--sand); font-style: italic; }
.trust p { color: var(--fg-mute); max-width: 60ch; margin: 0; }
.trust .ceraca-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 0.3rem;
}
.trust .ceraca-link:hover { color: var(--sand); border-color: var(--sand); }

/* ───────── TEASER CARDS (home) ───────── */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 880px) { .teaser { grid-template-columns: 1fr; } }

.teaser-card {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  border: 1px solid var(--rule);
  transition: transform 420ms var(--ease);
}
.teaser-card:hover { transform: translateY(-4px); }
.teaser-card .ph {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1);
  transition: transform 900ms var(--ease);
}
.teaser-card:hover .ph { transform: scale(1.06); }
.teaser-card::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,14,26,0.2) 0%, rgba(8,14,26,0.55) 50%, rgba(8,14,26,0.95) 100%);
}
.teaser-card .body {
  position: relative;
  z-index: 1;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 460px;
  gap: 0.8rem;
}
.teaser-card .kicker {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
}
.teaser-card h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 2.6vw + 0.6rem, 2.9rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.teaser-card h3 em { color: var(--sand); font-style: italic; }
.teaser-card p {
  color: var(--fg-mute);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}
.teaser-card .more {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--bronze);
  width: fit-content;
  transition: all 220ms var(--ease);
}
.teaser-card:hover .more { color: var(--sand); border-color: var(--sand); gap: 1rem; }

/* ───────── CARD GRID ───────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 880px) { .cards { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .cards { grid-template-columns: 1fr 1fr; } }

.card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2.4rem 2rem 2.6rem;
  position: relative;
  transition: background 320ms var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bronze-glow), transparent 60%);
  opacity: 0;
  transition: opacity 360ms var(--ease);
}
.card:hover::before { opacity: 1; }
.card .num-tag {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--bronze);
  font-weight: 500;
  position: relative;
}
.card .icon {
  margin-top: 1.2rem;
  width: 44px; height: 44px;
  color: var(--bronze);
  position: relative;
}
.card .icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card h3 {
  margin-top: 1.6rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: inherit;
  line-height: 1.1;
  position: relative;
}
.card p {
  margin-top: 0.9rem;
  color: var(--fg-mute);
  font-size: 0.96rem;
  line-height: 1.55;
  position: relative;
}
.section-light .card p { color: rgba(61,51,47,0.7); }
.section-light .card .icon { color: var(--bronze-deep); }

.section-foot {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.section-foot .closing {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw + 0.6rem, 1.5rem);
  color: var(--cream);
  max-width: 38ch;
  line-height: 1.25;
}
.section-light .section-foot .closing { color: var(--earth); }

/* ───────── CONSTR FEATURE ───────── */
.constr-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid rgba(168,130,77,0.35);
  background: rgba(245,238,213,0.5);
}
@media (max-width: 880px) { .constr-feature { grid-template-columns: 1fr; } }
.constr-feature .ph {
  background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1600&q=80') center/cover;
  min-height: 420px;
  position: relative;
}
.constr-feature .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,14,26,0.4));
}
.constr-feature .body {
  padding: 3rem 2.6rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.2rem;
}
.constr-feature .body .tag {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.constr-feature .body h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2vw + 0.7rem, 2.4rem);
  color: var(--earth);
  font-weight: 300;
  line-height: 1.05;
}
.constr-feature .body h3 em { color: var(--bronze-deep); font-style: italic; }
.constr-feature .body p {
  color: rgba(61,51,47,0.78);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}
.constr-feature ul {
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
  color: var(--earth);
  font-size: 0.92rem;
}
.constr-feature ul li {
  position: relative;
  padding-left: 1.1rem;
}
.constr-feature ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6rem;
  width: 0.55rem; height: 1px;
  background: var(--bronze-deep);
}

/* ───────── PILLARS ───────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 1000px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 2.6rem 1.8rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 280ms var(--ease);
}
.pillar:last-child { border-right: 0; }
@media (max-width: 1000px) { .pillar:nth-child(2n) { border-right: 0; } }
@media (max-width: 600px) { .pillar { border-right: 0; } }

.pillar .ix {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--bronze);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pillar h4 {
  margin-top: 1.4rem;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
}
.pillar p {
  margin-top: 0.8rem;
  color: var(--fg-mute);
  font-size: 0.96rem;
  line-height: 1.55;
}
.pillar:hover { background: rgba(168,130,77,0.06); }

/* ───────── METRICS ───────── */
.metrics-section {
  background: var(--midnight);
  background-image:
    linear-gradient(180deg, rgba(8,14,26,0.94), rgba(8,14,26,0.96)),
    url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 3rem;
}
@media (max-width: 880px) { .metrics { grid-template-columns: 1fr 1fr; } }
.metric {
  padding: 2.6rem 1.4rem;
  border-right: 1px solid var(--rule);
  text-align: left;
}
.metric:last-child { border-right: 0; }
@media (max-width: 880px) { .metric:nth-child(2n) { border-right: 0; } }
.metric .big {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(2.6rem, 4.6vw + 0.5rem, 5rem);
  color: var(--sand);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.metric .big sup { font-size: 0.4em; vertical-align: super; color: var(--bronze); }
.metric .lab {
  margin-top: 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
}
.metric .ctx { margin-top: 0.6rem; color: var(--fg-mute); font-size: 0.92rem; line-height: 1.5; }

.quote {
  margin-top: 4.5rem;
  border-left: 2px solid var(--bronze);
  padding: 0.4rem 0 0.4rem 2rem;
  max-width: 60ch;
}
.quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.5vw + 0.7rem, 1.7rem);
  color: var(--cream);
  line-height: 1.35;
  margin: 0;
}
.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ───────── SECTORS ───────── */
.sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0;
}
.sectors li {
  list-style: none;
  border: 1px solid var(--rule-strong);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--earth);
  transition: all 220ms var(--ease);
  background: rgba(245,238,213,0.3);
}
.sectors li:hover { background: var(--bronze); color: var(--cream); border-color: var(--bronze); }

/* ───────── PROCESSO ───────── */
.processo {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 2.2rem 1.6rem 2.2rem 0;
  position: relative;
  border-top: 1px solid var(--rule);
}
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 40%; height: 2px;
  background: var(--bronze);
  transition: width 380ms var(--ease);
}
.step:hover::before { width: 100%; }
.step .ix {
  font-family: var(--display);
  font-weight: 300;
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  color: var(--bronze);
}
.step h4 {
  margin-top: 1.6rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.8vw + 0.5rem, 1.95rem);
  font-weight: 400;
  color: var(--cream);
}
.step p {
  margin-top: 1rem;
  color: var(--fg-mute);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 32ch;
}

/* ───────── PARTNERS ───────── */
.partner {
  position: relative;
  overflow: hidden;
}
.partner.partner-dark {
  background: #36653c;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--cream);
}
.partner.partner-dark .service-cell { border-right-color: rgba(245,238,213,0.16); border-bottom-color: rgba(245,238,213,0.16); }
.partner.partner-dark .services-grid { border-top-color: rgba(245,238,213,0.16); border-left-color: rgba(245,238,213,0.16); }
.partner.partner-dark .service-cell:hover { background: rgba(245,238,213,0.06); }
.partner.partner-white {
  background: #FFFFFF;
  color: var(--earth);
  border-top: 1px solid rgba(168,130,77,0.2);
  border-bottom: 1px solid rgba(168,130,77,0.2);
}
.partner.partner-white .lede,
.partner.partner-white .partner-intro p { color: rgba(61,51,47,0.72); }
.partner.partner-white .eyebrow { color: var(--bronze-deep); }
.partner.partner-white .eyebrow::before { background: var(--bronze-deep); }

.partner-head {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
@media (max-width: 880px) { .partner-head { grid-template-columns: 1fr; gap: 1.6rem; } }

.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.4rem;
}
.partner-tag .num {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: -0.02em;
}
.partner.partner-white .partner-tag { color: var(--bronze-deep); }
.partner.partner-white .partner-tag .num { color: var(--bronze); }

.partner h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--cream);
}
.partner h2 em { font-style: italic; color: var(--sand); }
.partner.partner-white h2 { color: var(--earth); }
.partner.partner-white h2 em { color: var(--bronze-deep); }

.partner-intro {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.partner-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fg-mute);
  max-width: 60ch;
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 0.3rem;
  width: fit-content;
}
.partner-link:hover { color: var(--sand); border-color: var(--sand); }
.partner.partner-white .partner-link { color: var(--bronze-deep); border-color: var(--bronze-deep); }
.partner.partner-white .partner-link:hover { color: var(--bronze); border-color: var(--bronze); }

/* services grid (Ceraçá) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

.service-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.7rem 1.4rem 1.8rem;
  position: relative;
  transition: background 280ms var(--ease);
}
.service-cell:hover { background: rgba(168,130,77,0.06); }
.service-cell .ix {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--bronze);
  font-weight: 500;
}
.service-cell h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.15;
  margin-top: 0.7rem;
  color: var(--cream);
}
.service-cell p {
  margin-top: 0.6rem;
  color: var(--fg-mute);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* Klie product lines */
.klie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1rem;
}
@media (max-width: 880px) { .klie-grid { grid-template-columns: 1fr; } }
.klie-visual {
  position: relative;
  min-height: 480px;
  background:
    linear-gradient(180deg, rgba(245,238,213,0.15), rgba(168,130,77,0.18)),
    url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1600&q=80') center/cover;
  border: 1px solid rgba(168,130,77,0.3);
}
.klie-content {
  padding: 0 0 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: center;
}
@media (max-width: 880px) { .klie-content { padding: 2rem 0 0 0; } }
.klie-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
  margin-top: 0.8rem;
}
@media (max-width: 520px) { .klie-lines { grid-template-columns: 1fr; } }
.klie-lines .line-item {
  border-top: 1px solid rgba(168,130,77,0.4);
  padding-top: 1rem;
}
.klie-lines .line-item .name {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--earth);
  display: block;
}
.klie-lines .line-item .desc {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: rgba(61,51,47,0.72);
  line-height: 1.5;
  display: block;
}

/* ───────── VIDEO FRAME ───────── */
.video-wrap {
  position: relative;
  width: 100%;
  margin-top: 3rem;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  isolation: isolate;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrap .video-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(8,14,26,0.7);
  backdrop-filter: blur(6px);
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--rule);
  pointer-events: none;
}

/* ───────── CTA BAND ───────── */
.cta-band {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,14,26,0.78), rgba(8,14,26,0.88)),
    url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=2400&q=80') center/cover;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--cream);
  max-width: 16ch;
}
.cta-band h2 em { color: var(--sand); font-style: italic; }
.cta-band p {
  margin-top: 1.4rem;
  color: var(--fg-mute);
  font-size: 1.1rem;
  max-width: 50ch;
}
.cta-band .actions {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem;
}

/* ───────── CONTATO ───────── */
.contato { background: #ffffff; color: var(--earth); }
.contato .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 4.5rem;
  align-items: start;
}
@media (max-width: 880px) { .contato .grid { grid-template-columns: 1fr; gap: 2rem; } }
.contato h2 {
  color: var(--earth);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.contato h2 em { color: var(--bronze-deep); font-style: italic; }
.contato .sub { margin-top: 1.4rem; color: rgba(61,51,47,0.75); font-size: 1.05rem; max-width: 42ch; }

.contact-list {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-block: 1.1rem;
  border-top: 1px solid rgba(168,130,77,0.4);
}
.contact-item:last-child { border-bottom: 1px solid rgba(168,130,77,0.4); }
.contact-item .ic {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--bronze-deep);
  margin-top: 0.2rem;
}
.contact-item .lab {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  display: block;
}
.contact-item .val {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--earth);
  font-weight: 400;
}
.contact-item a.val:hover { color: var(--bronze-deep); }

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.4rem;
}
form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(61,51,47,0.3);
  padding: 0.85rem 0;
  color: var(--earth);
  font-family: var(--body);
  font-size: 1rem;
  border-radius: 0;
  transition: border-color 220ms var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bronze-deep) 50%),
    linear-gradient(135deg, var(--bronze-deep) 50%, transparent 50%);
  background-position: right 0.4rem center, right 0rem center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 1.4rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--bronze-deep);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(61,51,47,0.4); font-family: var(--body); }

.form-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.6rem;
}
.privacy { font-size: 0.8rem; color: rgba(61,51,47,0.55); max-width: 42ch; margin: 0; }

/* ───────── FOOTER ───────── */
footer {
  background: var(--midnight);
  color: var(--fg-mute);
  padding-block: 4.5rem 2rem;
  border-top: 1px solid var(--rule);
}
footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { footer .top { grid-template-columns: 1fr; gap: 2rem; } }
footer .brand-block .brand-mark { height: 3.2rem; margin-bottom: 1.4rem; }
footer .brand-block p {
  color: var(--fg-mute);
  max-width: 42ch;
  font-size: 0.96rem;
  line-height: 1.55;
}
footer .brand-block .ceraca {
  margin-top: 1.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
footer .col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 1.2rem;
  font-weight: 500;
  font-family: var(--body);
}
footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
footer .col a { color: var(--fg-mute); transition: color 200ms var(--ease); }
footer .col a:hover { color: var(--cream); }

footer .bot {
  border-top: 1px solid var(--rule);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--fg-faint);
}

/* ───────── FLOATING WHATSAPP ───────── */
.wa-float {
  position: fixed;
  right: 1.3rem; bottom: 1.3rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.3rem;
  background: var(--bronze);
  color: var(--midnight);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 16px 40px -12px rgba(168,130,77,0.6),
    0 6px 16px rgba(0,0,0,0.35);
  transition: all 280ms var(--ease);
}
.wa-float:hover {
  background: var(--sand);
  transform: translateY(-2px);
}
.wa-float svg { width: 22px; height: 22px; position: relative; z-index: 2; }
.wa-float .label { position: relative; z-index: 2; }
.wa-float .pulse {
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bronze);
  opacity: 0.5;
  animation: pulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: translateY(-50%) scale(1); opacity: 0.5; }
  80%,100% { transform: translateY(-50%) scale(2.4); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float .label { display: none; }
  .wa-float { padding: 0.95rem; border-radius: 50%; }
}

/* ───────── REVEAL ON SCROLL ───────── */
.reveal { opacity: 0; transform: translateY(28px); transition: all 900ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }
.reveal.delay-5 { transition-delay: 400ms; }
.reveal.delay-6 { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-bg { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════════════
   GRUPOS GERADORES — LINHAS / ACESSÓRIOS / MONITORAMENTO / CLIENTES
   ════════════════════════════════════════════════════════════════════ */

/* ── Linha cards (4 tiles na geradores.html) ── */
.linhas-section { background: var(--midnight); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.linha-cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1100px) { .linha-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .linha-cards { grid-template-columns: 1fr; } }

.linha-card {
  display: flex; flex-direction: column;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  transition: transform 380ms var(--ease), border-color 380ms var(--ease), background 380ms var(--ease);
  position: relative;
}
.linha-card:hover {
  transform: translateY(-6px);
  border-color: var(--bronze);
  background: #11192a;
}
.linha-card .img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #0c121f;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.linha-card .img-wrap img {
  width: 78%; height: 78%; object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.4));
  transition: transform 600ms var(--ease);
}
.linha-card:hover .img-wrap img { transform: scale(1.06); }
.linha-card .body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: 0.6rem; flex: 1;
}
.linha-card .ix {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.linha-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
}
.linha-card p {
  color: var(--fg-mute);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.linha-card .more {
  margin-top: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.84rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
.linha-card .more .arr { transition: transform 380ms var(--ease); }
.linha-card:hover .more .arr { transform: translateX(4px); }

/* ── Monitoramento online (split com imagem) ── */
.monitoramento {
  background:
    radial-gradient(1200px 500px at 80% 0%, rgba(168,130,77,0.07), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.monitoramento .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 980px) { .monitoramento .grid { grid-template-columns: 1fr; gap: 2.4rem; } }
.monitoramento h2 em { color: var(--bronze); }
.monitoramento p { color: var(--fg-mute); line-height: 1.65; margin: 1.2rem 0 0; max-width: 56ch; }
.monitoramento .feat {
  margin-top: 1.8rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 1.6rem;
}
.monitoramento .feat li {
  list-style: none; padding-left: 1.4rem; position: relative;
  font-size: 0.96rem; color: var(--cream);
}
.monitoramento .feat li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; background: var(--bronze); border-radius: 50%;
}
.monitoramento .visual {
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 2rem;
  background: linear-gradient(180deg, #0d1422, #0a101c);
  display: flex; align-items: center; justify-content: center;
}
.monitoramento .visual img { max-width: 100%; height: auto; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5)); }

/* ── Clientes strip (logos image) ── */
.clientes-strip {
  background: #FFFFFF;
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.clientes-strip header { text-align: center; max-width: 720px; margin: 0 auto 2.2rem; }
.clientes-strip .eyebrow { color: var(--bronze); }
.clientes-strip h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--earth);
  line-height: 1.1; letter-spacing: -0.01em;
  margin-top: 0.8rem;
}
.clientes-strip h2 em { color: var(--bronze-deep, #8a6537); font-style: italic; }
.clientes-strip .logos {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.4rem;
}
.clientes-strip .logos img { width: 100%; height: auto; display: block; }

/* ── Marcas parceiras strip (logos brancos sobre fundo escuro) ── */
.marcas-strip {
  padding: 4rem 0;
  background: var(--midnight);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.marcas-strip header { text-align: center; max-width: 720px; margin: 0 auto 2.4rem; }
.marcas-strip .eyebrow { color: var(--cream); }
.marcas-strip .eyebrow::before { background: var(--cream); }
.marcas-strip h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--cream); margin-top: 0.6rem;
  line-height: 1.2;
}
.marcas-strip h3 em { color: var(--bronze); font-style: italic; }
.marcas-strip .grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2.4rem 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.4rem;
}
@media (max-width: 980px) { .marcas-strip .grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px) { .marcas-strip .grid { grid-template-columns: repeat(2, 1fr); } }
.marcas-strip .grid img {
  max-width: 100%; height: 44px; width: auto; object-fit: contain;
  opacity: 0.78;
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}
.marcas-strip .grid img:hover { opacity: 1; transform: scale(1.08); }

/* ── Tipo cards (Carenagem/Aberto, Inverter/Comercial, Biogás) ── */
.tipos-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) { .tipos-grid { grid-template-columns: 1fr; } }
.tipo-card {
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.tipo-card .img {
  aspect-ratio: 16/10;
  background: #0c121f;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tipo-card .img img {
  max-width: 90%; max-height: 90%; object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.5));
}
.tipo-card h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.55rem; margin: 0; color: var(--cream);
  letter-spacing: -0.01em;
}
.tipo-card .sub {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze); margin: 0;
}
.tipo-card p { color: var(--fg-mute); line-height: 1.6; margin: 0; }

/* ── Especificações grid (ícones + texto) ── */
.especs {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 980px) { .especs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .especs { grid-template-columns: 1fr; } }
.espec {
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 1.6rem;
  background: rgba(168,130,77,0.04);
}
.espec .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(168,130,77,0.14);
  color: var(--bronze);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.espec h4 {
  font-family: var(--display); font-size: 1.1rem; font-weight: 600;
  color: var(--cream); margin: 0 0 0.5rem;
}
.espec p { color: var(--fg-mute); font-size: 0.95rem; line-height: 1.55; margin: 0; }

/* ── Acessórios grid (3 cols) ── */
.acessorios-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 980px) { .acessorios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .acessorios-grid { grid-template-columns: 1fr; } }
.acessorio {
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 380ms var(--ease), border-color 380ms var(--ease);
}
.acessorio:hover { transform: translateY(-4px); border-color: var(--bronze); }
.acessorio .img {
  aspect-ratio: 4/3;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
}
.acessorio .img img { max-width: 88%; max-height: 88%; object-fit: contain; }
.acessorio .body {
  padding: 1.2rem 1.4rem 1.6rem;
  border-top: 1px solid var(--rule);
}
.acessorio .ix {
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze);
}
.acessorio h4 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.08rem; color: var(--cream);
  margin: 0.5rem 0 0;
  letter-spacing: -0.005em;
}

/* ── Aplicações setores (biogás) ── */
.aplicacoes-setores {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 880px) { .aplicacoes-setores { grid-template-columns: repeat(2, 1fr); } }
.aplic-card {
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: border-color 380ms var(--ease), transform 380ms var(--ease);
}
.aplic-card:hover { border-color: var(--bronze); transform: translateY(-3px); }
.aplic-card .ic-big {
  font-size: 2rem; line-height: 1;
  margin-bottom: 0.8rem;
}
.aplic-card h4 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.05rem; color: var(--cream);
  margin: 0 0 0.4rem;
}
.aplic-card p {
  color: var(--fg-mute); font-size: 0.86rem; line-height: 1.5; margin: 0;
}

/* ── Linha intro split (texto + download) ── */
.linha-intro {
  background: var(--midnight);
}
.linha-intro .grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem;
  align-items: start;
}
@media (max-width: 980px) { .linha-intro .grid { grid-template-columns: 1fr; gap: 2rem; } }
.linha-intro p { color: var(--fg-mute); line-height: 1.7; font-size: 1.04rem; }
.linha-intro p + p { margin-top: 1rem; }
.linha-intro .download-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  border-radius: 999px;
  font-size: 0.84rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 380ms var(--ease), color 380ms var(--ease);
}
.linha-intro .download-btn:hover { background: var(--bronze); color: var(--midnight); }

/* ── Form: honeypot anti-bot (escondido fora da viewport) ── */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

/* ── Form alert (erro/sucesso) ── */
.form-alert {
  grid-column: 1 / -1;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-size: 0.94rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.form-alert strong { display: block; margin-bottom: 0.4rem; font-weight: 600; }
.form-alert ul { margin: 0.2rem 0 0; padding-left: 1.2rem; }
.form-alert li { margin: 0.15rem 0; }
.form-alert.is-error {
  background: rgba(176, 50, 40, 0.08);
  border: 1px solid rgba(176, 50, 40, 0.32);
  color: #8a2a22;
}
.form-alert.is-success {
  background: rgba(50, 130, 70, 0.08);
  border: 1px solid rgba(50, 130, 70, 0.32);
  color: #266a3a;
}
