/* ===========================================================
   GRUPO ICIS · SHARED DESIGN SYSTEM
   Brandbook v1.0 · Marzo 2026
   Shared across sub-pages (Servicios, Industrias, Experiencia)
   =========================================================== */

:root {
  /* Primary Palette */
  --primary-dark: #092235;
  --primary-green: #1f6f5c;

  /* Secondary */
  --secondary-light: #e6eaed;
  --secondary-gray: #F2F2F2;
  --secondary-black: #0F0F0F;

  /* Extended */
  --ext-1: #0d3350;
  --ext-2: #1a4a6b;
  --ext-3: #2a8f75;
  --ext-4: #34a88b;
  --ext-5: #e8f5f0;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --border: #e5e7eb;
  --muted: #6b7280;
  --text: #0f1824;

  /* Typography */
  --font-display: 'Fraunces', 'Finzer', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;

  /* Spacing scale (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Max width */
  --max-width: 1280px;
  --gutter: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--primary-green);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; color: var(--primary-dark); }
h1 { font-size: clamp(40px, 5.4vw, 72px); letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -0.01em; }
h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.01em; }
h4 { font-size: 20px; font-weight: 500; }
h5 { font-size: 14px; font-weight: 600; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,.9); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary-dark); color: var(--white); }
.btn-primary:hover { background: var(--ext-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--primary-dark); border-color: var(--primary-dark); }
.btn-ghost:hover { background: var(--primary-dark); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ SLOGAN BAR ============ */
.slogan-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.92);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  z-index: 101;
  overflow: hidden;
}
.slogan-bar::before, .slogan-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
}
.slogan-bar::before { left: 0; background: linear-gradient(90deg, var(--primary-dark) 30%, transparent); z-index: 2; }
.slogan-bar::after { right: 0; background: linear-gradient(270deg, var(--primary-dark) 30%, transparent); z-index: 2; }
.slogan-bar .container { display: flex; justify-content: center; align-items: center; gap: 16px; position: relative; }
.slogan-bar .dot {
  width: 6px; height: 6px;
  background: var(--ext-4);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52,168,139,.7);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,168,139,.6); }
  70% { box-shadow: 0 0 0 10px rgba(52,168,139,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,168,139,0); }
}
.slogan-bar .slogan { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,.95); }
.slogan-bar .slogan em { font-style: normal; color: var(--ext-4); font-weight: 700; }

/* ============ HEADER / NAV ============ */
.header {
  position: sticky;
  top: 39px;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; padding-bottom: 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--primary-dark); }
.logo-img { display: block; height: 38px; width: auto; }
.logo-footer .logo-img { height: 42px; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--primary-dark);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.logo-mark::before {
  content: ''; position: absolute; inset: 8px;
  background: linear-gradient(135deg, var(--ext-4) 0%, var(--primary-green) 100%);
  border-radius: 1px;
}
.logo-mark::after {
  content: 'I';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  z-index: 1;
}
.logo-text strong { display: block; font-size: 18px; letter-spacing: 0.04em; font-weight: 600; }
.logo-text small { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
nav > ul > li { position: relative; }
nav > ul > li > a, nav > ul > li > span.nav-label {
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s;
}
nav > ul > li > a:hover, nav > ul > li > span.nav-label:hover { background: var(--off-white); color: var(--primary-green); }
nav > ul > li.has-dropdown > span.nav-label::after {
  content: ''; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .25s;
}
nav > ul > li.has-dropdown:hover > span.nav-label::after { transform: rotate(225deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(9, 34, 53, 0.12);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  z-index: 10;
}
nav > ul > li.has-dropdown:hover > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 3px;
  transition: background .2s;
}
.dropdown a:hover { background: var(--off-white); }
.dropdown a strong { display: block; font-size: 14px; font-weight: 600; color: var(--primary-dark); margin-bottom: 2px; }
.dropdown a small { display: block; font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb .container { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary-green); }
.breadcrumb .sep { color: rgba(107,114,128,.5); }
.breadcrumb .current { color: var(--primary-dark); font-weight: 500; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 80% 20%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 20%, black 30%, transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; right: -120px; top: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,168,139,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 920px; }
.page-hero .eyebrow { color: var(--ext-4); }
.page-hero .eyebrow::before { background: var(--ext-4); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: var(--space-3);
}
.page-hero h1 em { font-style: italic; color: var(--ext-4); font-weight: 400; }
.page-hero .page-lede {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  max-width: 720px;
  font-weight: 300;
}

/* ============ SECTION SHARED ============ */
section { padding: var(--space-7) 0; }
section.tight { padding: var(--space-6) 0; }

.section-intro { margin-bottom: var(--space-6); position: relative; }
.section-intro-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.section-intro-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-intro-head h2 em { font-style: italic; color: var(--primary-green); font-weight: 400; }
.head-accent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-top: 6px;
}
.head-accent .bar { width: 48px; height: 2px; background: var(--primary-green); display: block; }
.head-accent span:not(.bar) {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-intro-body {
  max-width: 720px;
  padding-left: 32px;
  position: relative;
}
.section-intro-body::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 2px;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-dark) 18%, var(--primary-green) 18%, var(--primary-green) 100%);
}
.section-intro-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-green);
  transition: gap .25s;
}
.inline-link:hover { gap: 14px; }
.inline-link .arrow { transition: transform .25s; }
.inline-link:hover .arrow { transform: translateX(4px); }

/* ============ CONTENT PATTERNS ============ */
.lead-p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
  max-width: 780px;
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.body-p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  max-width: 780px;
  margin-bottom: var(--space-3);
}

/* Feature list (Alcance) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin: var(--space-4) 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 2px solid var(--primary-green);
  border-radius: 2px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  transition: transform .25s, box-shadow .25s;
}
.feature-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(9,34,53,.06);
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-top: 9px;
}

/* Capability grid (services hub) */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.cap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--space-4);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  text-decoration: none;
  color: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(9,34,53,.08);
  border-color: var(--primary-green);
}
.cap-card .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ext-4);
  font-weight: 300;
  margin-bottom: var(--space-3);
  display: flex; align-items: center; gap: 12px;
}
.cap-card .num::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.cap-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.cap-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--space-3);
  flex: 1;
}
.cap-card .link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: gap .25s;
}
.cap-card:hover .link { gap: 14px; }

/* Photo placeholder (editorial image block) */
.photo-placeholder {
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(45deg, rgba(9,34,53,.03) 0 12px, transparent 12px 24px),
    var(--secondary-gray);
  border: 1.5px dashed rgba(9,34,53,.18);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  border: 1.5px solid rgba(9,34,53,.18);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(9,34,53,.3) 0 3px, transparent 3px),
    linear-gradient(transparent 60%, rgba(9,34,53,.3) 60% 62%, transparent 62%);
  background-size: 100% 100%;
}
.photo-placeholder small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.photo-placeholder .caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-size: 12px;
  color: rgba(9,34,53,.55);
  background: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: 2px;
  text-align: left;
  backdrop-filter: blur(4px);
}

/* ------------------------------------------------------------------ */
/* Photo figure — real photography, editorial frame treatment          */
/* ------------------------------------------------------------------ */
.photo-figure {
  position: relative;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: var(--primary-dark);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(9,34,53,.05), 0 18px 40px -20px rgba(9,34,53,.28);
  isolation: isolate;
}
.photo-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}
.photo-figure.is-portrait img { aspect-ratio: 4 / 5; }
.photo-figure.is-square   img { aspect-ratio: 1 / 1; }
.photo-figure.is-43       img { aspect-ratio: 4 / 3; }
.photo-figure.is-wide     img { aspect-ratio: 21 / 9; }
.photo-figure:hover img { transform: scale(1.035); }

/* unifying brand grade — barely-there cool wash so photos sit in the palette */
.photo-figure::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, rgba(31,111,92,.05) 0%, rgba(9,34,53,.12) 100%);
  pointer-events: none;
}
/* green accent edge — echoes the .content-card left-rule motif */
.photo-figure::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 52px;
  background: var(--primary-green);
  z-index: 3;
}
.photo-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.82);
  background: linear-gradient(180deg, transparent 0%, rgba(9,34,53,.55) 45%, rgba(9,34,53,.92) 100%);
  padding: 40px 16px 14px;
}
.photo-figure figcaption strong {
  display: block;
  font-weight: 600;
  color: #fff;
  letter-spacing: .005em;
  margin-bottom: 1px;
}
/* spacing helper when a figure sits inside a prose column */
.photo-figure.inflow { margin: var(--space-4) 0; }

/* Project reference card */
.project-ref {
  background: linear-gradient(135deg, var(--ext-1) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--space-5);
  border-radius: 3px;
  margin: var(--space-5) 0;
  position: relative;
  overflow: hidden;
}
.project-ref::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(52,168,139,0.14) 0%, transparent 70%);
}
.project-ref .ref-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ext-4); margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px;
}
.project-ref .ref-label::before { content: ''; width: 24px; height: 1px; background: var(--ext-4); }
.project-ref h3 { color: var(--white); font-size: 26px; margin-bottom: var(--space-2); line-height: 1.2; }
.project-ref p { color: rgba(255,255,255,.78); font-size: 15.5px; line-height: 1.6; max-width: 720px; }
.project-ref .ref-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ext-4); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: var(--space-3); transition: gap .25s;
}
.project-ref .ref-link:hover { gap: 16px; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,168,139,0.12) 0%, transparent 60%);
}
.cta-band .container { position: relative; z-index: 2; display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-5); align-items: center; }
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; letter-spacing: -0.01em; }
.cta-band h2 em { font-style: italic; color: var(--ext-4); font-weight: 400; }
.cta-band p { color: rgba(255,255,255,.72); font-size: 16px; margin-top: 16px; max-width: 620px; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-band .btn-primary { background: var(--ext-4); color: var(--primary-dark); }
.cta-band .btn-primary:hover { background: var(--ext-3); color: var(--white); }
.cta-band .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.3); }
.cta-band .btn-ghost:hover { background: var(--white); color: var(--primary-dark); }

/* ============ RELATED CARDS ============ */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.related-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: var(--space-4);
  border-radius: 2px;
  transition: all .3s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-card:hover { background: var(--white); border-color: var(--primary-green); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(9,34,53,.08); }
.related-card .tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary-green); margin-bottom: 12px;
}
.related-card h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; line-height: 1.2; color: var(--primary-dark); }
.related-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.related-card .arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary-green);
}
.related-card:hover .arrow-link { gap: 14px; }

/* ============ FOOTER ============ */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
  padding: var(--space-6) 0 var(--space-4);
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--ext-4) 35%, var(--ext-4) 65%, transparent 100%);
  opacity: 0.5;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: var(--space-5); padding-bottom: var(--space-5); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col.brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-top: var(--space-3); max-width: 340px; }
.footer-col h5 {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); margin-bottom: var(--space-3); position: relative; padding-bottom: 10px;
}
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 1px; background: var(--ext-4); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col ul a:hover { color: var(--ext-4); }
.footer-contact-item { margin-bottom: var(--space-2); font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); }
.footer-contact-item span { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer-contact-item a { color: rgba(255,255,255,.85); }
.footer-contact-item a:hover { color: var(--ext-4); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-3); flex-wrap: wrap; gap: var(--space-2); }
.footer-bottom small { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; align-items: center; gap: 14px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-legal a:hover { color: var(--ext-4); }
.footer-legal .divider { width: 1px; height: 10px; background: rgba(255,255,255,.15); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: rgba(255,255,255,.5); transition: all .2s;
}
.socials a:hover { border-color: var(--ext-4); color: var(--ext-4); transform: translateY(-2px); }
.socials svg { width: 14px; height: 14px; }

/* ============ CONTENT CARD (bordered wrapper for detail-page context blocks) ============ */
.content-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary-green);
  border-radius: 3px;
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-4);
  position: relative;
}
.content-card > h2:first-child,
.content-card > h3:first-child { margin-top: 0; }
.content-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--primary-dark);
  margin: 0 0 var(--space-2);
}
.content-card h2 em { font-style: italic; color: var(--primary-green); font-weight: 400; }
.content-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.content-card p:last-child { margin-bottom: 0; }
.content-card .eyebrow {
  color: var(--primary-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.content-card .eyebrow::before {
  content: ''; display: inline-block; width: 22px; height: 1px;
  background: var(--primary-green); margin-right: 10px; vertical-align: middle;
}
.content-card + .content-card { margin-top: var(--space-3); }

/* ============ PAGE HERO · LEFT-ALIGNED VARIANT (hub pages) ============ */
.page-hero.hero-left .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero.hero-left h1 { max-width: 940px; }
.page-hero.hero-left .page-lede { max-width: 680px; }

/* Mobile nav trigger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--primary-dark);
  transition: transform .25s, opacity .25s, top .25s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .section-intro-head { grid-template-columns: 1fr; gap: var(--space-3); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .content-card { padding: var(--space-3) var(--space-4); }

  /* Mobile nav */
  .nav-toggle { display: block; }
  nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 96px var(--gutter) 40px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 90;
    overflow-y: auto;
  }
  nav.nav-open { transform: translateX(0); }
  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  nav > ul > li {
    border-bottom: 1px solid var(--border);
    width: 100%;
    position: relative;
  }
  nav > ul > li > a,
  nav > ul > li > span.nav-label {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 500;
    border-radius: 0;
  }
  nav > ul > li.has-dropdown > span.nav-label::after { margin-left: auto; float: right; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: max-height .3s ease, padding .3s ease;
  }
  nav > ul > li.has-dropdown.open > .dropdown { max-height: 800px; padding: 8px 16px 16px; }
  body.nav-open-lock { overflow: hidden; }
}
@media (max-width: 768px) {
  .nav-cta .btn-sm { padding: 10px 14px; font-size: 12px; }
  .nav-cta .btn-sm .arrow { display: none; }
}
@media (max-width: 640px) {
  .cap-grid, .feature-list, .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .slogan-bar .slogan { font-size: 10px; letter-spacing: 0.22em; }
  .content-card { padding: var(--space-3); }
  .logo-text small { display: none; }
  .logo-img { height: 32px; }
  .logo-footer .logo-img { height: 36px; }
}

/* ------------------------------------------------------------------ */
/* Proof band — full-bleed photographic section with overlaid statement */
/* ------------------------------------------------------------------ */
.proof-band {
  position: relative;
  padding: var(--space-7) 0;
  background: var(--primary-dark);
  overflow: hidden;
}
.proof-band .proof-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: 0;
}
.proof-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,34,53,.80) 0%, rgba(9,34,53,.90) 100%),
    repeating-linear-gradient(45deg, transparent 0 3px, rgba(255,255,255,.03) 3px 4px);
}
.proof-band .container { position: relative; z-index: 2; }
.proof-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
}
.proof-band.is-statement .proof-band-inner { grid-template-columns: 1fr; }
.proof-band .eyebrow { color: var(--ext-4); }
.proof-band h2 {
  color: var(--white);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.18;
  margin-top: 12px;
  max-width: 720px;
}
.proof-band h2 em { font-style: italic; color: var(--ext-4); font-weight: 400; }
.proof-band-stats {
  display: flex;
  gap: var(--space-5);
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: var(--space-5);
}
.proof-band-stat .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--white);
  line-height: 1;
  font-weight: 500;
}
.proof-band-stat .num sup { color: var(--primary-green); font-size: 52%; padding-left: 2px; }
.proof-band-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-top: 10px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .proof-band-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .proof-band-stats {
    border-left: 0; padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.16); padding-top: var(--space-3);
  }
}

/* Honeypot — spam trap, visually removed but present in the DOM */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* Form confirmation toast */
.icis-toast {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 300;
  background: var(--primary-dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 3px;
  border-left: 3px solid var(--primary-green);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 14px 38px rgba(9,34,53,.32);
  max-width: 92vw;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.icis-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.icis-toast.error { border-left-color: #c0532f; }
.icis-toast strong { font-weight: 600; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d2 { transition-delay: .1s; }
.reveal.d3 { transition-delay: .2s; }
