/* =========================================================
   EBM SERVICOS E COMERCIOS — style.css
   Conceito: "Equipado para o real."
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Barlow:wght@400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:       #111118;
  --surface:     #1C1C26;
  --surface-2:   #24242F;
  --orange:      #FF5A1F;
  --orange-dim:  #CC4010;
  --orange-pale: rgba(255, 90, 31, 0.08);
  --steel:       #8FA3B8;
  --light:       #F0EDE8;
  --light-dim:   #B8B4AF;
  --line:        #2E2E3A;
  --white:       #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:   4px;
  --radius-lg: 8px;
  --transition: 0.22s ease;
  --max-width: 1160px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--light);
}

.section-title span { color: var(--orange); }

.section-subtitle {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 52ch;
}

/* Diagonal clip separators */
.clip-top {
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -4vw;
  padding-top: calc(4vw + 4rem);
}
.clip-both {
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin-top: -4vw;
  padding-top: calc(4vw + 4rem);
  padding-bottom: calc(4vw + 4rem);
  margin-bottom: -4vw;
}

/* Orange stripe accent */
.stripe {
  display: block;
  width: 3rem;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17, 17, 24, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
}
.nav__logo-main span { color: var(--orange); }
.nav__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--light); }
.nav__links a.active { color: var(--orange); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover {
  background: var(--orange-dim) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  gap: 1rem;
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--transition);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover,
.nav__mobile a.active { color: var(--orange); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--light); }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  background: var(--black);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}
.hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 60% 50%, transparent 30%, var(--black) 100%);
}

.hero__accent {
  position: absolute;
  right: -6rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(10rem, 22vw, 22rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 90, 31, 0.07);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-pale);
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.75rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--light);
  margin-bottom: 1.5rem;
}
.hero__title .highlight {
  color: var(--orange);
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--steel);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stat-value span { color: var(--orange); }
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--steel);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--surface);
  padding: 7rem 0 6rem;
}

.services__header {
  margin-bottom: 3.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--surface-2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: #27272F; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border: 1px solid rgba(255, 90, 31, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card__num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255, 90, 31, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--light);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.65;
}

/* ── ABOUT STRIP ────────────────────────────────────────── */
.about-strip {
  background: var(--black);
  padding: 7rem 0;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-strip__visual {
  position: relative;
}

.about-strip__box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.about-strip__box::after {
  content: '';
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 8rem; height: 8rem;
  background: var(--orange-pale);
  border-radius: 50%;
  pointer-events: none;
}

.about-strip__big-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--light);
  letter-spacing: -0.04em;
}
.about-strip__big-num span { color: var(--orange); }

.about-strip__num-label {
  font-size: 0.8rem;
  color: var(--steel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.about-strip__floating {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  min-width: 160px;
  box-shadow: 0 12px 32px rgba(255, 90, 31, 0.3);
}
.about-strip__floating-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.about-strip__floating-lab {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.about-strip__content { }

.about-strip__text {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-strip__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.about-strip__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--light-dim);
}
.about-strip__list li::before {
  content: '//';
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── STATS BAND ─────────────────────────────────────────── */
.stats-band {
  background: var(--orange);
  padding: 4.5rem 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--orange);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  background: var(--surface);
  padding: 7rem 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(255, 90, 31, 0.3);
  transform: translateY(-3px);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 0.8;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--light-dim);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--light);
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--steel);
  margin-top: 1px;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  background: var(--black);
  padding: 7rem 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq__sticky {
  position: sticky;
  top: 5rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--light);
  text-align: left;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-item__btn:hover { color: var(--orange); }
.faq-item__btn.open { color: var(--orange); }

.faq-item__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--steel);
  transition: transform var(--transition), background var(--transition);
}
.faq-item__btn.open .faq-item__icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-item__body.open {
  max-height: 400px;
}

.faq-item__text {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.75;
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'EBM';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 18rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 90, 31, 0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.cta-band__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--light);
  line-height: 1.05;
}
.cta-band__title span { color: var(--orange); }

.cta-band__sub {
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 46ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #0D0D13;
  border-top: 1px solid var(--line);
}

.footer__main {
  padding: 4.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand {}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1;
}
.footer__logo span { color: var(--orange); }

.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.3rem;
  display: block;
}

.footer__about {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 30ch;
}

.footer__cnpj {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(143, 163, 184, 0.5);
  font-family: monospace;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--steel);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.4;
}
.footer__contact-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.9rem;
}

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

.footer__copy {
  font-size: 0.78rem;
  color: rgba(143, 163, 184, 0.5);
}

.footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal-links a {
  font-size: 0.78rem;
  color: rgba(143, 163, 184, 0.5);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--steel); }

/* ── INTERNAL PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: var(--surface);
  padding: 7rem 0 4rem;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}
.page-hero__content { position: relative; z-index: 2; }

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--light);
}
.page-hero__title span { color: var(--orange); }

.page-hero__sub {
  font-size: 1.05rem;
  color: var(--steel);
  margin-top: 0.75rem;
  max-width: 52ch;
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-section {
  background: var(--black);
  padding: 5rem 0;
}

.about-section + .about-section {
  border-top: 1px solid var(--line);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mvv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.mvv-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.mvv-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.75rem;
}
.mvv-card__text {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.valor-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.valor-item__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--light);
  margin-bottom: 0.35rem;
}
.valor-item__text {
  font-size: 0.83rem;
  color: var(--steel);
  line-height: 1.5;
}

.company-data {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.company-data__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.company-data__item-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.company-data__item-value {
  font-size: 0.9rem;
  color: var(--light-dim);
}

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-section {
  background: var(--black);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}
.contact-info__item:hover { border-color: rgba(255,90,31,0.25); }

.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border: 1px solid rgba(255,90,31,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--light);
  font-weight: 500;
}
.contact-info__value a:hover { color: var(--orange); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--black);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--light);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); }
.form-control::placeholder { color: rgba(143, 163, 184, 0.4); }

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

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-section {
  background: var(--black);
  padding: 4.5rem 0 6rem;
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--light);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-content h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--orange);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  list-style: none;
  margin-bottom: 1rem;
}
.legal-content ul li, .legal-content ol li {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}
.legal-content ol {
  counter-reset: legal-counter;
}
.legal-content ol li {
  counter-increment: legal-counter;
}
.legal-content ol li::before {
  content: counter(legal-counter) '.';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
}

.legal-content .highlight-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.legal-content .highlight-box p {
  margin-bottom: 0;
  color: var(--light-dim);
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  color: var(--steel);
  margin-bottom: 2.5rem;
}
.legal-meta span { color: var(--orange); font-weight: 600; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
  .about-strip__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-strip__visual {
    max-width: 400px;
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq__sticky { position: static; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .hero__accent { display: none; }

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

  .about-strip__floating {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

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

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}
