/* ============================================================
   PIXIT – Stylesheet
   Paleta: gris oscuro #333 + gradiente naranja #F59E0B → #EA580C
   ============================================================ */

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

:root {
  --orange:        #F59E0B;
  --orange-2:      #EA580C;
  --orange-glow:   rgba(245,158,11,0.22);
  --charcoal:      #2D2D2D;
  --dark:          #1A1A1A;
  --dark-2:        #242424;
  --gray:          #6B7280;
  --gray-light:    #E5E7EB;
  --white:         #FFFFFF;
  --bg:            #F8F9FA;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.13);
  --transition:    0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY UTILITIES ─────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-badge--light {
  background: rgba(245,158,11,0.15);
  color: var(--orange);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  font-size: 17px;
  color: var(--gray);
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.btn--primary:hover { opacity: 0.9; transform: translateY(-2px); text-decoration: none; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); text-decoration: none; }

.btn--nav {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn--nav:hover { opacity: 0.9; text-decoration: none; }

.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAVBAR ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255,255,255,0.0);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

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

.nav__logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.nav__links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 16px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
.nav.scrolled .nav__links a { color: var(--charcoal); }
.nav__links a:hover { color: var(--orange); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--charcoal); }

.nav__mobile {
  display: none;
  background: var(--white);
  padding: 16px 24px;
  border-top: 1px solid var(--gray-light);
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 8px;
  text-decoration: none;
}
.nav__mobile a:hover { background: var(--bg); color: var(--orange); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1a120a 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.12) 0%, transparent 60%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── HERO DASHBOARD CARD ──────────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  animation: pulse-orb 4s ease-in-out infinite;
}

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

.hero__dashboard-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 360px;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.dash-live {
  font-size: 11px;
  font-weight: 600;
  color: #10B981;
  background: rgba(16,185,129,0.15);
  padding: 3px 10px;
  border-radius: 99px;
}

.dash-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 6px;
  align-items: baseline;
}
.dash-metric__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.dash-metric__unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}
.dash-metric__label {
  grid-column: 1 / -1;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.dash-bar {
  grid-column: 1 / -1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.dash-bar__fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 99px;
  transition: width 1.2s ease;
}
.dash-bar__fill--blue  { background: linear-gradient(90deg, #3B82F6, #6366F1); }
.dash-bar__fill--green { background: linear-gradient(90deg, #10B981, #059669); }

.dash-chart {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.dash-chart__label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 12px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
}
.dash-bar-v {
  flex: 1;
  background: rgba(245,158,11,0.2);
  border-radius: 4px 4px 0 0;
  height: var(--h);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 4px;
  transition: background 0.25s;
}
.dash-bar-v span {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.dash-bar-v--active {
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
}
.dash-bar-v--active span { color: rgba(255,255,255,0.8); }

/* ── NODES CANVAS (sección soluciones) ───────────────── */
.solutions {
  position: relative;
  overflow: hidden;
}

.nodes-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.solutions .container {
  position: relative;
  z-index: 2;
}

/* ── STATS ────────────────────────────────────────────── */
.stats {
  background: var(--dark);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-item__number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item__suffix {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 160px;
  line-height: 1.5;
}

/* ── SERVICES ─────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--bg);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.3);
}

.service-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
}

.service-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SOLUTIONS ────────────────────────────────────────── */
.solutions {
  padding: 100px 0;
  background: var(--white);
}

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

.solution-card {
  background: var(--bg);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.3);
  background: var(--white);
}

.solution-card__icon {
  font-size: 32px;
}

.solution-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.solution-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.solution-card__result {
  margin-top: 4px;
}

.result-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: rgba(245,158,11,0.1);
  color: var(--orange-2);
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(245,158,11,0.2);
}

/* ── IMPACT / ANÁLISIS ────────────────────────────────── */
.impact {
  padding: 100px 0;
  background: var(--dark);
}

.impact .section-header h2 {
  color: var(--white);
}
.impact .section-header p {
  color: rgba(255,255,255,0.5);
}

.impact__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Demo Dashboard */
.demo-dashboard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(12px);
}

.demo-dash__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.demo-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.demo-period {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  padding: 3px 10px;
  border-radius: 99px;
}

.demo-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.demo-kpi {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-kpi__label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.demo-kpi__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.demo-kpi__delta {
  font-size: 12px;
  font-weight: 700;
}
.demo-kpi--up .demo-kpi__delta { color: #10B981; }
.demo-kpi--down .demo-kpi__delta { color: #10B981; }

.demo-chart-area {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}
.demo-chart-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 10px;
}

.demo-line-chart {
  height: 80px;
  width: 100%;
}
.line-svg {
  width: 100%;
  height: 100%;
}
.line-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-line 2s ease forwards 0.5s;
}
.line-area {
  opacity: 0;
  animation: fade-area 0.5s ease forwards 1.8s;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
@keyframes fade-area {
  to { opacity: 1; }
}

.demo-table {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.demo-table__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 8px 4px;
  font-size: 13px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.demo-table__row:last-child { border-bottom: none; }
.demo-table__row--header {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.demo-table__row:not(.demo-table__row--header) span:first-child {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.demo-table__row:not(.demo-table__row--header) span:nth-child(2) {
  color: var(--white);
  font-weight: 700;
}
.trend-up   { color: #10B981; font-weight: 700; font-size: 13px; }
.trend-down { color: #F87171; font-weight: 700; font-size: 13px; }

/* Impact Benefits */
.impact__benefits h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.25;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-item__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

/* ── PROJECTS ─────────────────────────────────────────── */
.projects {
  padding: 100px 0;
  background: var(--bg);
}

.projects__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.project-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.project-card--featured {
  border-color: rgba(245,158,11,0.25);
  background: linear-gradient(145deg, #fffdf7, var(--white));
}

.project-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.project-card__logo {
  height: 36px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.project-card__status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
}

.project-card__status.live {
  background: #D1FAE5;
  color: #065F46;
}

.project-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.project-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-card__tags span {
  font-size: 12px;
  font-weight: 600;
  background: rgba(245,158,11,0.1);
  color: var(--orange-2);
  padding: 4px 12px;
  border-radius: 99px;
}

.project-card__metrics {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 20px;
}

.proj-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proj-metric strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}
.proj-metric span {
  font-size: 12px;
  color: var(--gray);
}

.project-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-2);
  text-decoration: none;
  transition: color var(--transition);
}
.project-card__link:hover { color: var(--orange); text-decoration: none; }

.project-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: var(--bg);
  border-style: dashed;
  border-color: var(--gray-light);
  box-shadow: none;
}
.project-card--placeholder:hover { transform: none; box-shadow: none; }

.project-card__coming {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.project-card__coming span { font-size: 32px; }
.project-card__coming p { font-size: 14px; color: var(--gray); }

/* ── ABOUT ────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--dark);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about .section-badge {
  background: rgba(245,158,11,0.15);
  color: var(--orange);
}

.about__text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__text p:last-child { margin-bottom: 0; }

.about__values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.value-item__icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

/* ── PROCESS ──────────────────────────────────────────── */
.process {
  padding: 100px 0;
  background: var(--bg);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.process-step {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 12px;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--orange-glow);
}

.process-step__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step__content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

.process-step__arrow {
  font-size: 20px;
  color: var(--orange);
  align-self: flex-start;
  margin-top: 18px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text .section-badge { display: inline-block; }

.contact__text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact__text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact__channels { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-channel:hover { color: var(--orange); text-decoration: none; }

.contact__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Form */
.contact__form {
  background: var(--bg);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form__note {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin-top: -8px;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__logo {
  height: 32px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: 1fr; }
  .project-card--placeholder { min-height: 120px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__layout { grid-template-columns: 1fr; gap: 48px; }
  .process__steps { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .process-step__arrow { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__sub { max-width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__visual { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .solutions__grid { grid-template-columns: 1fr; }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  .demo-kpis { grid-template-columns: repeat(2, 1fr); }
  .project-card__metrics { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .contact__form { padding: 28px 20px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .demo-kpis { grid-template-columns: 1fr; }
}
