:root {
  --navy: #092d63;
  --navy-deep: #061d42;
  --blue: #0b5fc6;
  --gold: #e9bb24;
  --gold-soft: #fff8dc;
  --ink: #10233f;
  --muted: #5f6f84;
  --line: #dbe5f0;
  --surface: #f4f8fc;
  --white: #fff;
  --focus-dark: #074b91;
  --focus-light: #fff;
  --shadow: 0 18px 45px rgba(9, 45, 99, .11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.review-banner {
  padding: 8px 18px;
  color: #2d2508;
  background: var(--gold);
  font-size: .76rem;
  font-weight: 850;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gtm-frame { display: none; visibility: hidden; }

a { color: inherit; }

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(22px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  position: relative;
  z-index: 20;
}

.brand { display: inline-flex; }
.brand img { display: block; width: 190px; max-height: 54px; object-fit: contain; }

.header-cta {
  padding: 11px 18px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid var(--navy);
  border-radius: 999px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-nav a {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, .5fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  min-height: 650px;
  padding: clamp(70px, 10vw, 145px) clamp(22px, 8vw, 118px) clamp(64px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(233, 187, 36, .30), transparent 20%),
    linear-gradient(135deg, #fff 0 56%, #edf4fb 56% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(44vw, 620px);
  height: 8px;
  background: var(--gold);
}

.hero-copy { position: relative; z-index: 1; max-width: 850px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.05; }
h1 { margin-bottom: 24px; max-width: 850px; font-size: clamp(2.75rem, 6.1vw, 5.65rem); letter-spacing: -.052em; }
h2 { margin-bottom: 20px; font-size: clamp(2.1rem, 4.5vw, 4.25rem); letter-spacing: -.04em; }
h3 { margin-bottom: 14px; font-size: 1.55rem; letter-spacing: -.02em; }

.hero-intro {
  max-width: 720px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 10px 24px rgba(9, 45, 99, .18); }
.button-secondary { color: var(--navy); background: var(--white); border: 1px solid var(--line); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 27px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 750;
  list-style: none;
}

.trust-list li::before { content: "•"; margin-right: 9px; color: var(--gold); }

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 6px;
  background: var(--gold);
}

.panel-number { display: block; margin-bottom: 40px; color: var(--gold); font-size: .82rem; font-weight: 900; }
.hero-panel p { margin: 0; font-size: 1.08rem; line-height: 1.6; }

.solutions { padding: clamp(70px, 9vw, 130px) clamp(22px, 8vw, 118px); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.solution-card {
  grid-column: span 2;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 35, 63, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.solution-grid:not(.solution-grid-six) .solution-card:nth-child(4) { grid-column: 2 / span 2; }
.solution-grid-six .solution-card { grid-column: span 2; }
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-index { margin-bottom: auto; color: var(--blue); font-size: .77rem; font-weight: 900; }
.solution-card p { min-height: 78px; margin: 0 0 24px; color: var(--muted); line-height: 1.55; }
.solution-card a { color: var(--blue); font-weight: 850; text-decoration: none; }
.solution-card-accent { background: var(--gold-soft); border-color: #ecd46c; }

.preview-note {
  margin: 0 clamp(22px, 8vw, 118px) clamp(70px, 9vw, 130px);
  padding: clamp(38px, 6vw, 74px);
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 10px;
}

.preview-note h2 { max-width: 900px; color: var(--white); font-size: clamp(2rem, 4vw, 3.65rem); }
.preview-note p:last-child { max-width: 720px; margin-bottom: 0; color: #cdd9e8; font-size: 1.05rem; line-height: 1.6; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 8vw, 118px);
  color: #6d7c90;
  font-size: .84rem;
  border-top: 1px solid var(--line);
}

.site-footer > div { display: grid; gap: 8px; }
.site-footer strong { color: var(--navy); }
.footer-contact { text-align: right; }
.footer-contact a { color: var(--navy); text-decoration: none; }

.solution-hero {
  --solution-accent: var(--gold);
  --solution-foreground: var(--solution-accent);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, .8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: 660px;
  padding: clamp(52px, 6vw, 82px) clamp(22px, 8vw, 118px);
  color: #fff;
  background:
    linear-gradient(90deg, var(--solution-accent) 0 8px, transparent 8px),
    radial-gradient(circle at 80% 12%, rgba(37,112,189,.26), transparent 30%),
    var(--navy-deep);
}

.solution-hero-copy { max-width: 820px; }
.solution-hero h1 { color: #fff; font-size: clamp(2.75rem, 4.35vw, 4.65rem); }
.solution-hero .hero-intro { color: #c8d4e2; }
.solution-hero .eyebrow { color: var(--solution-foreground); }
.solution-hero .hero-actions { flex-wrap: nowrap; }
.solution-hero .button { padding-right: 16px; padding-left: 16px; font-size: .86rem; }
.solution-hero .button-primary { color: var(--navy-deep); background: var(--solution-foreground); }
.solution-hero .button-secondary { color: #fff; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.3); }

.solution-impresoras-industriales .solution-hero { --solution-foreground: #78c8f2; }
.solution-soluciones-integrales .solution-hero { --solution-foreground: #9bc6ff; }

.back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: #c2cfdf;
  font-size: .85rem;
  font-weight: 750;
  text-decoration: none;
}

.qualifier {
  margin: 28px 0 0;
  padding-left: 16px;
  color: #aebdd0;
  font-size: .87rem;
  line-height: 1.5;
  border-left: 3px solid var(--solution-accent);
}

.solution-visual {
  position: relative;
  min-height: 565px;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  background:
    radial-gradient(circle at 25% 30%, color-mix(in srgb, var(--solution-accent), white 40%) 0 13%, transparent 14%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
  box-shadow: 26px 28px 0 rgba(255,255,255,.055);
}

.solution-visual::before {
  content: "Material visual en preparación";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.solution-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.solution-visual figcaption { position: absolute; right: 15px; bottom: 13px; left: 15px; z-index: 2; padding: 8px 10px; color: #fff; background: rgba(6,29,66,.82); font-size: .68rem; text-align: center; border-radius: 4px; }
.solution-visual.image-missing figcaption { display: none; }

.problem-section {
  display: grid;
  grid-template-columns: 90px minmax(260px, .85fr) minmax(300px, .65fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: clamp(72px, 10vw, 140px) clamp(22px, 8vw, 118px);
  background: #eef3f8;
}

.problem-section h2 { color: var(--navy); font-size: clamp(2.2rem, 4vw, 4rem); }
.problem-section > p:last-child { margin: 47px 0 0; color: var(--muted); font-size: 1.1rem; line-height: 1.8; }
.section-number { margin: 0; color: var(--blue); font-size: 1rem; font-weight: 900; }

.product-section,
.industry-section { padding: clamp(72px, 10vw, 140px) clamp(22px, 8vw, 118px); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-height: 310px; padding: 32px; background: var(--surface); border-top: 5px solid var(--gold); }
.product-card > span { display: inline-block; margin-bottom: 76px; color: var(--blue); font-size: .78rem; font-weight: 900; }
.product-card p { color: var(--muted); line-height: 1.65; }

.benefits-section {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(360px, .7fr);
  gap: clamp(45px, 9vw, 140px);
  padding: clamp(72px, 9vw, 126px) clamp(22px, 8vw, 118px);
  background: #eef4f9;
}

.benefits-copy p:last-child { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; padding: 0; counter-reset: benefit; list-style: none; }
.benefit-list li { min-height: 130px; padding: 24px; color: var(--navy); background: #fff; font-weight: 850; line-height: 1.35; border: 1px solid var(--line); }
.benefit-list li::before { counter-increment: benefit; content: "0" counter(benefit); display: block; margin-bottom: 26px; color: var(--blue); font-size: .72rem; }

.industry-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 9vw, 140px); align-items: end; }
.industry-list { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-list span { padding: 13px 17px; color: var(--navy); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: .88rem; font-weight: 750; }

.brand-section {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(360px, 1fr);
  gap: clamp(40px, 9vw, 140px);
  align-items: center;
  padding: clamp(60px, 8vw, 105px) clamp(22px, 8vw, 118px);
  background: var(--surface);
}

.brand-section h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
.brand-section > div:first-child > p:last-child { color: var(--muted); line-height: 1.65; }
.brand-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-grid figure { min-width: 160px; flex: 1; margin: 0; padding: 24px; background: #fff; border: 1px solid var(--line); }
.brand-grid img { display: block; width: 100%; height: 58px; object-fit: contain; }
.brand-grid figcaption { margin-top: 12px; color: var(--muted); font-size: .7rem; text-align: center; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(420px, 1fr);
  gap: clamp(50px, 9vw, 130px);
  padding: clamp(72px, 10vw, 140px) clamp(22px, 8vw, 118px);
  color: #fff;
  background: var(--navy);
}

.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { color: #cfd9e7; font-size: 1.06rem; line-height: 1.7; }
.contact-assurance { display: grid; gap: 13px; margin: 34px 0; color: #fff; font-weight: 700; }
.contact-assurance span::first-letter { color: var(--gold); }

.whatsapp-panel { display: grid; gap: 7px; margin-top: 42px; padding: 22px; color: var(--navy); background: var(--gold); text-decoration: none; border-radius: 6px; }
.whatsapp-label { font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }

.lead-form { position: relative; padding: clamp(26px, 4vw, 44px); color: var(--ink); background: #fff; border-radius: 8px; box-shadow: 0 22px 60px rgba(0,0,0,.2); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; font-size: .84rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #bfccda; border-radius: 4px; font: inherit; font-weight: 500; }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field small, .consent-error { min-height: 16px; color: #a01f1f; font-size: .75rem; font-weight: 650; }
.field-full { margin-top: 18px; }
.consent-field { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin-top: 20px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.consent-field input { width: 18px; height: 18px; margin: 1px 0 0; }
.consent-field a { color: var(--blue); }
.form-submit { width: 100%; margin-top: 18px; border: 0; cursor: pointer; }
.form-submit[disabled] { cursor: wait; opacity: .65; }
.form-footnote { margin: 14px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.5; text-align: center; }
.form-status { display: none; margin-bottom: 18px; padding: 13px; font-size: .86rem; line-height: 1.5; border-radius: 4px; }
.form-status.is-error { display: block; color: #7c1717; background: #fff0f0; border: 1px solid #efbebe; }
.form-status.is-info { display: block; color: var(--navy); background: var(--gold-soft); border: 1px solid #ead36e; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.more-solutions { display: grid; grid-template-columns: .65fr 1fr; gap: 50px; padding: clamp(70px, 9vw, 120px) clamp(22px, 8vw, 118px); }
.more-links { display: grid; }
.more-links a { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--navy); font-weight: 850; text-decoration: none; border-bottom: 1px solid var(--line); }

.thank-you, .legal-content, .error-page { min-height: 68vh; padding: clamp(80px, 12vw, 170px) clamp(22px, 12vw, 180px); }
.thank-you h1, .legal-content h1, .error-page h1 { max-width: 980px; font-size: clamp(2.6rem, 6vw, 5.4rem); }
.thank-you > p:not(.eyebrow), .legal-content > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.12rem; line-height: 1.7; }
.legal-placeholder { max-width: 780px; margin: 35px 0; padding: 28px; color: #5a4a10; background: var(--gold-soft); border: 1px solid #ead36e; }

/* Portada visual v2 */
.home-page { background: #f7f8fa; }

.home-page .site-header {
  min-height: 88px;
  border-bottom-color: rgba(255,255,255,.13);
  box-shadow: 0 1px 0 rgba(9,45,99,.06);
}

.home-page .brand img { width: 205px; }

.home-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 88px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.home-hero-media,
.home-hero-overlay { position: absolute; inset: 0; }

.home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,18,43,.98) 0%, rgba(3,18,43,.90) 32%, rgba(3,18,43,.43) 60%, rgba(3,18,43,.08) 100%),
    linear-gradient(0deg, rgba(3,18,43,.82) 0%, transparent 34%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 64vw);
  padding: 92px 0 160px clamp(24px, 8vw, 126px);
}

.eyebrow-gold { color: var(--gold); }

.home-hero h1 {
  max-width: 800px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(3.35rem, 5.4vw, 6rem);
  line-height: .94;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.home-hero .hero-intro { max-width: 650px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.6vw, 1.35rem); }
.button-gold { color: #14233a; background: var(--gold); box-shadow: 0 14px 34px rgba(233,187,36,.23); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.46); background: rgba(5,27,61,.24); backdrop-filter: blur(10px); }

.home-proof {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 7vw, 112px);
  bottom: 0;
  left: clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
}

.home-proof > div { display: flex; gap: 18px; align-items: center; min-height: 92px; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.home-proof > div:first-child { padding-left: 0; }
.home-proof > div:last-child { border-right: 0; }
.home-proof strong { color: var(--gold); font-size: .72rem; letter-spacing: .12em; }
.home-proof span { font-size: .88rem; font-weight: 760; letter-spacing: .01em; }

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .62fr);
  gap: clamp(40px, 9vw, 150px);
  align-items: end;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 8vw, 126px) clamp(58px, 7vw, 92px);
  background: #f7f8fa;
}

.portfolio-intro h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(3rem, 5vw, 5.3rem); text-wrap: balance; }
.portfolio-intro > p { margin: 0 0 7px; color: var(--muted); font-size: 1.1rem; line-height: 1.75; }

.solution-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  padding: 0 clamp(24px, 8vw, 126px) clamp(100px, 11vw, 165px);
  background: #f7f8fa;
}

.showcase-card {
  grid-column: span 6;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(9,45,99,.10);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(7,29,60,.08);
}

.showcase-card:nth-child(1), .showcase-card:nth-child(4) { grid-column: span 7; }
.showcase-card:nth-child(2), .showcase-card:nth-child(3) { grid-column: span 5; }
.showcase-card:nth-child(5) { grid-column: span 5; }
.showcase-card:nth-child(6) { grid-column: span 7; }

.showcase-image { position: relative; display: block; height: 360px; overflow: hidden; background: var(--navy); }
.showcase-card:nth-child(2) .showcase-image,
.showcase-card:nth-child(3) .showcase-image,
.showcase-card:nth-child(5) .showcase-image { height: 300px; }

.showcase-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,43,.46), transparent 52%); pointer-events: none; }
.showcase-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.showcase-card:hover .showcase-image img { transform: scale(1.035); }
.showcase-marca-precio .showcase-image img { object-position: center 35%; }
.showcase-impresoras-industriales .showcase-image img,
.showcase-soluciones-integrales .showcase-image img { object-fit: contain; padding: 26px; background: #eef2f5; }
.showcase-brady .showcase-image img { object-position: center; }

.showcase-number { position: absolute; z-index: 2; top: 20px; left: 20px; display: grid; place-items: center; width: 48px; height: 48px; color: var(--navy); background: var(--gold); font-size: .72rem; font-weight: 900; border-radius: 50%; }

.showcase-body { padding: 34px 36px 38px; }
.showcase-kicker { margin: 0 0 16px; color: var(--blue); font-size: .69rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.showcase-body h3 { font-size: clamp(1.7rem, 2.6vw, 2.55rem); }
.showcase-body > p:not(.showcase-kicker) { max-width: 650px; min-height: 76px; margin: 0 0 25px; color: var(--muted); line-height: 1.65; }
.showcase-link { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; color: var(--navy); font-weight: 850; text-decoration: none; border-top: 1px solid var(--line); }
.showcase-link span { color: var(--blue); font-size: 1.35rem; }

.industry-band {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(400px, 1fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  padding: clamp(85px, 9vw, 135px) clamp(24px, 8vw, 126px);
  color: #fff;
  background: var(--navy-deep);
}

.industry-band h2 { max-width: 720px; color: #fff; font-size: clamp(2.8rem, 5vw, 5.1rem); }
.industry-band-heading > p:last-child { max-width: 620px; color: #becadc; line-height: 1.7; }
.industry-chips { display: flex; flex-wrap: wrap; gap: 11px; justify-content: flex-end; }
.industry-chips span { padding: 14px 18px; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: .87rem; font-weight: 720; background: rgba(255,255,255,.05); }

.method-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: #fff;
}

.method-image { min-height: 660px; overflow: hidden; }
.method-image img { width: 100%; height: 100%; object-fit: cover; }
.method-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(65px, 8vw, 125px); }
.method-copy h2 { max-width: 720px; font-size: clamp(2.6rem, 4.4vw, 4.7rem); }
.method-list { display: grid; gap: 0; margin: 25px 0 0; padding: 0; list-style: none; }
.method-list li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.method-list li > span { color: var(--blue); font-size: .72rem; font-weight: 900; }
.method-list strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: 1.02rem; }
.method-list p { margin: 0; color: var(--muted); line-height: 1.55; }

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 55px;
  align-items: end;
  padding: clamp(85px, 10vw, 145px) clamp(24px, 8vw, 126px);
  color: #fff;
  background: linear-gradient(120deg, #0a376f, #061d42 70%);
}

.home-cta h2 { max-width: 950px; margin-bottom: 0; color: #fff; font-size: clamp(2.8rem, 5vw, 5.2rem); text-wrap: balance; }
.home-cta-actions { display: grid; gap: 22px; min-width: 285px; }
.text-link-light { color: #fff; font-size: .86rem; font-weight: 750; text-align: center; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--focus-light);
  outline-offset: 2px;
  box-shadow: 0 0 0 8px var(--focus-dark);
}

.showcase-image:focus-visible {
  outline-offset: -6px;
  box-shadow:
    inset 0 0 0 3px var(--focus-dark),
    inset 0 0 0 6px var(--focus-light);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { max-width: 560px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card, .solution-card:nth-child(4), .solution-grid-six .solution-card { grid-column: auto; }
  .solution-hero { grid-template-columns: 1fr; }
  .solution-visual { min-height: 420px; }
  .problem-section { grid-template-columns: 50px 1fr; }
  .problem-section > p:last-child { grid-column: 2; margin-top: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 245px; }
  .product-card > span { margin-bottom: 48px; }
  .benefits-section, .industry-section, .brand-section, .contact-section, .more-solutions { grid-template-columns: 1fr; }
  .home-hero-content { width: min(760px, 78vw); }
  .home-hero-overlay { background: linear-gradient(90deg, rgba(3,18,43,.98), rgba(3,18,43,.76) 65%, rgba(3,18,43,.2)); }
  .portfolio-intro, .industry-band, .home-cta { grid-template-columns: 1fr; }
  .solution-showcase { grid-template-columns: 1fr 1fr; }
  .showcase-card, .showcase-card:nth-child(n) { grid-column: auto; }
  .showcase-image, .showcase-card:nth-child(n) .showcase-image { height: 300px; }
  .showcase-body > p:not(.showcase-kicker) { min-height: 102px; }
  .industry-chips { justify-content: flex-start; }
  .method-section { grid-template-columns: 1fr; }
  .method-image { min-height: 520px; }
}

@media (max-width: 620px) {
  .site-header { min-height: 70px; }
  .brand img { width: 145px; }
  .header-cta { padding: 9px 13px; font-size: .8rem; }
  .header-nav { display: none; }
  .hero { padding-top: 64px; background: linear-gradient(160deg, #fff 0 73%, #edf4fb 73%); }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-list { display: grid; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 280px; }
  .site-footer { flex-direction: column; }
  .footer-contact { text-align: left; }
  .solution-hero { padding-top: 55px; }
  .back-link { margin-bottom: 40px; }
  .solution-visual { min-height: 330px; }
  .problem-section { grid-template-columns: 1fr; }
  .problem-section > p:last-child { grid-column: auto; }
  .benefit-list, .field-grid { grid-template-columns: 1fr; }
  .contact-section { gap: 38px; }
  .home-page .site-header { min-height: 74px; }
  .home-page .brand img { width: 150px; }
  .home-hero { min-height: 760px; align-items: end; }
  .home-hero-media img { object-position: 66% center; }
  .home-hero-overlay { background: linear-gradient(0deg, rgba(3,18,43,.99) 0%, rgba(3,18,43,.84) 67%, rgba(3,18,43,.28) 100%); }
  .home-hero-content { width: 100%; padding: 205px 22px 185px; }
  .home-hero h1 { font-size: clamp(2.85rem, 13.5vw, 4.35rem); }
  .home-proof { right: 22px; left: 22px; grid-template-columns: 1fr; }
  .home-proof > div { min-height: 48px; padding: 10px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .home-proof > div:first-child { border-top: 0; }
  .portfolio-intro { padding-top: 82px; }
  .portfolio-intro h2 { font-size: 2.85rem; }
  .solution-showcase { grid-template-columns: 1fr; padding-right: 16px; padding-left: 16px; }
  .showcase-image, .showcase-card:nth-child(n) .showcase-image { height: 270px; }
  .showcase-body { padding: 28px 24px 30px; }
  .showcase-body > p:not(.showcase-kicker) { min-height: 0; }
  .industry-band { padding-top: 78px; padding-bottom: 78px; }
  .industry-band h2, .home-cta h2 { font-size: 2.75rem; }
  .method-image { min-height: 340px; }
  .method-copy { padding: 72px 22px; }
  .method-copy h2 { font-size: 2.75rem; }
  .home-cta { padding-top: 80px; padding-bottom: 80px; }
  .home-cta-actions { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .solution-card { transition: none; }
  .showcase-image img { transition: none; }
  .showcase-card:hover .showcase-image img { transform: none; }
}
