/* ============================================================
   AmaroInsights — Landing page
   Warm, human, editorial. Palette + type are tweakable.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette: Amaro (magenta + light blue + white) */
  --bg:        #FFFFFF;
  --surface:   #F8F8F8;
  --surface-2: #F0EEF2;
  --ink:       #201E24;
  --muted:     #6A6470;
  --faint:     #9C96A0;
  --line:      #E6E1D8;
  --line-soft: #EFEBE3;
  --accent:    #CC2B6A;
  --accent-2:  #AC1F56;
  --accent-soft: #F2CFDD;
  --deep:      #B6C8E2;
  --deep-ink:  #1C2E40;
  --deep-muted:#4B6275;
  --deep-line: #94B0C8;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 72px);
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Spectral', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --display-weight: 500;
  --display-italic-allowed: 1;
}

/* Alternate color themes — share the whiter cream base, swap accent + section color */

/* Azul — blue accent, magenta sections (inverts the logo pairing) */
html[data-palette="azul"] {
  --accent:      #2F6BB0;
  --accent-2:    #245A99;
  --accent-soft: #CEDEF0;
  --deep:        #B12A68;
  --deep-ink:    #FCEAF2;
  --deep-muted:  #EAB3CD;
  --deep-line:   #C9508C;
}

/* Ciruela — plum accent, deep plum sections */
html[data-palette="ciruela"] {
  --accent:      #9C2E73;
  --accent-2:    #7F2560;
  --accent-soft: #ECCCE2;
  --deep:        #463159;
  --deep-ink:    #F2EBF7;
  --deep-muted:  #C3B2D5;
  --deep-line:   #61497A;
}

/* Esmeralda — emerald accent, deep teal sections */
html[data-palette="esmeralda"] {
  --accent:      #1F8268;
  --accent-2:    #186650;
  --accent-soft: #C6E6DA;
  --deep:        #11434B;
  --deep-ink:    #E7F2F2;
  --deep-muted:  #A2C5C4;
  --deep-line:   #2A5F66;
}

/* Type variant: contemporary sans */
html[data-type="sans"] {
  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --display-weight: 700;
  --display-italic-allowed: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: var(--display-weight); line-height: 1.04; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* eyebrow / kicker */
.kicker {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.kicker.on-deep { color: var(--accent); }
.kicker.on-deep::before { background: var(--accent); }
.kicker.centered { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #fff; }
                                                              /*translate y is the raise, box-shadow is the flow*/
.btn-primary:hover { background: var(--accent-2); /*transform: translateY(-2px); box-shadow: 0 12px 28px -12px color-mix(in oklab, var(--accent) 70%, transparent)*/; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: color-mix(in oklab, var(--ink) 4%, transparent); }
.btn-deep { background: var(--deep-ink); color: var(--deep); }
.btn-deep:hover { /*transform: translateY(-2px); */}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-slot {
  width: 168px; height: 38px;
}
.brand-logo { height: 46px; width: auto; display: block; }
.footer-logo { height: 52px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink); white-space: nowrap;
  position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content:""; position: absolute; left: 0; bottom: -1px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 18px; }

/* language toggle */
.lang {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
}
.lang button {
  background: transparent; border: none; cursor: pointer;
  color: var(--muted); padding: 7px 12px; font: inherit; transition: all .25s;
}
.lang button.on { background: var(--ink); color: var(--bg); }

.nav-cta { padding: 11px 22px; font-size: 14px; }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 132px; padding-bottom: 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px, 5vw, 72px); align-items: center; min-height: 70vh; }

.hero h1 {
  font-size: clamp(40px, 6.0vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.hero h1 .em { color: var(--accent); font-style: italic; }
html[data-type="sans"] .hero h1 .em { font-style: normal; }
.hero-lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 30em; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 40px; display: flex; gap: 38px; flex-wrap: wrap; }
.hero-meta .stat .n { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--ink); line-height: 1; }
.hero-meta .stat .l { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: .02em; }

.hero-visual { position: relative; align-self: start;}
.hero-visual .ph { aspect-ratio: 4/5; border-radius: 8px; }
.hero-mark { display: block; width: 100%; height: auto; border-radius: 8px; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 18px 22px; max-width: 230px;
  box-shadow: 0 22px 50px -28px rgba(0,0,0,.35);
}
.hero-badge .q { font-family: var(--font-display); font-style: italic; font-size: 16px; line-height: 1.35; }
.hero-badge .a { font-size: 12px; color: var(--muted); margin-top: 8px; letter-spacing: .04em; text-transform: uppercase; }

/* Hero variant: immersive (full-bleed image) */
.hero.v-immersive .hero-grid { grid-template-columns: 1fr; }
.hero.v-immersive .hero-visual { display: none; }
.hero.v-immersive { padding: 0; }
.hero.v-immersive .immersive-stage {
  position: relative; min-height: 86vh; display: flex; align-items: flex-end;
  padding: 0 var(--gut) 72px; padding-top: 160px;
}
.hero.v-immersive .immersive-bg { position: absolute; inset: 0; }
.hero.v-immersive .immersive-bg .ph { width: 100%; height: 100%; border-radius: 0; background-color: var(--deep);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 13px); border: none; }
.hero.v-immersive .immersive-bg .ph .ph-label { color: rgba(255,255,255,.7); background: rgba(0,0,0,.3); border-color: rgba(255,255,255,.18); }
.hero.v-immersive .immersive-bg::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,.45) 0%, rgba(15,11,8,.55) 45%, rgba(15,11,8,.85) 100%);
}
.hero.v-immersive .immersive-content { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; color: #fff; }
.hero.v-immersive h1 { color: #fff; max-width: 14em; }
.hero.v-immersive h1 .em { color: var(--accent-soft); }
.hero.v-immersive .hero-lede { color: rgba(255,255,255,.85); }
.hero.v-immersive .hero-meta .stat .n { color: #fff; }
.hero.v-immersive .hero-meta .stat .l { color: rgba(255,255,255,.7); }
.hero.v-immersive .kicker { color: var(--accent-soft); }
.hero.v-immersive .kicker::before { background: var(--accent-soft); }

/* Hero variant: statement (centered editorial) */
.hero.v-statement .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.hero.v-statement .hero-visual { display: none; }
.hero.v-statement { padding-top: 168px; padding-bottom: 0; }
.hero.v-statement .kicker { justify-content: center; }
.hero.v-statement h1 { font-size: clamp(44px, 7vw, 92px); max-width: 16em; }
.hero.v-statement .hero-lede { margin-inline: auto; }
.hero.v-statement .hero-actions { justify-content: center; }
.hero.v-statement .hero-meta { justify-content: center; }
.hero.v-statement .statement-strip { margin-top: 64px; }
.hero.v-statement .statement-strip .ph { aspect-ratio: 21/8; border-radius: 8px; }

/* default (split) hides the other variants' wrappers */
.hero .immersive-stage, .hero .statement-strip { display: none; }
.hero.v-immersive .immersive-stage { display: flex; }
.hero.v-immersive .hero-default-grid { display: none; }
.hero.v-statement .statement-strip { display: block; }

/* ============================================================
   PLACEHOLDER (drop-zone style)
   ============================================================ */
.ph {
  position: relative;
  background-color: var(--surface-2);
  background-image: repeating-linear-gradient(135deg,
     color-mix(in oklab, var(--ink) 5%, transparent) 0 1px,
     transparent 1px 11px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ph .ph-label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11.5px; letter-spacing: .04em; color: var(--muted);
  background: color-mix(in oklab, var(--surface) 78%, transparent);
  padding: 6px 11px; border-radius: 100px; border: 1px solid var(--line);
  text-align: center;
}
.ph.on-dark { background-color: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 11px); }
.ph.on-dark .ph-label { color: rgba(255,255,255,.78); background: rgba(0,0,0,.25); border-color: rgba(255,255,255,.18); }

/* logo slot specific */
.logo-slot.ph { border-radius: 4px; background-color: transparent; border-style: dashed; }
.logo-slot .ph-label { font-size: 10px; }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
section { position: relative; }
.section { padding-block: clamp(72px, 9vw, 132px); }
.section.deep { background: var(--deep); color: var(--deep-ink); }
.section.surface { background: var(--surface); }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head.centered { margin-inline: auto; text-align: center; }
.sec-head .kicker { margin-bottom: 20px; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 50px); line-height: 1.05; margin-bottom: 20px; }
.sec-head p { font-size: clamp(16px, 1.3vw, 19px); color: var(--muted); }
.section.deep .sec-head p { color: var(--deep-muted); }
.section.deep .sec-head h2 { color: var(--deep-ink); }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.sol-card {
  background: var(--surface); padding: 38px 34px 44px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .4s var(--ease), transform .4s var(--ease);
  position: relative; min-height: 270px;
}
.sol-card:hover { background: var(--deep); color: var(--deep-ink); }
.sol-num { font-family: var(--font-display); font-size: 14px; color: var(--accent); font-weight: 600; letter-spacing: .04em; }
.sol-card:hover .sol-num { color: var(--accent); }
.sol-card h3 { font-size: 25px; line-height: 1.08; }
.sol-card .sol-desc { font-size: 15px; color: var(--muted); line-height: 1.55; }
.sol-card:hover .sol-desc { color: var(--deep-muted); }
.sol-tags { margin-top: auto; padding-top: 14px; display: flex; flex-wrap: wrap; gap: 7px; }
.sol-tag { font-size: 11.5px; letter-spacing: .02em; color: var(--accent); border: 1px solid var(--accent); border-radius: 100px; padding: 4px 11px; transition: all .3s; }
.sol-card:hover .sol-tag { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   DIFFERENTIATOR (split with placeholder)
   ============================================================ */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.diff-visual .ph { aspect-ratio: 5/6; border-radius: 8px; }
.diff-body h2 { font-size: clamp(28px, 3.2vw, 46px); margin-bottom: 24px; }
.diff-body p { color: var(--muted); margin-bottom: 18px; font-size: 17px; }
.lens-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.lens {
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  background: transparent; border: 1px solid var(--accent);
  padding: 9px 16px; border-radius: 100px; color: var(--accent);
  transition: all .3s var(--ease);
}
.lens:hover { background: var(--accent); color: #fff; border-color: var(--accent); /*transform: translateY(-2px); */}

/* ============================================================
   APPROACH (3 lenses Usuario/Shopper/Persona) — on deep
   ============================================================ */
.approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 12px; }
.appr-card { border: 1px solid var(--deep-line); border-radius: 10px; padding: 34px 30px; transition: all .4s var(--ease); background: color-mix(in oklab, var(--deep-ink) 3%, transparent); }
.appr-card:hover { background: color-mix(in oklab, var(--deep-ink) 7%, transparent); /*transform: translateY(-4px); */}
.appr-card .appr-ic { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--accent); display: grid; place-items: center; color: var(--accent); font-family: var(--font-display); font-style: italic; font-size: 20px; margin-bottom: 22px; }
.appr-card h3 { font-size: 23px; color: var(--deep-ink); margin-bottom: 12px; }
.appr-card p { font-size: 15px; color: var(--deep-muted); line-height: 1.55; }

/* ============================================================
   STATS / TRACK RECORD
   ============================================================ */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat-cell { background: var(--bg); padding: 44px 28px; }
.stat-cell .n { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 600; line-height: .95; color: var(--accent); letter-spacing: -0.02em; }
.stat-cell .l { margin-top: 14px; font-size: 14.5px; color: var(--muted); line-height: 1.4; max-width: 16em; }
.track-note { margin-top: 48px; display:flex; align-items:center; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 15px; }
.track-note .ph { height: 30px; width: 110px; border-radius: 4px; }

/* ============================================================
   QUALITY (numbered steps) — surface
   ============================================================ */
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 12px; }
.step { padding-top: 26px; border-top: 2px solid var(--ink); }
.step .step-n { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .12em; color: var(--accent); }
.step h3 { font-size: 21px; margin: 16px 0 12px; }
.step p { font-size: 15px; color: var(--muted); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-cluster { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cat-group { background: var(--surface); padding: 28px 26px; }
.cat-group h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.cat-group ul { list-style: none; margin: 0; padding: 0; columns: 1; }
.cat-group li { font-size: 14.5px; color: var(--muted); padding: 4px 0; border-bottom: 1px solid var(--line-soft); }
.cat-group li:last-child { border-bottom: none; }

/* ============================================================
   CLIENTS (logo wall placeholders)
   ============================================================ */
.logo-wall { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.logo-wall .cell { background: var(--surface); aspect-ratio: 4/3; display: grid; place-items: center; container-type: size; }
.logo-wall .cell img { max-width: 72cqw; max-height: 60cqh; width: auto; height: auto;
  opacity: .92; transform: scale(var(--logo-s, 1)); mix-blend-mode: multiply;
  transition: opacity .35s var(--ease), transform .35s var(--ease); }
.logo-wall .cell:hover img { opacity: 1; transform: scale(calc(var(--logo-s, 1) * 1.05)); }

/* global partners strip below the client wall */
.partners-block { margin-top: clamp(40px, 5vw, 64px); }
.partners-block .kicker { margin-bottom: 26px; }
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px 34px; }
.partner-row img { height: 44px; width: auto; border-radius: 6px; opacity: .92; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.partner-row img:hover { opacity: 1; transform: scale(1.05); }
.logo-wall img[alt="Danone"] { --logo-s: 1.4; }
.logo-wall img[alt="Pepsi"] { --logo-s: 0.85; }
.logo-wall img[alt="Cereal Partners Worldwide"] { --logo-s: 1.25; }

/* ============================================================
   COVERAGE (map)
   ============================================================ */
.cov-grid { display: grid; grid-template-columns: minmax(280px, 0.6fr) 1.4fr; gap: clamp(24px, 3vw, 48px); align-items: center; }
.cov-body h2 { font-size: clamp(28px,3.4vw,48px); margin-bottom: 22px; }
.cov-body p { color: var(--deep-muted); font-size: 17px; margin-bottom: 16px; }
.cov-list { margin-top: 26px; display: flex; flex-direction: column; gap: 2px; }
.cov-list .row { display:flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--deep-line); }
.cov-list .row .c { font-size: 16px; color: var(--deep-ink); font-weight: 500; }
.cov-list .row .v { font-size: 13px; color: var(--deep-muted); letter-spacing: .03em; }
.cov-visual .ph { aspect-ratio: 1/1; border-radius: 10px; }
.cov-visual img { width: 100%; height: auto; display: block;}
.cov-map-full { margin-top: clamp(24px, 4vw, 56px); }
.cov-map-full img { display: block; width: 100%; max-width: 1500px; margin: 0 auto; height: auto; }

/* ============================================================
   TEAM
   ============================================================ */
.lead-grid { display: grid; grid-template-columns: 0.62fr 1.38fr; gap: clamp(32px,5vw,64px); align-items: center; margin-bottom: 56px; }
.lead-photo .ph { aspect-ratio: 4/5; border-radius: 8px; }
.lead-photo { max-width: 320px; }
.lead-body .lead-name { font-family: var(--font-display); font-size: clamp(28px,3vw,40px); margin-bottom: 6px; }
.lead-body .lead-role { color: var(--accent); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; }
.lead-body p { color: var(--muted); font-size: 17px; }
.team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; }
.team-member img { width: 100%; height: auto !important; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; margin-bottom: 14px; display: block; align-self: start; }
.team-member .ph { aspect-ratio: 1/1; border-radius: 8px; margin-bottom: 14px; }
.tm-photo--empty {
  aspect-ratio: 4/5; border-radius: 8px; margin-bottom: 14px;
  border: 1.5px dashed var(--line);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--muted); font-size: 12.5px; letter-spacing: .02em; padding: 8px;
  background: color-mix(in oklab, var(--surface) 60%, transparent);
}
.team-member .tm-name { font-family: var(--font-display); font-size: 17px; }
.team-member .tm-role { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--deep); color: var(--deep-ink); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-intro .kicker { margin-bottom: 22px; }
.contact-intro h2 { font-size: clamp(30px, 3.6vw, 50px); color: var(--deep-ink); margin-bottom: 24px; line-height: 1.04; }
.contact-intro p { color: var(--deep-muted); font-size: 17px; margin-bottom: 30px; max-width: 30em; }
.contact-direct { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--deep-line); }
.contact-direct .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--deep-muted); margin-bottom: 8px; }
.contact-direct a { font-family: var(--font-display); font-size: 22px; color: var(--deep-ink); border-bottom: 1px solid var(--accent); padding-bottom: 2px; transition: color .3s; }
.contact-direct a:hover { color: var(--accent-soft); }

.form-card { background: var(--surface); border-radius: 12px; padding: clamp(26px, 3vw, 42px); color: var(--ink); box-shadow: 0 40px 80px -50px rgba(0,0,0,.6); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display:block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--muted); margin-bottom: 7px; }
.field label .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 6px;
  padding: 12px 14px; transition: border-color .25s, box-shadow .25s; outline: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field.err input, .field.err textarea { border-color: #c0392b; }
.field .msg { font-size: 12px; color: #c0392b; margin-top: 5px; display: none; }
.field.err .msg { display: block; }
.form-foot { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--muted); }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; animation: fadeUp .6s var(--ease); }
.form-success .check { width: 58px; height: 58px; border-radius: 50%; background: var(--accent); color:#fff; display: grid; place-items: center; margin: 0 auto 20px; font-size: 26px; }
.form-success h3 { font-size: 26px; margin-bottom: 12px; }
.form-success p { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep); color: var(--deep-muted); padding-block: 56px; border-top: 1px solid var(--deep-line); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer .logo-slot { width: 160px; height: 36px; }
.footer-nav { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-body); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--deep-ink); margin: 0 0 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--deep-muted); padding: 4px 0; transition: color .25s; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 26px; border-top: 1px solid var(--deep-line); display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--deep-muted); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px);} to {opacity:1; transform:none;} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .sol-grid, .approach-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .team-row { grid-template-columns: repeat(3, 1fr); }
  .logo-wall { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid, .diff-grid, .cov-grid, .contact-grid, .lead-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px;}
  .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .sol-grid, .approach-grid, .steps, .stats-band, .frow { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: repeat(2,1fr); }
  .logo-wall { grid-template-columns: repeat(2,1fr); }
  .hero-meta { gap: 24px; }
}

/* ============================================================
   DESKTOP MAP SECTION
   ============================================================ */
@media (min-width: 861px) {
  #cobertura { 
    height: 863px; 
  }
  
  #cobertura .cov-grid { 
    width: 1296px; 
    height: 600px; 
  }
  
  #cobertura .cov-visual img { 
    width: 1048px; 
    height: 552px; 
    object-fit: contain; 
    max-width: none;
  }
}
/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 49; background: var(--bg); padding: 90px var(--gut) 40px; display: none; flex-direction: column; gap: 8px; }
.mobile-menu.open { display: flex; animation: fadeUp .35s var(--ease); }
.mobile-menu a { font-family: var(--font-display); font-size: 28px; padding: 12px 0; border-bottom: 1px solid var(--line); }
