/* Coalia Partners — Landing styles */
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --red: #dc2525;
  --burgundy: #370909;
  --cream: #f7f1ea;
  --paper: #fbf8f4;
  --bone: #ece5db;
  --ink: #1a0606;
  --gray-700: #5a4747;
  --gray-500: #8a7676;
  --gray-300: #c9bcbc;
  --gray-100: #ebe4e0;
  --white: #ffffff;
  --font-sans: 'Mona Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --gutter: clamp(24px, 5vw, 80px);
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: 'ss01';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--burgundy);
}
.nav-links a { color: inherit; text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: -0.005em;
}
.btn--primary { background: var(--burgundy); color: var(--paper); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(55,9,9,0.4); }
.btn--ghost { background: transparent; color: var(--burgundy); border: 1px solid var(--burgundy); }
.btn--ghost:hover { background: var(--burgundy); color: var(--paper); }
.btn--red { background: var(--red); color: var(--paper); }
.btn--red:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(220,37,37,0.5); }
.btn--lg { padding: 16px 28px; font-size: 15px; }

/* ============ SECTIONS ============ */
section { padding: clamp(72px, 10vw, 140px) var(--gutter); position: relative; }
.wrap { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
}

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.025em; line-height: 1; color: var(--burgundy); }
.display { font-size: clamp(48px, 7.5vw, 104px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.95; }
.h2 { font-size: clamp(36px, 5vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--gray-700); max-width: 60ch; }
.body { font-size: 15px; line-height: 1.6; color: var(--gray-700); }
.serif { font-style: italic; font-weight: 500; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 .accent { color: var(--red); display: inline-block; }
.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.badge-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-stat .num { font-size: 28px; font-weight: 800; color: var(--burgundy); letter-spacing: -0.02em; }
.badge-stat .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
.hero-divider { width: 1px; align-self: stretch; background: var(--gray-300); }

.hero-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1.05;
}
.hero-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(55,9,9,0.35);
}
.hero-card.main {
  top: 0; left: 0; width: 78%; height: 80%;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  /* Encuadre: subir el punto focal respecto a center top (la composición quedaba baja) */
  background-position: center 32%;
}
.hero-card.alt {
  bottom: 0; right: 0; width: 58%;
  height: auto;
  max-height: none;
  overflow: hidden;
  background: var(--burgundy);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 22px 24px 24px;
  color: var(--paper);
  position: absolute;
  z-index: 3;
  box-shadow: 0 24px 56px -20px rgba(55, 9, 9, 0.45);
}
.hero-card.alt::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  background: var(--red);
  opacity: 0.5;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero-card.alt .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  position: relative;
  z-index: 2;
}
.partner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}
.partner-list--hero li {
  font-size: clamp(12px, 1.25vw, 14px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
  padding: 8px 0;
  border-bottom: 1px solid rgba(247, 241, 234, 0.12);
}
.partner-list--hero li:first-child { padding-top: 0; }
.partner-list--hero li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.partner-list--cta li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--paper);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(247, 241, 234, 0.12);
}
.partner-list--cta li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.cta-card-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 241, 234, 0.65);
}
.cta-card-lead {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247, 241, 234, 0.78);
  margin: 0 0 4px;
}

.hero-iso {
  position: absolute;
  top: -30px; right: -30px;
  width: 110px; height: 110px;
  z-index: 5;
  filter: drop-shadow(0 12px 24px rgba(55,9,9,0.25));
}

/* Background floaters */
.bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bg-shapes .sq1 {
  position: absolute;
  top: -10%; right: -8%;
  width: 600px; height: 600px;
  background: var(--red);
  opacity: 0.05;
}
.bg-shapes .sq2 {
  position: absolute;
  top: 5%; right: 12%;
  width: 400px; height: 400px;
  background: var(--burgundy);
  opacity: 0.04;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--burgundy);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(247,241,234,0.1);
  border-bottom: 1px solid rgba(247,241,234,0.1);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  width: fit-content;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.ticker-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* ============ BENEFICIOS ============ */
#coalia {
  scroll-margin-top: 88px;
}

.benefits {
  background: var(--white);
}
.benefits-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bcard {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bcard:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(55,9,9,0.18); }
.bcard.span-6 { grid-column: span 6; }
.bcard.span-4 { grid-column: span 4; }
.bcard.span-12 { grid-column: span 12; }
.bcard .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bcard .num::after { content: ''; flex: 1; height: 1px; background: var(--gray-100); }
.bcard h3 { font-size: 24px; }
.bcard.featured { background: var(--burgundy); color: var(--paper); border: none; }
.bcard.featured h3 { color: var(--paper); }
.bcard.featured .body { color: rgba(247,241,234,0.78); }
.bcard.featured .num { color: rgba(247,241,234,0.6); }
.bcard.featured .num::after { background: rgba(247,241,234,0.15); }
.bcard.featured .ico-wrap { color: var(--red); }

.ico-wrap {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.bcard.featured .ico-wrap { background: rgba(247,241,234,0.08); color: var(--paper); }

/* ============ SERVICIOS ============ */
.services {
  background: var(--white);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  transition: all 0.25s ease;
  border: 1px solid var(--gray-100);
}
.svc:hover {
  background: var(--white);
  border-color: var(--burgundy);
  transform: translateY(-3px);
}
.svc h3 { font-size: 20px; line-height: 1.15; }
.svc .body { font-size: 14px; }
.svc .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc.dark { background: var(--burgundy); color: var(--paper); }
.svc.dark h3 { color: var(--paper); }
.svc.dark .body { color: rgba(247,241,234,0.75); }
.svc.dark .tag { color: rgba(247,241,234,0.6); }

/* ============ TOOLS / IMAGE ============ */
.tools {
  background: var(--white);
}
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tool-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-300);
  align-items: flex-start;
}
.tool-card:first-of-type { padding-top: 0; }
.tool-card:last-of-type { border-bottom: none; padding-bottom: 0; }
.tool-card .ico-wrap { background: var(--gray-100); }
.tool-card h3 { font-size: 22px; margin-bottom: 6px; }

.tools-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--burgundy);
}
.tools-image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: 0.95; }
.tools-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(55,9,9,0.5) 100%);
}
.tools-image-caption {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
  color: var(--paper);
}
.tools-image-caption .qt { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; max-width: 80%; }
.tools-image-caption .by { font-family: var(--font-mono); font-size: 11px; opacity: 0.75; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px; }
.tools-image-iso {
  position: absolute;
  top: 24px; right: 24px;
  width: 56px; height: 56px;
  z-index: 2;
}

/* ============ HOW IT WORKS ============ */
.how {
  background: var(--white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.step {
  padding: 32px 24px;
  border-right: 1px solid var(--gray-100);
  position: relative;
}
.step:last-child { border-right: none; }
.step .n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 32px;
}
.step h3 { font-size: 22px; margin-bottom: 12px; }
.step .body { font-size: 14px; }

/* ============ CONTACTO (layout captura: formulario izq., imagen dcha., banda diagonal) ============ */
.contact-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact {
  background: #e9e9ec;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('assets/Relleno-generativo-6.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.22;
  mix-blend-mode: multiply;
}
.contact-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.35) 100%);
}
.contact-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.82fr);
  gap: clamp(8px, 2.5vw, 40px);
  align-items: end;
  padding-bottom: clamp(8px, 2vw, 24px);
}
.contact-form-column {
  position: relative;
  padding-bottom: clamp(12px, 2vw, 28px);
  min-width: 0;
}
.contact-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  color: #4a0f12;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.contact-form-slab {
  position: relative;
  margin-top: clamp(12px, 2vw, 20px);
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 40px) clamp(24px, 3.5vw, 40px) 0;
}
.contact-form-slab::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -8px;
  bottom: -8px;
  left: -14vw;
  width: 118%;
  max-width: none;
  background: linear-gradient(
    106deg,
    rgba(228, 228, 232, 0.98) 0%,
    rgba(235, 235, 239, 0.94) 38%,
    rgba(242, 242, 245, 0.72) 62%,
    rgba(248, 248, 250, 0.2) 88%,
    transparent 100%
  );
  border-radius: 6px 48px 48px 8px;
  transform: skewX(-7deg);
  transform-origin: 0 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.contact-form-slab > .contact-form,
.contact-form-slab > .contact-thanks {
  position: relative;
  z-index: 1;
}
.contact-visual-column {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-bottom: 0;
}
.contact-visual-img {
  width: min(100%, 520px);
  max-width: 50vw;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  margin-left: clamp(-32px, -3vw, 0px);
  transform: translateY(-22px);
  filter: drop-shadow(0 18px 32px rgba(26, 6, 6, 0.12));
}
.contact-thanks {
  font-size: 17px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
  max-width: 52ch;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: Helvetica, Arial, sans-serif;
}
.contact-gf-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-row {
  display: grid;
  gap: 14px;
}
.contact-row--2 { grid-template-columns: 1fr 1fr; }
.contact-row--3.contact-row--empleados {
  grid-template-columns: 1fr 1.65fr 1.12fr;
}
.contact-field {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #131313;
  background: #ffffff;
  border: 1px solid #d5d5da;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(19, 19, 19, 0.04);
}
.contact-field::placeholder { color: #8a8a90; }
.contact-field:hover { border-color: #c0c0c8; }
.contact-field:focus {
  border-color: rgba(55, 9, 9, 0.35);
  box-shadow: 0 0 0 3px rgba(220, 37, 37, 0.1);
}
.contact-field--textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.5;
}
.contact-field--select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1.5L6 6l5-4.5' stroke='%23666' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: #fff;
}
.contact-field--select:invalid {
  color: #8a8a90;
}
.contact-field--select option {
  color: #131313;
}
.contact-fs {
  border: none;
  margin: 0;
  padding: 0;
}
.contact-fs legend {
  padding: 0;
}
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #131313;
  cursor: pointer;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
}
.contact-consent input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #b8b8c0;
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.contact-consent input:checked {
  border-color: var(--red);
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6l2.5 2.5L9.5 3.5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-consent input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.contact-policy {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}
.contact-policy:hover { text-decoration: underline; }
.contact-legal {
  margin-top: 4px;
  padding: 10px 12px 10px 0;
  max-height: 100px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.contact-legal p {
  font-size: 12px;
  line-height: 1.5;
  color: #6e6e76;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  text-align: justify;
}
.contact-actions {
  margin-top: 6px;
  display: flex;
  justify-content: flex-start;
}
.btn--contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 10px;
  border: none;
  background: var(--red);
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.btn--contact-submit:hover {
  filter: brightness(1.06);
}
.btn--contact-submit:active {
  transform: translateY(1px);
}

/* ============ CTA ============ */
.cta {
  background: var(--burgundy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: var(--red);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta h2 { color: var(--paper); }
.cta h2 .accent { color: var(--red); }
.cta .lead { color: rgba(247,241,234,0.78); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.cta-actions .btn--primary { background: var(--red); color: var(--paper); }
.cta-actions .btn--ghost { color: var(--paper); border-color: rgba(247,241,234,0.4); }
.cta-actions .btn--ghost:hover { background: var(--paper); color: var(--burgundy); border-color: var(--paper); }

.cta-card {
  background: rgba(247,241,234,0.05);
  border: 1px solid rgba(247,241,234,0.15);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(247,241,234,0.7);
  padding: 80px var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; max-width: 380px; }
.footer-brand svg { max-width: 100%; height: auto; }
.footer-brand .body { color: rgba(247,241,234,0.6); font-size: 14px; }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,241,234,0.5);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--paper); text-decoration: none; font-size: 14px; opacity: 0.85; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--red); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(247,241,234,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,241,234,0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .benefits-head, .services-head, .tools-grid, .contact-wrap, .cta-inner { grid-template-columns: 1fr; }
  .contact-wrap { align-items: stretch; }
  .contact-visual-column {
    order: -1;
    margin-bottom: 8px;
    justify-content: center;
  }
  .contact-visual-img {
    max-width: min(280px, 72vw);
    margin-left: 0;
  }
  .contact-form-slab::before {
    left: -6vw;
    width: 108%;
    transform: skewX(-4deg);
  }
  .hero-visual { aspect-ratio: 4/3; max-width: 600px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .bcard.span-6, .bcard.span-4, .bcard.span-12 { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--gray-100); }
  .step:nth-child(odd) { border-right: 1px solid var(--gray-100); }
  .step:nth-child(even) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-row--2,
  .contact-row--3 { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--gray-100); }
  .footer-grid { grid-template-columns: 1fr; }
}
