/* ═══════════════════════════════════════════════════════════
   AUXEN CONSULTING — Design System v2
   Editorial Premium · Organic Soft · Neo-Brutalist Refined
   ═══════════════════════════════════════════════════════════ */

/* Fuentes cargadas via <link> en el <head> de cada HTML para mejor rendimiento */

/* ── TOKENS ── */
:root {
  /* Brand palette */
  --crema:        #FAF7F2;
  --crema-warm:   #F7F3EC;
  --arena:        #EDE8DF;
  --arena-dark:   #D9D3C8;
  --cobre:        #C4500A;
  --cobre-claro:  #E06820;
  --cobre-glow:   rgba(196, 80, 10, 0.12);
  --cobre-glow-sm:rgba(196, 80, 10, 0.07);
  --carbon:       #141210;
  --carbon-soft:  #1C1A17;
  --carbon-mid:   #252220;
  --topo:         #908880;
  --topo-light:   #B0A89E;
  --white-warm:   #FEFCF9;

  /* UI */
  --nav-h: 60px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Easing */
  --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography scale */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', Arial, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ui);
  background: var(--crema);
  color: var(--carbon);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── VIEW TRANSITIONS ── */
@keyframes vt-fade-in  { from { opacity: 0; transform: translateY(6px); } }
@keyframes vt-fade-out { to   { opacity: 0; transform: translateY(-6px); } }
::view-transition-old(root) { animation: 0.28s var(--ease-smooth) vt-fade-out; }
::view-transition-new(root) { animation: 0.28s var(--ease-smooth) vt-fade-in; }

/* ── GRAIN TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23g)'/></svg>");
  background-repeat: repeat;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 1.1rem;
  left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(800px, calc(100% - 2rem));
  height: 52px;
  padding: 0 0.75rem 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 0.5px solid rgba(144,136,128,0.18);
  border-radius: 40px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: rgba(20, 18, 16, 0.95);
  border-color: rgba(196,80,10,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 0.5px rgba(196,80,10,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--crema);
  letter-spacing: -0.3px;
  line-height: 1;
}
.nav-logo-dash {
  width: 18px; height: 1.5px;
  background: var(--cobre);
  border-radius: 1px; flex-shrink: 0;
  transition: width 0.3s var(--ease-out);
}
.nav-logo:hover .nav-logo-dash { width: 24px; }
.nav-logo-sub {
  font-size: 8.5px; letter-spacing: 5px;
  color: var(--topo); font-weight: 400;
  text-transform: uppercase;
}
.nav-center { display: flex; }
.nav-center a {
  font-size: 12px; font-weight: 400;
  color: var(--topo);
  padding: 0 1rem;
  line-height: 52px;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
  position: relative;
}
.nav-center a::after {
  content: '';
  position: absolute; bottom: 9px; left: 1rem; right: 1rem;
  height: 1px; background: var(--cobre);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-center a:hover,
.nav-center a.active { color: var(--crema); }
.nav-center a:hover::after,
.nav-center a.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500;
  color: var(--crema);
  background: var(--cobre);
  padding: 8px 16px; border-radius: 20px;
  letter-spacing: 0.2px;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s ease, transform 0.16s var(--ease-out), gap 0.2s var(--ease-out);
}
.nav-cta:hover  { background: var(--cobre-claro); gap: 9px; }
.nav-cta:active { transform: scale(0.97); }

/* ── PAGE WRAPPER ── */
.page { padding-top: 0; }

/* ── STAR BUTTON ANIMATION ── */
@property --star-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes starBorderLight {
  to { --star-angle: 360deg; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  border-radius: 40px;
  padding: 13px 22px;
  letter-spacing: 0.15px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color        0.2s ease,
    transform    0.16s var(--ease-out),
    gap          0.22s var(--ease-out),
    box-shadow   0.2s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  color: var(--crema);
  background:
    linear-gradient(var(--cobre), var(--cobre)) padding-box,
    conic-gradient(from var(--star-angle),
      rgba(255,220,180,0)    0%,
      rgba(255,220,180,0)    68%,
      rgba(255,235,210,0.95) 82%,
      rgba(255,220,180,0)    96%
    ) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 1px 3px rgba(196,80,10,0.25), 0 4px 12px rgba(196,80,10,0.12);
  animation: starBorderLight 3s linear infinite;
}
.btn-primary:hover {
  background:
    linear-gradient(var(--cobre-claro), var(--cobre-claro)) padding-box,
    conic-gradient(from var(--star-angle),
      rgba(255,220,180,0)    0%,
      rgba(255,220,180,0)    68%,
      rgba(255,235,210,0.95) 82%,
      rgba(255,220,180,0)    96%
    ) border-box;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(196,80,10,0.35), 0 6px 20px rgba(196,80,10,0.18);
}

.btn-ghost {
  color: var(--topo);
  background:
    transparent padding-box,
    conic-gradient(from var(--star-angle),
      rgba(144,136,128,0.30) 0%,
      rgba(144,136,128,0.30) 68%,
      rgba(196,80,10,0.75)   82%,
      rgba(144,136,128,0.30) 96%
    ) border-box;
  border: 1px solid transparent;
  animation: starBorderLight 3.5s linear infinite;
}
.btn-ghost:hover { color: var(--crema); }

.btn-ghost-dark {
  color: rgba(144,136,128,0.8);
  background:
    transparent padding-box,
    conic-gradient(from var(--star-angle),
      rgba(144,136,128,0.15) 0%,
      rgba(144,136,128,0.15) 68%,
      rgba(196,80,10,0.65)   82%,
      rgba(144,136,128,0.15) 96%
    ) border-box;
  border: 1px solid transparent;
  animation: starBorderLight 3.5s linear infinite;
}
.btn-ghost-dark:hover { color: var(--crema); }

.btn-lg { font-size: 14px; padding: 15px 26px; }

/* ── ANIMATION SYSTEM ── */
/* Fade-up reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
[data-reveal].visible {
  opacity: 1; transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.07s; }
[data-reveal][data-delay="2"] { transition-delay: 0.14s; }
[data-reveal][data-delay="3"] { transition-delay: 0.21s; }
[data-reveal][data-delay="4"] { transition-delay: 0.28s; }
[data-reveal][data-delay="5"] { transition-delay: 0.35s; }

/* Line reveal (for big headlines) */
.reveal-wrap { overflow: hidden; display: block; }
[data-line-reveal] .reveal-wrap {
  overflow: hidden;
}
[data-line-reveal] .reveal-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease-out);
}
[data-line-reveal][data-delay="1"] .reveal-inner { transition-delay: 0.1s; }
[data-line-reveal][data-delay="2"] .reveal-inner { transition-delay: 0.18s; }
[data-line-reveal][data-delay="3"] .reveal-inner { transition-delay: 0.26s; }
[data-line-reveal][data-delay="4"] .reveal-inner { transition-delay: 0.34s; }
[data-line-reveal].visible .reveal-inner { transform: translateY(0); }

/* ── AMBIENT ANIMATIONS ── */
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.52; transform: scale(0.88); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}
@keyframes aurora {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── MARQUEE ── */
.marquee-track {
  overflow: hidden;
  background: var(--carbon-soft);
  border-top: 0.5px solid rgba(144,136,128,0.12);
  border-bottom: 0.5px solid rgba(144,136,128,0.12);
  padding: 14px 0;
}
.marquee-inner {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 2.5rem;
  padding: 0 2.5rem;
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--topo);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--cobre); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cobre); margin-bottom: 0.75rem;
}
.tag::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--cobre);
  border-radius: 1px; flex-shrink: 0;
}
.tag.light { color: rgba(144,136,128,0.7); }
.tag.light::before { background: rgba(144,136,128,0.5); }

/* ── TYPOGRAPHY UTILITIES ── */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -2.5px;
}
.display-xl { font-size: clamp(52px, 8.5vw, 110px); }
.display-lg { font-size: clamp(36px, 5.2vw, 64px); }
.display-md { font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -1px; line-height: 1.1; }

.headline {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.12;
}

.body-lg  { font-size: 16px; line-height: 1.8; }
.body-md  { font-size: 15px; line-height: 1.75; }
.body-sm  { font-size: 14px; line-height: 1.7; }
.label    { font-size: 11px; font-weight: 500; letter-spacing: 0.5px; }
.muted    { color: var(--topo); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--carbon);
  background-image: radial-gradient(circle, rgba(144,136,128,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 7rem 2.5rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cobre) 30%, rgba(196,80,10,0.3) 70%, transparent);
}
.page-hero-glow {
  position: absolute; top: -15%; right: -8%;
  width: 58%; height: 105%;
  background: radial-gradient(ellipse, rgba(196,80,10,0.16) 0%, rgba(196,80,10,0.05) 40%, transparent 68%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}
.page-hero-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero-kicker {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 3rem;
}
.page-hero-tag {
  font-size: 10px; letter-spacing: 4px; color: rgba(196,80,10,0.7);
  text-transform: uppercase; font-weight: 500;
}
.page-hero-count {
  font-size: 10px; letter-spacing: 3px; color: rgba(144,136,128,0.5);
  text-transform: uppercase;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 300;
  color: var(--crema);
  letter-spacing: -3px; line-height: 1.02;
  margin-bottom: 1.75rem;
  max-width: 720px;
}
.page-hero-title em { font-style: italic; color: var(--cobre); }
.page-hero-sub {
  font-size: 15px; color: var(--topo);
  max-width: 460px; line-height: 1.85; font-weight: 300;
}

/* ── SHARED CTA SECTION ── */
.cta-band {
  background: linear-gradient(-45deg, #141210, #200e05, #1a0c04, #141210, #1c1007);
  background-size: 400% 400%;
  animation: aurora 14s ease infinite;
  padding: 7rem 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,80,10,0.5) 30%, rgba(196,80,10,0.2) 70%, transparent 100%);
  pointer-events: none;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196,80,10,0.18) 0%, transparent 52%),
    radial-gradient(circle, rgba(144,136,128,0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--crema);
  letter-spacing: -1.5px; line-height: 1.15;
  max-width: 600px; margin: 0.5rem auto 1.25rem;
}
.cta-sub {
  font-size: 15px; color: var(--topo);
  max-width: 420px; margin: 0 auto 2.25rem;
  line-height: 1.8;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 0.5px solid var(--arena);
}

/* ── FOOTER ── */
footer {
  background: var(--carbon);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,80,10,0.4), transparent);
}
.footer-bg-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(125% 125% at 50% 10%, rgba(20,18,16,0.5) 50%, rgba(196,80,10,0.12) 100%);
}
.footer-content {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto;
  padding: 4rem 2.5rem 2.25rem;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}
.footer-brand {}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400;
  color: var(--crema); letter-spacing: -0.5px;
}
.footer-logo-row {
  display: flex; align-items: center; gap: 8px; margin-top: 5px;
}
.footer-logo-dash {
  width: 16px; height: 1.5px;
  background: var(--cobre); border-radius: 1px;
}
.footer-logo-sub {
  font-size: 7.5px; letter-spacing: 5.5px; color: var(--topo);
}
.footer-tagline {
  font-size: 14px; color: var(--topo);
  margin-top: 1.25rem; line-height: 1.75; max-width: 220px;
}
.footer-col-title {
  font-size: 9px; font-weight: 500; letter-spacing: 3.5px;
  color: var(--cobre); text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col a,
.footer-col p {
  display: block; font-size: 14px; color: var(--topo);
  line-height: 2.2; transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--crema); }
.footer-rule {
  border: none; border-top: 0.5px solid rgba(144,136,128,0.12);
  margin: 0 0 1.75rem;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(144,136,128,0.35);
}


/* ── SECTOR LANDING PAGES ── */

/* Problems grid */
.sector-problems { background: var(--crema); padding: 6rem 2.5rem; }
.sector-problems-inner { max-width: 1080px; margin: 0 auto; }
.sector-problems-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--arena);
  border: 0.5px solid var(--arena);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 3rem;
}
.sector-problem-card {
  background: var(--crema);
  padding: 2rem 2.25rem;
  position: relative;
  transition: background 0.25s ease;
}
.sector-problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cobre);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.38s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .sector-problem-card:hover { background: var(--white-warm); }
  .sector-problem-card:hover::before { transform: scaleX(1); }
}
.sector-problem-num {
  font-family: var(--font-display);
  font-size: 11px; color: var(--arena-dark);
  letter-spacing: 2px; margin-bottom: 1rem;
}
.sector-problem-title {
  font-family: var(--font-display);
  font-size: 20px; color: var(--carbon);
  letter-spacing: -0.5px; margin-bottom: 0.5rem; line-height: 1.2;
}
.sector-problem-desc { font-size: 15px; color: var(--topo); line-height: 1.75; }

/* Solutions */
.sector-solutions {
  background: var(--carbon);
  padding: 6rem 2.5rem;
  position: relative; overflow: hidden;
}
.sector-solutions::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196,80,10,0.12) 0%, transparent 52%),
    radial-gradient(circle, rgba(144,136,128,0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  pointer-events: none;
}
.sector-solutions-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.sector-solutions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(144,136,128,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 3rem;
}
.sector-solution {
  background: var(--carbon);
  padding: 2.25rem 2rem;
  position: relative;
  transition: background 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sector-solution:hover { background: var(--carbon-soft); }
}
.sector-solution::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cobre);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .sector-solution:hover::before { transform: scaleX(1); }
}
.sector-solution-num {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 3px;
  color: rgba(196,80,10,0.4); margin-bottom: 1.25rem;
}
.sector-solution-title {
  font-family: var(--font-display);
  font-size: 20px; color: var(--crema);
  letter-spacing: -0.5px; margin-bottom: 0.65rem; line-height: 1.25;
}
.sector-solution-desc { font-size: 15px; color: var(--topo); line-height: 1.75; }

/* Results */
.sector-results { background: var(--crema); padding: 6rem 2.5rem; }
.sector-results-inner { max-width: 1080px; margin: 0 auto; }
.sector-results-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; margin-top: 3rem;
}
.sector-metrics {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--carbon);
  border: 0.5px solid var(--carbon);
  border-radius: var(--radius-lg); overflow: hidden;
}
.sector-metric {
  background: var(--carbon);
  padding: 1.75rem 2rem;
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.25rem; align-items: center;
  transition: background 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sector-metric:hover { background: var(--carbon-soft); }
}
.sector-metric-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 300;
  letter-spacing: -2px; line-height: 1;
  background: linear-gradient(155deg, var(--cobre-claro) 0%, var(--cobre) 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sector-metric-num sup { font-size: 20px; vertical-align: top; margin-top: 6px; display: inline-block; }
.sector-metric-label { font-size: 14px; color: var(--crema); line-height: 1.5; }
.sector-metric-sub { font-size: 11px; color: var(--topo); margin-top: 2px; }
.sector-quote-tag {
  font-size: 9px; letter-spacing: 3.5px; color: var(--cobre);
  text-transform: uppercase; font-weight: 500; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 8px;
}
.sector-quote-tag::before { content: ''; width: 16px; height: 1px; background: var(--cobre); flex-shrink: 0; }
.sector-quote {
  font-family: var(--font-display);
  font-size: 22px; font-style: italic;
  color: var(--carbon); line-height: 1.55;
  letter-spacing: -0.3px; margin-bottom: 1.25rem;
}
.sector-quote-author { font-size: 14px; color: var(--topo); line-height: 1.6; }
.sector-quote-author strong { color: var(--carbon); font-weight: 500; display: block; margin-bottom: 1px; }
.sector-quote-cta { margin-top: 2.5rem; }

/* Sector responsive */
@media (max-width: 900px) {
  .sector-problems-grid { grid-template-columns: 1fr; }
  .sector-solutions-grid { grid-template-columns: 1fr; }
  .sector-results-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .sector-problems { padding: 4.5rem 1.25rem; }
  .sector-solutions { padding: 4.5rem 1.25rem; }
  .sector-results { padding: 4.5rem 1.25rem; }
}

/* ── NUMBER BADGE ── */
.num-badge {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 400;
  color: var(--cobre); letter-spacing: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-hero-text { height: clamp(70px, 12vw, 130px); }
}
@media (max-width: 600px) {
  nav { width: calc(100% - 1.5rem); padding: 0 0.75rem 0 1.1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-hero { padding: 5.5rem 1.25rem 3.5rem; }
  .cta-band { padding: 5rem 1.25rem; }
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 9998;
  background: linear-gradient(90deg, var(--cobre), var(--cobre-claro));
  transform-origin: left; transform: scaleX(0);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--carbon); }
::-webkit-scrollbar-thumb { background: rgba(196,80,10,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cobre); }

/* ── SELECTION ── */
::selection { background: rgba(196,80,10,0.2); color: var(--carbon); }

/* ── FOCUS ── */
:focus-visible {
  outline: 1.5px solid var(--cobre);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-line-reveal] .reveal-inner { transition: none; opacity: 1; transform: none; }
  .marquee-inner { animation: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
