/* ============================================================
   Grupo Productivo S.A.C. — Sistema de diseño
   ============================================================ */

:root {
  /* Brand palette derived from logo */
  --gp-navy-900: #061d33;
  --gp-navy-800: #0a2a48;
  --gp-navy-700: #0e3a5f;
  --gp-navy-600: #14507e;
  --gp-navy-500: #1f6aa0;
  --gp-navy-400: #2e89c7;
  --gp-navy-300: #6fb0d9;
  --gp-navy-200: #b8d5e8;
  --gp-navy-100: #e3eef6;

  --gp-amber: #e8b23b;
  --gp-amber-deep: #c89124;
  --gp-amber-soft: #f4d488;

  /* Neutrals — warm, like raw concrete */
  --gp-paper:  #f5f3ee;
  --gp-paper-2:#ebe7df;
  --gp-stone-50:  #fafaf8;
  --gp-stone-100: #f0eee9;
  --gp-stone-200: #d9d6cf;
  --gp-stone-300: #b8b3a8;
  --gp-stone-400: #888578;
  --gp-stone-500: #5b5a52;
  --gp-stone-600: #383731;
  --gp-stone-700: #232320;
  --gp-stone-800: #141413;
  --gp-stone-900: #0a0a09;

  /* Semantic — light mode default */
  --bg: var(--gp-paper);
  --bg-elev: #ffffff;
  --bg-sunken: var(--gp-paper-2);
  --bg-invert: var(--gp-navy-900);

  --ink: var(--gp-stone-800);
  --ink-2: var(--gp-stone-600);
  --ink-3: var(--gp-stone-500);
  --ink-4: var(--gp-stone-400);
  --ink-invert: #f8f6f0;

  --line: rgba(20,20,19,0.10);
  --line-strong: rgba(20,20,19,0.22);

  --brand: var(--gp-navy-700);
  --brand-deep: var(--gp-navy-900);
  --brand-soft: var(--gp-navy-100);
  --accent: var(--gp-amber);
  --accent-deep: var(--gp-amber-deep);

  /* Type */
  --f-display: "Manrope", system-ui, sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Density — Tweakable */
  --density: 1;
  --space-1: calc(4px * var(--density));
  --space-2: calc(8px * var(--density));
  --space-3: calc(12px * var(--density));
  --space-4: calc(16px * var(--density));
  --space-5: calc(24px * var(--density));
  --space-6: calc(32px * var(--density));
  --space-7: calc(48px * var(--density));
  --space-8: calc(64px * var(--density));
  --space-9: calc(96px * var(--density));
  --space-10:calc(128px * var(--density));
  --space-11:calc(160px * var(--density));

  --r-2: 2px;
  --r-4: 4px;
  --r-8: 8px;
  --r-12: 12px;
  --r-16: 16px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(6,29,51,0.06), 0 0 0 1px rgba(6,29,51,0.04);
  --shadow-2: 0 8px 24px rgba(6,29,51,0.08), 0 1px 2px rgba(6,29,51,0.06);
  --shadow-3: 0 24px 64px -16px rgba(6,29,51,0.25);

  --gutter: clamp(20px, 4vw, 56px);
  --col-max: 1440px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* Dark mode */
:root[data-mode="dark"] {
  --bg: #0a1320;
  --bg-elev: #0f1a2b;
  --bg-sunken: #060d18;
  --bg-invert: var(--gp-paper);

  --ink: #f0eee8;
  --ink-2: #c8c5bd;
  --ink-3: #908d83;
  --ink-4: #5e5b52;
  --ink-invert: var(--gp-stone-800);

  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.22);

  --brand: var(--gp-navy-400);
  --brand-soft: rgba(46,137,199,0.14);

  --shadow-1: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-3: 0 24px 64px -16px rgba(0,0,0,0.6);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: none; }
@media (max-width: 900px) { button { cursor: pointer; } }

/* Selection */
::selection { background: var(--accent); color: var(--gp-navy-900); }

/* Type system */
.t-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.t-eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--accent); margin-right: 10px;
  transform: translateY(-1px);
}
.t-display {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.t-h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.t-h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.t-h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.t-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
  text-wrap: pretty;
}
.t-small {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
.t-mono {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.t-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

/* Layout */
.wrap {
  width: 100%;
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--space-10) 0;
  position: relative;
}
.section--tight { padding: var(--space-9) 0; }
.section--invert {
  background: var(--bg-invert);
  color: var(--ink-invert);
}
.section--invert .t-body { color: rgba(255,255,255,0.7); }
.section--invert .t-eyebrow { color: rgba(255,255,255,0.55); }
.section--invert .t-mono { color: rgba(255,255,255,0.55); }
.section--invert .t-h2,
.section--invert .t-h1,
.section--invert .t-h3 { color: #fff; }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}
@media (max-width: 900px) {
  .grid-12 { grid-template-columns: repeat(6, 1fr); }
}

.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-12 { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .col-2, .col-3, .col-4, .col-5, .col-6 { grid-column: span 6; }
  .col-7, .col-8, .col-9, .col-10 { grid-column: span 6; }
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 999px;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: #fff;
  margin: -3.5px 0 0 -3.5px;
  transition: opacity 0.2s ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.7);
  margin: -17px 0 0 -17px;
  transition: width 0.22s var(--ease), height 0.22s var(--ease),
              margin 0.22s var(--ease), opacity 0.2s ease,
              background 0.22s ease, border-color 0.22s ease;
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  background: rgba(255,255,255,0.08);
}
.cursor-ring.is-press { transform: scale(0.7); }
.cursor-ring.is-text {
  width: 4px; height: 28px;
  margin: -14px 0 0 -2px;
  border-radius: 1px;
  background: #fff;
  border: 0;
}
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  gap: 24px;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
              border-color 0.35s var(--ease), padding 0.3s var(--ease), top 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(245,243,238,0.97);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(6,29,51,0.06);
  padding-top: 12px; padding-bottom: 12px;
}
:root[data-mode="dark"] .nav--scrolled {
  background: rgba(10,19,32,0.96);
}
.nav--invert {
  color: #fff;
}
.nav--invert .nav-link { color: rgba(255,255,255,0.85); }
.nav--invert .nav-link:hover { color: #fff; }
.nav--invert .nav-logo-text { color: #fff; }
.nav--invert .nav-cta {
  background: #fff; color: var(--gp-navy-900);
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img { height: 104px; width: auto; max-width: none; transition: height 0.35s var(--ease); display: block; }
.nav--scrolled .nav-brand img { height: 76px; }
@media (max-width: 900px) {
  .nav-brand img { height: 72px; }
  .nav--scrolled .nav-brand img { height: 58px; }
}
@media (max-width: 500px) {
  .nav-brand img { height: 60px; }
  .nav--scrolled .nav-brand img { height: 48px; }
}

/* Mid-range desktop: keep logo + tabs + CTA from crowding */
@media (min-width: 901px) and (max-width: 1080px) {
  .nav-brand img { height: 76px; }
  .nav--scrolled .nav-brand img { height: 62px; }
  .nav-link { padding: 8px 12px; font-size: 13px; }
  .nav { gap: 14px; }
}

/* Adjust nav padding to accommodate larger logo */
.nav { padding-top: 12px; padding-bottom: 12px; }
.nav--scrolled { padding-top: 8px; padding-bottom: 8px; }

/* Hide the "logo-text" since the new logo is a full lockup with text inside */
.nav-logo-text, .nav-logo-sub { display: none; }

/* Invert logo when on dark hero (use gray variant — already light enough) */
.nav--invert .nav-brand img {
  /* The gray-text variant is visible on dark, no filter needed.
     But we still want strong contrast — soft brighten. */
  filter: brightness(1.0);
}
.nav-logo-text {
  font-family: var(--f-display);
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  line-height: 1; color: var(--ink);
}
.nav-logo-sub {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); line-height: 1; margin-top: 4px;
}

.nav-links {
  display: flex; align-items: center;
  gap: 4px;
  background: rgba(20,20,19,0.04);
  padding: 4px;
  border-radius: var(--r-pill);
}
:root[data-mode="dark"] .nav-links { background: rgba(255,255,255,0.06); }
.nav--invert:not(.nav--scrolled) .nav-links { background: rgba(255,255,255,0.1); }
@media (max-width: 900px) { .nav-links { display: none; } }
.nav-link {
  position: relative;
  padding: 9px 17px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: color 0.2s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: rgba(20,20,19,0.06); }
:root[data-mode="dark"] .nav-link:hover { background: rgba(255,255,255,0.08); }
.nav-link.is-active {
  color: #fff;
  background: var(--gp-navy-900);
}
.nav-link.is-active:hover { background: var(--gp-navy-800); color: #fff; }
.nav-link.is-active::before,
.nav-link.is-active::after { content: none; }

/* On dark hero (nav--invert, not scrolled) */
.nav--invert:not(.nav--scrolled) .nav-link { color: rgba(255,255,255,0.82); }
.nav--invert:not(.nav--scrolled) .nav-link:hover { color: #fff; background: rgba(255,255,255,0.14); }
.nav--invert:not(.nav--scrolled) .nav-link.is-active { background: var(--accent); color: var(--gp-navy-900); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: var(--gp-navy-900);
  border-radius: var(--r-pill);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px -4px rgba(232,178,59,0.5);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--accent-deep); color: #fff; box-shadow: 0 8px 20px -6px rgba(200,145,36,0.6); }
.nav-cta .arr { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.nav-cta:hover .arr { transform: translate(2px, -2px); }
.nav--invert .nav-cta { background: var(--accent); color: var(--gp-navy-900); }
.nav--invert .nav-cta:hover { background: #fff; }

.nav-burger {
  display: none;
}
@media (max-width: 900px) {
  .nav-burger {
    display: inline-flex; flex-direction: column; gap: 5px;
    padding: 10px; margin-right: -8px;
  }
  .nav-burger span {
    width: 22px; height: 1.5px; background: currentColor; display: block;
    transition: transform 0.3s var(--ease);
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--gp-navy-900);
  color: #fff;
  z-index: 90;
  padding: 96px var(--gutter) var(--gutter);
  display: flex; flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu .mm-links { display: flex; flex-direction: column; }
.mobile-menu .mm-links a {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-display);
  font-size: clamp(28px, 8vw, 40px); font-weight: 700; letter-spacing: -0.02em;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  text-transform: uppercase;
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.mobile-menu .mm-links a:hover,
.mobile-menu .mm-links a.is-active { color: var(--accent); padding-left: 8px; }
.mobile-menu .mm-idx {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  width: 28px; flex-shrink: 0;
}
.mobile-menu .mm-label { flex: 1; }
.mobile-menu .mm-arr { width: 20px; height: 20px; opacity: 0.4; }
.mobile-menu .mm-foot {
  padding-top: var(--space-6);
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-menu .mm-foot .btn { justify-content: center; }
.mobile-menu .mm-contact {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.04em;
}
.mobile-menu .mm-contact a { color: rgba(255,255,255,0.7); }
.mobile-menu .mm-contact a:hover { color: var(--accent); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gp-navy-900);
  color: #fff;
}
.btn-primary:hover { background: var(--gp-navy-700); transform: translateY(-1px); }
.btn-accent {
  background: var(--accent);
  color: var(--gp-navy-900);
}
.btn-accent:hover { background: var(--accent-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-invert {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-invert:hover { background: #fff; color: var(--gp-navy-900); border-color: #fff; }
.btn-lg { padding: 18px 28px; font-size: 15px; }

.btn .arr {
  width: 16px; height: 16px;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arr { transform: translate(3px, -3px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  background: var(--gp-navy-900);
  color: #fff;
}
.hero-video, .hero-video-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-fallback {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(46,137,199,0.45), transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(232,178,59,0.18), transparent 55%),
    linear-gradient(180deg, #061d33 0%, #0a2a48 50%, #061d33 100%);
}
.hero-video-fallback::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 64px);
}
.hero-video-fallback::after {
  content: "REEL DE OBRA · GP";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,29,51,0.45) 0%, rgba(6,29,51,0.15) 35%, rgba(6,29,51,0.55) 75%, rgba(6,29,51,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 120px var(--gutter) var(--space-7);
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-top .tick { color: var(--accent); margin-right: 10px; }
.hero-coords {
  text-align: right;
}
.hero-coords .row { display: block; }

.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
  max-width: 18ch;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gutter);
  align-items: end;
}
@media (max-width: 900px) {
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-content { padding-top: 100px; }
}
.hero-tagline {
  font-size: 17px; line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}
.hero-cta-row {
  display: flex; gap: 12px; align-items: center; margin-top: var(--space-5);
  flex-wrap: wrap;
}

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-6);
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: var(--space-5);
}
.hero-stat .n {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat .n .plus { color: var(--accent); }
.hero-stat .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2.4s var(--ease) infinite;
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0.2); transform-origin: top; opacity: 0.2; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--gp-navy-900);
  color: rgba(255,255,255,0.7);
  padding: 0 0 var(--space-5);
}
/* CTA band */
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: ""; position: absolute; right: -8%; top: -60%;
  width: 50%; height: 220%;
  background: radial-gradient(closest-side, rgba(232,178,59,0.14), transparent);
  pointer-events: none;
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap;
  position: relative;
}
.footer-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
  margin: 16px 0 0; color: #fff;
}
.footer-cta h2 em { font-style: normal; color: var(--accent); }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1.8fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.4fr);
  gap: var(--gutter);
  padding: var(--space-8) 0 var(--space-7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid > div { min-width: 0; }
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-contact a { overflow-wrap: anywhere; }
.footer h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-4);
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer a:hover { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 34ch;
  margin: var(--space-4) 0 var(--space-5);
  line-height: 1.6;
}
.footer-brand img { height: 76px; width: auto; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.footer-social a:hover {
  background: var(--accent); color: var(--gp-navy-900); border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-contact { gap: 16px !important; }
.footer-contact li { display: flex; flex-direction: column; gap: 3px; }
.footer-contact .fc-lbl {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-5);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   Image placeholders (striped)
   ============================================================ */
.img-ph {
  position: relative;
  overflow: hidden;
  background: var(--bg-sunken);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(20,20,19,0.045) 0 10px,
    transparent 10px 20px
  );
  border: 1px solid var(--line);
}
.img-ph::after {
  content: attr(data-label);
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg-elev);
  padding: 4px 8px;
  border: 1px solid var(--line);
}
.img-ph--dark {
  background: rgba(255,255,255,0.04);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0 10px,
    transparent 10px 20px
  );
  border-color: rgba(255,255,255,0.08);
}
.img-ph--dark::after {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.08);
}

/* ============================================================
   Stats / Counters
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-cell {
  padding: var(--space-6) var(--space-5);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .n {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-cell .plus, .stat-cell .pct { color: var(--accent); font-size: 0.55em; }
.stat-cell .l {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: var(--space-4);
}
.stat-cell .meta {
  margin-top: var(--space-3);
  font-size: 13px; color: var(--ink-2);
  line-height: 1.5;
}
.stat-cell .idx {
  position: absolute; top: var(--space-4); right: var(--space-4);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-4);
}

/* ============================================================
   Section header
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--gutter);
  align-items: end;
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-7);
}
@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: var(--space-4); }
}
.sec-head .eyebrow-stack { display: flex; flex-direction: column; gap: var(--space-3); }
.sec-head .actions { display: flex; gap: 8px; justify-content: flex-end; align-items: center; }
@media (max-width: 900px) { .sec-head .actions { justify-content: flex-start; } }

/* ============================================================
   Method cards (scroll-driven storytelling)
   ============================================================ */
.method-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: stretch;
}
@media (max-width: 900px) {
  .method-stage { grid-template-columns: 1fr; }
}
.method-sticky {
  position: sticky;
  top: 100px;
  height: calc(100vh - 140px);
  min-height: 480px;
  max-height: 720px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.method-canvas {
  position: relative;
  width: 100%; height: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  overflow: hidden;
}
.method-frame {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.method-frame.is-active { opacity: 1; }

.method-list {
  display: flex; flex-direction: column;
  gap: var(--space-7);
  padding: var(--space-7) 0;
}
.method-item {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  display: flex; gap: var(--space-5);
  transition: opacity 0.4s, padding 0.4s;
  opacity: 0.4;
}
.method-item.is-active { opacity: 1; }
.method-item .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  min-width: 40px;
  padding-top: 8px;
}
.method-item.is-active .num { color: var(--accent); }
.method-item h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 var(--space-3);
}
.method-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 44ch;
}
.method-item ul {
  list-style: none; padding: 0; margin: var(--space-4) 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.method-item ul li {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  color: var(--ink-3);
}

/* ============================================================
   Project cards
   ============================================================ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  row-gap: var(--space-8);
}
.project-card {
  grid-column: span 6;
  display: flex; flex-direction: column;
  gap: var(--space-4);
  position: relative;
  cursor: none;
}
.project-card:nth-child(3n+1) { grid-column: span 7; }
.project-card:nth-child(3n+2) { grid-column: span 5; }
.project-card:nth-child(3n+3) { grid-column: span 12; }
@media (max-width: 900px) {
  .project-card,
  .project-card:nth-child(3n+1),
  .project-card:nth-child(3n+2),
  .project-card:nth-child(3n+3) { grid-column: span 6; }
}
.project-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
}
.project-card:nth-child(3n+3) .project-media { aspect-ratio: 21 / 9; }
.project-media img,
.project-media .img-ph {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.project-card:hover .project-media img,
.project-card:hover .project-media .img-ph {
  transform: scale(1.03);
}
.project-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: var(--gp-navy-900);
  padding: 5px 9px;
  z-index: 2;
}
.project-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-4);
}
.project-meta h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600; letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0;
}
.project-meta .arr {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.project-card:hover .project-meta .arr {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: rotate(-45deg);
}
.project-info {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* ============================================================
   Page transition
   ============================================================ */
.page-enter {
  animation: page-in 0.6s var(--ease-out) both;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in {
  opacity: 1; transform: translateY(0);
}

/* Marquee */
.marquee {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-5) 0;
}
.marquee-track {
  display: flex; gap: var(--space-7);
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink-4);
  display: inline-flex; align-items: center; gap: var(--space-7);
}
.marquee-track .star {
  width: 14px; height: 14px;
  background: var(--accent);
  transform: rotate(45deg);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Inputs */
.input, .textarea, .select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0;
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
  cursor: none;
}
@media (max-width: 900px) { .input, .textarea, .select { cursor: text; } }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--accent);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-4); }
.field-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
  display: block;
}
.field { display: flex; flex-direction: column; gap: 4px; }

/* Map placeholder */
.map-ph {
  position: relative;
  aspect-ratio: 16/11;
  background: var(--gp-navy-900);
  overflow: hidden;
  color: #fff;
}
.map-ph svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(232,178,59,0.2), 0 0 0 12px rgba(232,178,59,0.08);
}
.map-pin::after {
  content: attr(data-label);
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* Tabs */
.tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: var(--space-6);
}
.tab {
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--ink-2);
  transition: all 0.2s;
}
.tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

/* Gallery masonry */
.gallery {
  columns: 3;
  column-gap: var(--gutter);
}
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 600px) { .gallery { columns: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--gutter);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.gallery-item:nth-child(odd)  .img-ph { aspect-ratio: 4/5; }
.gallery-item:nth-child(even) .img-ph { aspect-ratio: 1/1; }
.gallery-item:nth-child(3n)   .img-ph { aspect-ratio: 4/3; }
.gallery-item:nth-child(5n)   .img-ph { aspect-ratio: 3/4; }
.gallery-item .cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-4);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(to top, rgba(6,29,51,0.85), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .cap { opacity: 1; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 900px) { .wa-float { bottom: 16px; right: 16px; } }

/* Accent helpers */
.accent { color: var(--accent); }
.b-accent { background: var(--accent); }
.line-top { border-top: 1px solid var(--line); }
.line-bottom { border-bottom: 1px solid var(--line); }

/* About / Nosotros */
.about-hero {
  padding: 160px var(--gutter) var(--space-9);
  background: var(--bg);
  position: relative;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 60px 1fr;
  gap: var(--space-5);
}
.value-card .vnum {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-3); padding-top: 8px;
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
}
.value-card p { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.55; }

/* Timeline */
.timeline {
  padding: var(--space-6) 0;
  position: relative;
}
.tl-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.tl-row .yr {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--accent);
}
.tl-row h4 {
  font-family: var(--f-display);
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0;
}
.tl-row p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* Sector chips */
.sector-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-cell {
  padding: var(--space-6);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: background 0.25s;
}
.sector-cell:hover { background: var(--bg-elev); }
.sector-cell:nth-child(2n) { border-right: none; }
@media (max-width: 900px) { .sector-cell { border-right: none; } }
.sector-cell .lbl {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
}
.sector-cell h3 {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  margin: 0;
}
.sector-cell ul {
  list-style: none; padding: 0; margin: var(--space-2) 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; color: var(--ink-2);
}
.sector-cell ul li::before {
  content: "—  "; color: var(--ink-4);
}

/* Process steps small */
.proc {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid var(--line);
}
@media (max-width: 900px) { .proc { grid-template-columns: 1fr 1fr; } }
.proc-cell {
  padding: var(--space-5);
  border-right: 1px solid var(--line);
  position: relative;
}
.proc-cell:last-child { border-right: none; }
.proc-cell .n {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--accent);
}
.proc-cell h4 {
  font-family: var(--f-display);
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
  margin: var(--space-3) 0 var(--space-2);
}
.proc-cell p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.45; }

/* CTA strip */
.cta-strip {
  background: var(--gp-navy-900);
  color: #fff;
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; right: -10%; top: -50%;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(232,178,59,0.18), transparent);
}
.cta-strip-inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: var(--space-7); align-items: end;
  position: relative;
}
@media (max-width: 900px) { .cta-strip-inner { grid-template-columns: 1fr; } }
.cta-strip h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}
.cta-strip h2 em { font-style: normal; color: var(--accent); }
.cta-strip p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 40ch; margin: 0; }

/* Logo / brand row */
.brand-row {
  display: flex; align-items: center; gap: var(--space-7);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.brand-row .label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
}
.brand-row .pill {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}

/* Page header (generic) */
.page-head {
  padding: 140px var(--gutter) var(--space-8);
}
.page-head .wrap-inner { display: grid; grid-template-columns: 5fr 7fr; gap: var(--gutter); align-items: end; }
@media (max-width: 900px) { .page-head .wrap-inner { grid-template-columns: 1fr; } }
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}
.page-head p { color: var(--ink-2); font-size: 18px; line-height: 1.5; max-width: 50ch; }
.page-head .breadcrumb {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: var(--space-5);
}
.page-head .breadcrumb .sep { margin: 0 8px; color: var(--ink-4); }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  padding: var(--space-6);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: var(--space-4);
  background: var(--bg);
  position: relative;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  min-height: 280px;
}
.service-card:hover {
  background: var(--bg-elev);
}
.service-card .s-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.service-card .s-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
  background: var(--bg);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  color: var(--ink);
}
.service-card:hover .s-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--gp-navy-900);
}
.service-card h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.service-card .s-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-card .s-tags li {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 8px;
  background: var(--bg-sunken);
  border: 1px solid var(--line);
}
.service-card .s-arrow {
  position: absolute; top: var(--space-6); right: var(--space-6);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  transition: color 0.2s, transform 0.25s var(--ease);
}
.service-card:hover .s-arrow {
  color: var(--accent);
  transform: translate(3px, -3px);
}

/* ============================================================
   PROCESS — 5 steps prominent
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 1000px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  padding: var(--space-7) var(--space-5);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative;
  background: var(--bg);
  transition: background 0.3s var(--ease);
  min-height: 260px;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-elev); }
.process-step .ps-num {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink-4);
  line-height: 0.9;
  transition: color 0.3s;
}
.process-step:hover .ps-num { color: var(--accent); }
.process-step .ps-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.process-step h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0;
}
.process-step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.process-step::after {
  content: "→";
  position: absolute;
  top: var(--space-7); right: -10px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--ink-3);
  font-size: 16px;
  z-index: 2;
}
.process-step:last-child::after { display: none; }
@media (max-width: 1000px) {
  .process-step::after { display: none; }
}

/* ============================================================
   Contact section embedded in home
   ============================================================ */
.contact-home {
  background: var(--gp-navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-home::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(46,137,199,0.18), transparent 70%);
  pointer-events: none;
}
.contact-home-inner {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: var(--space-8);
  position: relative;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-home-inner { grid-template-columns: 1fr; }
}
.contact-home h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}
.contact-home h2 em { font-style: normal; color: var(--accent); }
.contact-home .ch-info { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-5); }
.contact-home .ch-info-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px; align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.contact-home .ch-info-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-home .ch-info-row .ic {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-home .ch-info-row a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.contact-home .ch-info-row a:hover { color: var(--accent); }

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
}
.contact-card .input,
.contact-card .textarea {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.18);
}
.contact-card .input:focus,
.contact-card .textarea:focus {
  border-bottom-color: var(--accent);
}
.contact-card .input::placeholder,
.contact-card .textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-card .field-label { color: rgba(255,255,255,0.55); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); }

/* Update hero CTA stacking */
.hero-cta-row .btn { margin: 0; }
