:root {
  --navy: #061d2f;
  --navy-2: #0b2941;
  --navy-3: #123954;
  --ink: #071d2f;
  --text: #23384c;
  --muted: #5e6f82;
  --white: #ffffff;
  --soft: #f6f8fb;
  --soft-2: #eef3f8;
  --cream: #fbf6ef;
  --line: #d9e3ee;
  --copper: #ad7436;
  --copper-2: #d89b57;
  --success: #166454;
  --error: #a33434;
  --shadow-sm: 0 10px 30px rgba(6, 29, 47, 0.08);
  --shadow-md: 0 22px 70px rgba(6, 29, 47, 0.13);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 227, 238, 0.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img { width: 235px; height: auto; object-fit: contain; }
.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  font-weight: 600;
  line-height: 1;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}
.main-nav a {
  opacity: 0.76;
  white-space: nowrap;
  transition: color .2s ease, opacity .2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--copper);
  opacity: 1;
}
.lang-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}
.lang-switch a {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 1;
}
.lang-switch a.active {
  color: var(--white);
  background: var(--navy);
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.section { padding: 92px 22px; }
.section.compact { padding: 72px 22px; }
.section.soft { background: var(--soft); }
.section.cream { background: var(--cream); }
.container { max-width: var(--max); margin: 0 auto; }
.container.narrow { max-width: 880px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
h1 { font-size: clamp(52px, 7.2vw, 86px); font-weight: 900; }
h2 { font-size: clamp(38px, 5vw, 58px); font-weight: 900; }
h3 { font-size: clamp(26px, 3vw, 34px); font-weight: 900; }
h4 { font-size: 21px; font-weight: 800; }
.lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary, .btn.dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(6, 29, 47, .18);
}
.btn.secondary, .btn.light {
  color: var(--navy);
  background: transparent;
  border-color: rgba(6, 29, 47, .28);
}
.hero .btn.secondary, .band .btn.secondary, .cta-box .btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
}
.actions, .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* Hero */
.hero-image {
  position: relative;
  min-height: clamp(640px, 82vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 84px;
}
.hero-port {
  background: #08111f url("../assets/hero-global-port-hero.png") center right / cover no-repeat;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 14, 27, .74) 0%, rgba(6, 14, 27, .56) 36%, rgba(6, 14, 27, .22) 100%),
    linear-gradient(180deg, rgba(6, 14, 27, .18) 0%, rgba(6, 14, 27, .42) 100%);
}
.hero-image-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  color: var(--white);
}
.hero-image-content h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: .95;
  letter-spacing: -.07em;
}
.hero-image-content .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
}
.hero-image-content .eyebrow { color: var(--copper-2); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 700;
}
.proof-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--copper-2);
}

/* Layouts */
.section-head { max-width: 820px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 19px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }

.card {
  position: relative;
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.card h3, .card h4 { margin-bottom: 12px; color: var(--ink); }
.card.dark {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 60px rgba(6, 29, 47, .18);
}
.card.dark h3, .card.dark h4 { color: var(--white); }
.card.dark p { color: var(--text-on-dark-muted); }
.service-card { min-height: 420px; display: flex; flex-direction: column; }
.service-card .link { margin-top: auto; }
.symbol {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--copper);
  background: rgba(173, 116, 54, .12);
  font-weight: 900;
  font-size: 22px;
}
.card.dark .symbol { color: var(--copper-2); background: rgba(255, 255, 255, .1); }
.symbol svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.link { display: inline-flex; margin-top: 22px; color: var(--copper); font-weight: 900; }
.card.dark .link { color: var(--copper-2); }

/* Informational labels: not buttons */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 24px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.chip::before { content: "•"; color: var(--copper); font-size: 18px; line-height: 1; }
.card.dark .chip, .band .chip { color: rgba(255, 255, 255, .82); }

.value-card { padding: 28px; }
.check {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--success);
  background: rgba(22, 100, 84, .11);
  font-size: 22px;
  font-weight: 900;
}

.band {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy) 100%);
}
.band h2, .band h3, .band h4 { color: var(--white); }
.band p, .band .lead { color: var(--text-on-dark-muted); }

.list-panel { display: grid; gap: 16px; }
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
}
.list-item strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 18px; font-weight: 800; }
.list-item span { color: var(--muted); font-size: 16px; line-height: 1.55; }
.bullet {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--copper);
  background: rgba(173, 116, 54, .14);
  font-weight: 900;
}

/* Product / CLINITY */
.product-showcase {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3.4vw, 42px);
  align-items: center;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 189, 116, .16), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #fcf8f2 100%);
}
.product-showcase.compact { grid-template-columns: minmax(250px, .9fr) minmax(0, 1.1fr); }
.product-visual {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 40%, rgba(216, 155, 87, .16), transparent 54%);
}
.product-visual img {
  width: min(100%, 330px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(22, 31, 46, .18));
}
.product-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--copper);
  background: rgba(173, 116, 54, .12);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 900;
}
.product-details h3 {
  max-width: 11ch;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}
.product-details p { max-width: 36ch; color: var(--muted); font-size: 18px; }
.product-bullets {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.product-bullets li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.product-bullets li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: rgba(22, 100, 84, .12);
  font-size: 13px;
  font-weight: 900;
}

/* About */
.leadership-photo { overflow: hidden; padding: 0; }
.leadership-photo img { width: 100%; min-height: 420px; object-fit: cover; object-position: center; }
.leadership-photo figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  line-height: 1.25;
}
.leadership-photo figcaption strong { color: var(--ink); font-size: 20px; font-weight: 900; }
.leadership-photo figcaption span { color: var(--muted); font-weight: 800; }

/* Page hero and CTA */
.page-hero {
  background: radial-gradient(circle at 80% 10%, rgba(216, 155, 87, .18), transparent 34%), var(--soft);
}
.page-hero .lead { max-width: 780px; }
.cta-box {
  padding: clamp(36px, 7vw, 68px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: radial-gradient(circle at 82% 18%, rgba(244, 189, 116, .34), transparent 30%), linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-md);
}
.cta-box h2 { color: var(--white); }
.cta-box p { max-width: 760px; margin-top: 16px; color: var(--text-on-dark-muted); }

/* Contact and legal */
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(173, 116, 54, .12);
}
.form-note, .form-status { color: var(--muted); font-size: 14px; line-height: 1.55; }
.form-status.success { color: var(--success); font-weight: 800; }
.form-status.error { color: var(--error); font-weight: 800; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.legal-copy h2 { margin-top: 32px; }
.legal-copy p { margin-top: 10px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.legal-copy a { color: var(--copper); font-weight: 800; }

/* Footer */
.site-footer {
  padding: 54px 22px 26px;
  color: rgba(255, 255, 255, .76);
  background: var(--navy);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 34px;
}
.footer-logo { width: 220px; height: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.site-footer h4 { margin-bottom: 14px; color: var(--white); font-size: 16px; letter-spacing: 0; }
.site-footer p { max-width: 480px; font-size: 15px; line-height: 1.7; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 15px; transition: color .2s ease; }
.footer-links a:hover { color: var(--copper-2); }
.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

@media (max-width: 980px) {
  .grid-4, .grid-3, .grid-2, .split { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .product-showcase, .product-showcase.compact { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .header-inner { padding: 12px 18px; }
  .logo img { width: 190px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .lang-switch { align-self: flex-start; margin-top: 8px; }
  .section { padding: 68px 18px; }
  .section.compact { padding: 58px 18px; }
  h1 { font-size: clamp(42px, 11vw, 58px); }
  h2 { font-size: clamp(32px, 9vw, 44px); }
  .lead, .section-head p, .cta-box p { font-size: 17px; }
  .hero-image {
    min-height: 720px;
    padding: 104px 18px 72px;
    background-position: 63% center;
  }
  .hero-image-overlay {
    background: linear-gradient(180deg, rgba(6, 14, 27, .84) 0%, rgba(6, 14, 27, .66) 52%, rgba(6, 14, 27, .58) 100%);
  }
  .hero-image-content h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: .98;
    letter-spacing: -.06em;
  }
  .btn { width: 100%; }
  .hero-proof { gap: 10px 14px; }
  .proof-pill, .chip { font-size: 14px; }
  .card { padding: 24px; }
  .product-showcase { padding: 24px; }
  .product-visual { min-height: 330px; }
  .product-visual img { width: min(86%, 280px); max-height: 360px; }
  .product-details h3 { max-width: none; font-size: clamp(30px, 10vw, 42px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}


/* V15 Alignment refinement: paired cards, CTAs and non-button labels */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  min-height: 2.18em;
  display: block;
}

.service-card p {
  margin-top: 0;
}

.service-card .chip-row {
  margin-top: 28px;
  margin-bottom: 30px;
}

.service-card .link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-self: flex-start;
}

.card .link {
  line-height: 1.25;
}

.grid-2 > .card {
  height: 100%;
}

.actions {
  margin-top: 30px;
}

.card .actions,
.cta-box .actions {
  margin-top: 34px;
}

.list-panel {
  align-content: stretch;
}

.list-panel .list-item {
  min-height: 118px;
}

.band .list-panel .list-item {
  min-height: 120px;
}

/* Make informational labels read as metadata, not buttons */
.hero-proof {
  margin-top: 30px;
  row-gap: 12px;
  column-gap: 22px;
}

.proof-pill {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  min-height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.chip-row {
  row-gap: 10px;
  column-gap: 18px;
}

.chip {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  min-height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Consistent CTA spacing after chips across the site */
.chip-row + .link,
.chip-row + .actions {
  margin-top: 30px;
}

/* Keep manual line breaks natural in headings */
h1 br,
h2 br,
h3 br {
  display: block;
}

@media (max-width: 780px) {
  .service-card h3 {
    min-height: auto;
  }

  .service-card .chip-row {
    margin-bottom: 24px;
  }

  .service-card .link {
    padding-top: 18px;
  }

  .list-panel .list-item,
  .band .list-panel .list-item {
    min-height: auto;
  }
}


/* V16 Home alignment fixes */
.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.hero-proof .proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1.2;
}

.hero-proof .proof-dot {
  display: inline-block;
  flex: 0 0 auto;
}

.service-card {
  min-height: 520px;
}

.grid-2 > .service-card {
  display: flex;
  flex-direction: column;
}

.service-card .chip-row {
  min-height: 58px;
  align-items: flex-start;
}

.service-card .link {
  margin-top: auto !important;
  padding-top: 34px;
}

.service-card .chip-row + .link {
  margin-top: auto !important;
}

.service-card h3 {
  min-height: 2.2em;
}

@media (max-width: 780px) {
  .hero-proof .proof-pill {
    white-space: normal;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3,
  .service-card .chip-row {
    min-height: auto;
  }

  .service-card .link {
    padding-top: 24px;
  }
}


/* V17 detail pass: alignment, typography consistency, footer logo and Q1 showcase */

/* Footer logo: use actual white logo asset, no CSS inversion */
.footer-logo {
  filter: none !important;
  opacity: 1 !important;
}

/* HERO informational labels: aligned metadata row, not buttons */
.hero-proof {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px 30px !important;
  margin-top: 30px !important;
}

.hero-proof .proof-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.hero-proof .proof-dot {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

/* Home service cards: equal rhythm without excessive empty vertical space */
.grid-2 > .service-card {
  height: auto !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: 58px minmax(96px, auto) minmax(154px, auto) 34px auto !important;
  align-content: start !important;
}

.service-card {
  min-height: 0 !important;
}

.service-card .symbol {
  margin-bottom: 0 !important;
  align-self: start !important;
}

.service-card h3 {
  min-height: 0 !important;
  align-self: start !important;
  margin: 0 !important;
}

.service-card p {
  align-self: start !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
}

.service-card .chip-row {
  display: grid !important;
  grid-template-columns: repeat(3, max-content) !important;
  align-items: center !important;
  column-gap: 24px !important;
  row-gap: 8px !important;
  min-height: 0 !important;
  margin: 0 !important;
}

.service-card .chip {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.78) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.service-card:not(.dark) .chip {
  color: var(--muted) !important;
}

.service-card .link {
  align-self: start !important;
  margin-top: 30px !important;
  padding-top: 0 !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

/* Remove fake-button styling from all chips/labels across sections */
.chip {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  box-shadow: none !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.card.dark .chip,
.band .chip {
  color: rgba(255,255,255,.80) !important;
}

.chip::before {
  content: "•";
  color: var(--copper);
  margin-right: 8px;
}

/* Standard text sizing inside cream/innovation sections */
.section.cream .container.split > div:first-child .lead {
  font-size: clamp(20px, 1.55vw, 24px) !important;
  line-height: 1.62 !important;
  color: var(--muted) !important;
}

.section.cream .container.split > div:first-child p:not(.lead) {
  font-size: 18px !important;
  line-height: 1.68 !important;
  color: var(--text) !important;
}

/* Q1 product card: cleaner, more balanced and not oversized/cropped */
.product-showcase,
.product-showcase.compact,
.product-showcase.product-premium {
  display: grid !important;
  grid-template-columns: minmax(320px, .98fr) minmax(0, 1.02fr) !important;
  gap: clamp(34px, 4vw, 58px) !important;
  align-items: center !important;
  padding: clamp(36px, 4vw, 58px) !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 23% 22%, rgba(244,189,116,.16), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #fbf6ef 100%) !important;
}

.product-premium .product-visual,
.product-showcase.compact.product-premium .product-visual,
.product-visual {
  min-height: clamp(440px, 48vw, 610px) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 50% 38%, rgba(216,155,87,.18), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(251,246,239,.96)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  overflow: visible !important;
}

.product-premium .product-visual img,
.product-showcase.compact.product-premium .product-visual img,
.product-visual img {
  width: auto !important;
  max-width: min(92%, 430px) !important;
  max-height: 560px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 30px 34px rgba(22,31,46,.20)) !important;
}

.product-kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  min-height: 0 !important;
  padding: 8px 14px !important;
  margin-bottom: 22px !important;
  border-radius: 999px !important;
  background: rgba(173,116,54,.11) !important;
  color: var(--copper) !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
}

.product-details h3 {
  max-width: 100% !important;
  font-size: clamp(34px, 3.4vw, 52px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.04em !important;
  margin: 0 0 18px !important;
  color: var(--ink) !important;
}

.product-details p {
  max-width: 100% !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
  color: var(--muted) !important;
  margin: 0 !important;
}

.product-bullets {
  margin: 24px 0 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.product-bullets li {
  font-size: 16px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}

.product-details .chip-row {
  margin-top: 26px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 20px !important;
}

/* Prevent huge CTA gaps introduced by previous equalization rules */
.actions {
  margin-top: 28px !important;
}

.card .actions,
.cta-box .actions {
  margin-top: 30px !important;
}

/* General design consistency: one coherent weight/color rhythm */
.card:not(.dark) h3,
.card:not(.dark) h4,
.product-details h3,
.value-card h4 {
  color: var(--ink) !important;
}

.card:not(.dark) p,
.value-card p,
.section-head p,
.product-details p {
  color: var(--muted) !important;
}

.link {
  font-weight: 800 !important;
}

/* Responsive behavior */
@media (max-width: 980px) {
  .grid-2 > .service-card {
    grid-template-rows: auto auto auto auto auto !important;
  }

  .service-card .chip-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .service-card .link {
    margin-top: 28px !important;
  }

  .product-showcase,
  .product-showcase.compact,
  .product-showcase.product-premium {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 780px) {
  .hero-proof .proof-pill {
    white-space: normal !important;
    font-size: 14px !important;
  }

  .product-premium .product-visual,
  .product-showcase.compact.product-premium .product-visual,
  .product-visual {
    min-height: 380px !important;
    padding: 20px !important;
  }

  .product-premium .product-visual img,
  .product-showcase.compact.product-premium .product-visual img,
  .product-visual img {
    max-width: min(88%, 320px) !important;
    max-height: 430px !important;
  }

  .product-details h3 {
    font-size: clamp(32px, 9vw, 42px) !important;
  }
}


/* V18 Innovation cleanup: coherent typography and redesigned Q1 card */
.innovation-hero .container.split {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
  gap: 56px !important;
  align-items: start !important;
}

.innovation-copy {
  max-width: 620px;
}

.innovation-copy h1 {
  margin-bottom: 18px !important;
}

.innovation-copy .lead,
.innovation-copy p {
  max-width: 34ch !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
  color: var(--muted) !important;
}

.innovation-copy .lead {
  margin: 0 0 10px !important;
}

.innovation-copy p:not(.lead) {
  margin: 0 !important;
}

.innovation-copy .actions {
  margin-top: 30px !important;
}

.innovation-hero .product-showcase {
  display: grid !important;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, 1.08fr) !important;
  gap: 38px !important;
  align-items: center !important;
  padding: 42px !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 189, 116, .14), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%) !important;
  overflow: hidden !important;
}

.innovation-hero .product-visual {
  min-height: 480px !important;
  padding: 28px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,246,239,.98)) !important;
  box-shadow: inset 0 0 0 1px rgba(217, 227, 238, .45);
}

.innovation-hero .product-visual img {
  width: auto !important;
  max-width: min(100%, 360px) !important;
  max-height: 470px !important;
  object-fit: contain !important;
}

.innovation-hero .product-details {
  min-width: 0 !important;
}

.innovation-hero .product-kicker {
  margin-bottom: 18px !important;
}

.innovation-hero .product-details h3 {
  max-width: 8.4ch !important;
  margin: 0 0 18px !important;
  font-size: clamp(36px, 3.2vw, 48px) !important;
  line-height: .98 !important;
  letter-spacing: -.04em !important;
  color: var(--ink) !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.innovation-hero .product-details p {
  max-width: 26ch !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
  color: var(--muted) !important;
}

.innovation-hero .product-bullets {
  margin: 22px 0 0 !important;
  gap: 10px !important;
}

.innovation-hero .product-bullets li {
  font-size: 17px !important;
  line-height: 1.5 !important;
  color: var(--text) !important;
  font-weight: 700 !important;
}

.innovation-hero .product-details .chip-row {
  display: none !important;
}

@media (max-width: 1180px) {
  .innovation-hero .container.split {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px) {
  .innovation-hero .product-showcase {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .innovation-hero .product-details h3,
  .innovation-hero .product-details p,
  .innovation-copy .lead,
  .innovation-copy p {
    max-width: none !important;
  }
}

@media (max-width: 780px) {
  .innovation-hero .product-showcase {
    padding: 28px !important;
  }

  .innovation-hero .product-visual {
    min-height: 360px !important;
    padding: 20px !important;
  }

  .innovation-hero .product-visual img {
    max-width: min(88%, 300px) !important;
    max-height: 390px !important;
  }

  .innovation-hero .product-details h3 {
    font-size: clamp(32px, 8.5vw, 42px) !important;
    max-width: 10ch !important;
  }
}


/* V19 home innovation cleanup and service-card alignment */
.home-innovation-section .container.split {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
  gap: 56px !important;
  align-items: start !important;
}

.home-innovation-copy .lead,
.home-innovation-copy p {
  max-width: 35ch !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
  color: var(--muted) !important;
}

.home-innovation-copy .lead { margin: 0 0 10px !important; }
.home-innovation-copy p:not(.lead) { margin: 0 !important; }
.home-innovation-copy .actions { margin-top: 30px !important; }

.home-innovation-section .home-product-card {
  display: grid !important;
  grid-template-columns: minmax(240px, .82fr) minmax(0, 1.18fr) !important;
  gap: 34px !important;
  align-items: center !important;
  padding: 38px !important;
  background: radial-gradient(circle at 22% 18%, rgba(244,189,116,.14), transparent 34%), linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%) !important;
}

.home-innovation-section .home-product-card .product-visual {
  min-height: 420px !important;
  padding: 24px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,246,239,.98)) !important;
  box-shadow: inset 0 0 0 1px rgba(217,227,238,.42) !important;
}

.home-innovation-section .home-product-card .product-visual img {
  width: auto !important;
  max-width: min(100%, 310px) !important;
  max-height: 390px !important;
  object-fit: contain !important;
}

.home-innovation-section .home-product-card .product-kicker {
  margin-bottom: 18px !important;
}

.home-innovation-section .home-product-card .product-details h3 {
  max-width: 9ch !important;
  margin: 0 0 16px !important;
  font-size: clamp(30px, 2.6vw, 42px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.04em !important;
  color: var(--ink) !important;
}

.home-innovation-section .home-product-card .product-details p {
  max-width: 24ch !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
  color: var(--muted) !important;
}

.home-innovation-section .home-product-card .product-bullets {
  margin: 20px 0 0 !important;
  gap: 10px !important;
}

.home-innovation-section .home-product-card .product-bullets li {
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.home-innovation-section .home-product-card .chip-row {
  display: none !important;
}

.grid-2 > .service-card {
  display: grid !important;
  grid-template-rows: 58px auto auto auto 1fr auto !important;
  align-content: start !important;
}

.service-card .symbol { margin-bottom: 14px !important; }
.service-card h3 { margin: 0 0 16px !important; }
.service-card p { margin: 0 !important; }
.service-card .chip-row { margin-top: 24px !important; }
.service-card .link {
  margin-top: 20px !important;
  padding-top: 10px !important;
  align-self: start !important;
}

@media (max-width: 1100px) {
  .home-innovation-section .container.split {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px) {
  .home-innovation-section .home-product-card {
    grid-template-columns: 1fr !important;
  }

  .home-innovation-section .home-product-card .product-details h3,
  .home-innovation-section .home-product-card .product-details p,
  .home-innovation-copy .lead,
  .home-innovation-copy p {
    max-width: none !important;
  }
}


/* V20 home refinement: consistent copy, mockup asset, and aligned service metadata */
.home-innovation-copy .home-innovation-text {
  max-width: 35ch !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
  color: var(--muted) !important;
}

.home-innovation-copy .home-innovation-text + .home-innovation-text {
  margin-top: 18px !important;
}

.home-innovation-copy .lead,
.home-innovation-copy p:not(.home-innovation-text) {
  font-size: inherit !important;
}

.home-innovation-copy .actions {
  margin-top: 34px !important;
}

.home-innovation-section .home-product-card {
  grid-template-columns: minmax(250px, .88fr) minmax(0, 1.12fr) !important;
  gap: 40px !important;
}

.home-innovation-section .home-product-card .product-visual {
  min-height: 470px !important;
  padding: 28px !important;
}

.home-innovation-section .home-product-card .product-visual img {
  width: auto !important;
  max-width: min(100%, 330px) !important;
  max-height: 430px !important;
  object-fit: contain !important;
}

.home-innovation-section .home-product-card .product-details {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.home-innovation-section .home-product-card .product-details h3 {
  max-width: 8.8ch !important;
  margin: 0 0 18px !important;
}

.home-innovation-section .home-product-card .product-details p {
  max-width: 22ch !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
  color: var(--muted) !important;
}

.home-innovation-section .home-product-card .product-bullets {
  margin: 26px 0 0 !important;
}

.home-innovation-section .home-product-card .product-bullets li {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.home-services-grid {
  align-items: stretch !important;
}

.home-services-grid > .service-card {
  min-height: 650px !important;
  display: flex !important;
  flex-direction: column !important;
}

.home-services-grid > .service-card p {
  min-height: 178px !important;
}

.home-services-grid > .service-card .chip-row {
  min-height: 72px !important;
  align-items: flex-start !important;
  align-content: flex-start !important;
  margin-top: 22px !important;
  margin-bottom: 0 !important;
}

.home-services-grid > .service-card .link {
  margin-top: 28px !important;
  padding-top: 0 !important;
  line-height: 1.25 !important;
}

@media (max-width: 1100px) {
  .home-services-grid > .service-card {
    min-height: auto !important;
  }

  .home-services-grid > .service-card p,
  .home-services-grid > .service-card .chip-row {
    min-height: auto !important;
  }
}


/* V21 Home obsessive refinement: service cards only */
.home-services-grid {
  align-items: start !important;
  gap: 32px !important;
}

.home-services-grid > .service-card {
  height: auto !important;
  min-height: 0 !important;
  padding: 52px !important;
  display: grid !important;
  grid-template-rows: auto auto auto auto auto !important;
  align-content: start !important;
  align-items: start !important;
}

.home-services-grid > .service-card .symbol {
  width: 64px !important;
  height: 64px !important;
  border-radius: 20px !important;
  margin: 0 0 32px !important;
}

.home-services-grid > .service-card h3 {
  min-height: 104px !important;
  margin: 0 0 28px !important;
  font-size: clamp(36px, 3vw, 50px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.055em !important;
}

.home-services-grid > .service-card p {
  min-height: 170px !important;
  margin: 0 0 30px !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
}

.home-services-grid > .service-card .chip-row {
  min-height: 28px !important;
  display: flex !important;
  align-items: center !important;
  align-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px 28px !important;
  margin: 0 0 34px !important;
}

.home-services-grid > .service-card .chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.home-services-grid > .service-card .chip::before {
  font-size: 18px !important;
  line-height: 1 !important;
  margin-right: 0 !important;
}

.home-services-grid > .service-card .link {
  margin: 0 !important;
  padding: 0 !important;
  align-self: start !important;
  justify-self: start !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

/* Keep Home innovation body paragraphs visually identical */
.home-innovation-copy .home-innovation-text {
  font-size: 18px !important;
  line-height: 1.72 !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 1100px) {
  .home-services-grid > .service-card {
    padding: 40px !important;
  }

  .home-services-grid > .service-card h3,
  .home-services-grid > .service-card p,
  .home-services-grid > .service-card .chip-row {
    min-height: 0 !important;
  }
}

@media (max-width: 780px) {
  .home-services-grid {
    gap: 22px !important;
  }

  .home-services-grid > .service-card {
    padding: 30px !important;
  }

  .home-services-grid > .service-card .symbol {
    margin-bottom: 24px !important;
  }

  .home-services-grid > .service-card h3 {
    font-size: clamp(30px, 9vw, 42px) !important;
    margin-bottom: 20px !important;
  }

  .home-services-grid > .service-card p {
    font-size: 17px !important;
    margin-bottom: 24px !important;
  }

  .home-services-grid > .service-card .chip-row {
    margin-bottom: 28px !important;
  }
}


/* V22 home final polish: brighter buttons + transparent Q1 mockup */
.hero-actions .btn.primary,
.home-innovation-copy .btn.dark {
  background: linear-gradient(135deg, #d39a4b 0%, #ba7d34 100%) !important;
  border-color: rgba(186, 125, 52, .88) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(186, 125, 52, .26) !important;
}

.hero-actions .btn.secondary {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .56) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(6, 29, 47, .16) !important;
}

.home-innovation-copy .btn.light {
  background: rgba(255, 255, 255, .96) !important;
  border-color: rgba(6, 29, 47, .18) !important;
  color: var(--navy) !important;
  box-shadow: 0 10px 22px rgba(6, 29, 47, .08) !important;
}

.home-innovation-section .home-product-card .product-visual img,
.product-premium .product-visual img {
  max-width: min(100%, 360px) !important;
  max-height: 470px !important;
  width: auto !important;
  height: auto !important;
}


/* V23 Home final tiny patch: Trade Solutions preview buttons */
.band .actions .btn.primary {
  background: linear-gradient(135deg, #d39a4b 0%, #ba7d34 100%) !important;
  border-color: rgba(186, 125, 52, .88) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(186, 125, 52, .24) !important;
}

.band .actions .btn.secondary {
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .62) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(6, 29, 47, .16) !important;
}


/* V24 single-button home patch: CTA button in final compact section */
.cta-box .btn.primary {
  background: linear-gradient(135deg, #d39a4b 0%, #ba7d34 100%) !important;
  border-color: rgba(186, 125, 52, .88) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(186, 125, 52, .24) !important;
}


/* V26 Spanish Home card label alignment only */
html[lang="es"] .home-services-grid > .service-card .chip-row {
  gap: 12px 22px !important;
}

html[lang="es"] .home-services-grid > .service-card .chip {
  font-size: 14.5px !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap !important;
}


/* V27 mockup size only */
.product-premium .product-visual img,
.product-showcase.compact.product-premium .product-visual img,
.product-visual img {
  max-width: min(96%, 470px) !important;
  max-height: 600px !important;
}

.home-innovation-section .home-product-card .product-visual img {
  max-width: min(100%, 340px) !important;
  max-height: 430px !important;
}


/* V28 sitewide standardization based on approved V27 Home */

/* Page intro sections: same clean commercial rhythm as Home */
.page-intro .container,
.page-intro .container.narrow,
.page-intro .container.split {
  position: relative;
}

.page-intro h1,
.page-intro h2 {
  letter-spacing: -0.055em;
}

.page-intro p,
.page-intro .lead {
  color: var(--muted);
}

/* Section headings: keep hierarchy aligned with Home */
.section-head .eyebrow,
.page-intro .eyebrow {
  color: var(--copper);
}

.section-head h2,
.page-intro h1,
.page-intro h2 {
  color: var(--ink);
}

/* CTA standard: final CTA buttons match the approved Home copper treatment */
.final-cta .btn.primary,
.cta-box .btn.primary {
  background: linear-gradient(135deg, #d39a4b 0%, #ba7d34 100%) !important;
  border-color: rgba(186, 125, 52, .88) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(186, 125, 52, .24) !important;
}

.final-cta .btn.secondary,
.cta-box .btn.secondary {
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .62) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(6, 29, 47, .16) !important;
}

/* Dark sections: buttons should not disappear into navy backgrounds */
.band .actions .btn.primary,
.band .actions .btn.dark {
  background: linear-gradient(135deg, #d39a4b 0%, #ba7d34 100%) !important;
  border-color: rgba(186, 125, 52, .88) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(186, 125, 52, .24) !important;
}

.band .actions .btn.secondary,
.band .actions .btn.light {
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .62) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(6, 29, 47, .16) !important;
}

/* Informational labels: sitewide metadata style, not buttons */
.chip-row,
.hero-proof {
  align-items: center;
}

.chip,
.proof-pill {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: 0 !important;
  cursor: default !important;
}

.chip {
  white-space: nowrap;
}

.chip::before {
  content: "•";
  color: var(--copper);
  margin-right: 8px;
}

/* Product cards: approved V27 mockup treatment carried across Innovation page */
.innovation-product-card {
  display: grid !important;
  grid-template-columns: minmax(250px, .9fr) minmax(0, 1.1fr) !important;
  gap: 40px !important;
  align-items: center !important;
  padding: 38px !important;
  background:
    radial-gradient(circle at 22% 18%, rgba(244,189,116,.14), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fbf7f1 100%) !important;
}

.innovation-product-card .product-visual {
  min-height: 470px !important;
  padding: 28px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,246,239,.98)) !important;
  box-shadow: inset 0 0 0 1px rgba(217,227,238,.42) !important;
}

.innovation-product-card .product-visual img {
  width: auto !important;
  max-width: min(96%, 470px) !important;
  max-height: 600px !important;
  object-fit: contain !important;
}

.innovation-product-card .product-details h3 {
  max-width: 9ch !important;
  margin: 0 0 18px !important;
  font-size: clamp(30px, 2.6vw, 42px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.04em !important;
  color: var(--ink) !important;
}

.innovation-product-card .product-details p {
  max-width: 25ch !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
  color: var(--muted) !important;
}

.innovation-product-card .product-bullets {
  margin: 26px 0 0 !important;
}

.innovation-product-card .product-bullets li {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

/* Contact form: align with Home card/button polish */
.standardized-form {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.standardized-form input,
.standardized-form textarea,
.standardized-form select {
  font: inherit;
}

.standardized-form .btn.primary,
.contact-form .btn.primary {
  background: linear-gradient(135deg, #d39a4b 0%, #ba7d34 100%) !important;
  border-color: rgba(186, 125, 52, .88) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(186, 125, 52, .20) !important;
}

/* Footer: keep Home-approved white logo treatment */
.footer-logo {
  filter: none !important;
  opacity: 1 !important;
}

/* Legal/basic text sections: prevent accidental oversized body text */
.legal-copy p,
.legal-copy li,
.contact-copy p {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: var(--muted) !important;
}

/* Responsive standardization */
@media (max-width: 980px) {
  .innovation-product-card {
    grid-template-columns: 1fr !important;
  }

  .innovation-product-card .product-details h3,
  .innovation-product-card .product-details p {
    max-width: none !important;
  }
}

@media (max-width: 780px) {
  .innovation-product-card {
    padding: 28px !important;
  }

  .innovation-product-card .product-visual {
    min-height: 380px !important;
  }

  .innovation-product-card .product-visual img {
    max-width: min(94%, 360px) !important;
    max-height: 480px !important;
  }
}


/* V29: innovation product card typography refinement only */
.innovation-product-card .product-details {
  min-width: 0 !important;
}

.innovation-product-card .product-details h3 {
  max-width: none !important;
  margin: 0 0 20px !important;
  font-size: clamp(26px, 2.25vw, 34px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.038em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.innovation-product-card .product-details p {
  max-width: none !important;
  margin: 0 !important;
  font-size: 17px !important;
  line-height: 1.58 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.innovation-product-card .product-bullets {
  margin: 22px 0 0 !important;
}

.innovation-product-card .product-bullets li {
  font-size: 15px !important;
  line-height: 1.45 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

@media (max-width: 1200px) {
  .innovation-product-card .product-details h3 {
    font-size: clamp(24px, 2.15vw, 32px) !important;
  }

  .innovation-product-card .product-details p {
    font-size: 16px !important;
  }
}


/* V30: force identical typography for both intro paragraphs in Innovation hero */
.innovation-copy .intro-paragraph {
  max-width: 34ch !important;
  margin: 0 0 10px !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
  letter-spacing: 0 !important;
  color: var(--muted) !important;
}

.innovation-copy .intro-paragraph + .intro-paragraph {
  margin: 0 !important;
}


/* V31: fix clipped Q1 text inside Innovation product card only */
.innovation-product-card {
  grid-template-columns: minmax(250px, .82fr) minmax(0, 1.18fr) !important;
  gap: 32px !important;
  overflow: visible !important;
}

.innovation-product-card .product-details {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.innovation-product-card .product-details h3 {
  max-width: 100% !important;
  font-size: clamp(24px, 2.05vw, 32px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.innovation-product-card .product-details p {
  max-width: 100% !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.innovation-product-card .product-bullets li {
  max-width: 100% !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

@media (max-width: 1180px) {
  .innovation-product-card {
    grid-template-columns: 1fr !important;
  }
}


/* V32: fix Innovation Q1 product card clipping only */
.innovation-product-card {
  grid-template-columns: minmax(240px, .84fr) minmax(0, 1.16fr) !important;
  gap: 28px !important;
  padding: 34px !important;
  overflow: hidden !important;
}

.innovation-product-card .product-details {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.innovation-product-card .product-kicker {
  margin-bottom: 14px !important;
}

.innovation-product-card .product-details h3 {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 0 16px !important;
  font-size: clamp(28px, 2.2vw, 34px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: none !important;
}

.innovation-product-card .product-details p {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: none !important;
}

.innovation-product-card .product-bullets {
  margin: 20px 0 0 !important;
  gap: 10px !important;
}

.innovation-product-card .product-bullets li {
  max-width: 100% !important;
  width: 100% !important;
  font-size: 15px !important;
  line-height: 1.42 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: none !important;
}


/* V33: definitive Innovation Q1 card clipping fix with higher specificity */
.innovation-hero .innovation-product-card {
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr) !important;
  gap: 30px !important;
  padding: 38px !important;
  overflow: hidden !important;
}

.innovation-hero .innovation-product-card .product-details {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.innovation-hero .innovation-product-card .product-kicker {
  margin-bottom: 14px !important;
}

.innovation-hero .innovation-product-card .product-details h3 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 16px !important;
  font-size: clamp(26px, 2vw, 32px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.034em !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  overflow: visible !important;
}

.innovation-hero .innovation-product-card .product-details p {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  font-size: 15.5px !important;
  line-height: 1.52 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  overflow: visible !important;
}

.innovation-hero .innovation-product-card .product-bullets {
  margin: 18px 0 0 !important;
  gap: 9px !important;
}

.innovation-hero .innovation-product-card .product-bullets li {
  width: 100% !important;
  max-width: 100% !important;
  font-size: 14.5px !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  overflow: visible !important;
}

@media (max-width: 1180px) {
  .innovation-hero .innovation-product-card {
    grid-template-columns: 1fr !important;
  }
}


/* V34: hard stop for Innovation Q1 text clipping */
.innovation-hero .innovation-product-card {
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr) !important;
  gap: 28px !important;
  overflow: hidden !important;
}

.innovation-hero .innovation-product-card .product-visual,
.innovation-hero .innovation-product-card .product-details {
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.innovation-hero .innovation-product-card .product-details {
  width: 100% !important;
  max-width: 280px !important;
  overflow: visible !important;
}

.innovation-hero .innovation-product-card .product-details h3,
.innovation-hero .innovation-product-card .product-details p,
.innovation-hero .innovation-product-card .product-bullets,
.innovation-hero .innovation-product-card .product-bullets li {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.innovation-hero .innovation-product-card .product-details h3 {
  font-size: clamp(25px, 1.9vw, 31px) !important;
  line-height: 1.08 !important;
  margin: 0 0 16px !important;
}

.innovation-hero .innovation-product-card .product-details p {
  font-size: 15.5px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.innovation-hero .innovation-product-card .product-bullets {
  margin: 18px 0 0 !important;
  gap: 8px !important;
}

.innovation-hero .innovation-product-card .product-bullets li {
  font-size: 14.5px !important;
  line-height: 1.38 !important;
}


/* V35 Trade Solutions rebuild */

.trade-hero .trade-hero-grid {
  align-items: stretch;
}

.trade-hero-copy .intro-paragraph {
  max-width: 36ch;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.trade-hero-copy .actions {
  margin-top: 32px;
}

.trade-trust-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.trade-trust-card h3 {
  max-width: 11ch;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.trade-trust-card p {
  max-width: 38ch;
  font-size: 18px;
  line-height: 1.68;
}

.trade-trust-card .chip-row {
  margin-top: 28px;
  gap: 12px 24px;
}

.legal-identity-grid {
  align-items: stretch;
}

.identity-card {
  display: flex;
  flex-direction: column;
}

.identity-card h3 {
  margin-bottom: 22px;
}

.identity-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.identity-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.identity-list div:last-child {
  border-bottom: 0;
}

.identity-list dt {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.identity-list dd {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.identity-list a {
  color: var(--navy);
  font-weight: 800;
}

.product-category-grid {
  align-items: stretch;
}

.category-card {
  display: flex;
  flex-direction: column;
}

.category-card .symbol {
  margin-bottom: 28px;
}

.category-card h3 {
  margin-bottom: 18px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.clean-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--copper);
}

.small-note {
  margin-top: auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.corridor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.corridor-card {
  display: flex;
  flex-direction: column;
}

.corridor-card h3 {
  min-height: 2.1em;
  margin-bottom: 18px;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.06;
}

.corridor-list {
  display: grid;
  gap: 14px;
}

.corridor-list p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.corridor-list strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.corridor-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.trade-discipline .lead {
  color: rgba(255,255,255,.86);
}

.trade-discipline p:not(.lead) {
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  padding: 26px;
}

.process-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--copper);
  background: rgba(173,116,54,.11);
  font-size: 15px;
  font-weight: 900;
}

.process-card h3 {
  min-height: 2.2em;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
}

.process-card p {
  font-size: 16px;
  line-height: 1.6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  line-height: 1.35;
}

.leadership-links-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-links {
  display: grid;
  gap: 14px;
  margin: 20px 0 18px;
}

.profile-links a {
  display: inline-flex;
  color: var(--copper);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.profile-links a:hover {
  color: var(--navy);
}

@media (max-width: 1100px) {
  .corridor-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .corridor-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .trade-trust-card {
    min-height: auto;
  }

  .trade-trust-card h3 {
    max-width: none;
  }

  .corridor-card h3,
  .process-card h3 {
    min-height: 0;
  }
}


/* V36 header safety fix only */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(1180px, calc(100% - 48px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  max-width: 220px;
  height: 72px;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  max-height: 44px !important;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 880px) {
  .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .brand img {
    width: 168px !important;
    max-width: 168px !important;
  }
}


/* V37 Trade Solutions document references */
.document-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.document-card h3 {
  margin-bottom: 20px;
}

.document-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.document-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(173, 116, 54, .10);
  border: 1px solid rgba(173, 116, 54, .20);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.document-card p {
  font-size: 16px;
  line-height: 1.65;
}


/* V38 Trade Solutions refinement */

/* Header: keep the same compact Home-like navigation behavior */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  background: rgba(255, 255, 255, .94) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--line) !important;
}

.nav-shell {
  width: min(1180px, calc(100% - 48px)) !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
}

.brand {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  max-width: 220px !important;
  height: 72px !important;
  overflow: hidden !important;
}

.brand img {
  display: block !important;
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  max-height: 44px !important;
  object-fit: contain !important;
}

.main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 22px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

/* Documentation section: different background from the following Compliance section */
.trade-documents-section {
  background: var(--white) !important;
}

.trade-documents-section + .section.soft {
  border-top: 1px solid var(--line);
}

/* Clearer commercial documentation card */
.document-card {
  justify-content: flex-start;
}

.document-card h3 {
  margin-bottom: 22px;
}

.document-groups {
  display: grid;
  gap: 16px;
}

.document-group {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.document-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.document-group strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.document-group p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.document-group .document-tags {
  margin: 0;
}

.document-note {
  margin-top: 22px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 15.5px !important;
  line-height: 1.65 !important;
}

.document-tags span {
  min-height: 32px;
  padding: 7px 12px;
  font-size: 13px;
}

@media (max-width: 880px) {
  .nav-shell {
    width: min(100% - 32px, 1180px) !important;
  }

  .brand img {
    width: 168px !important;
    max-width: 168px !important;
  }
}


/* V39 Trade Solutions exact Home header structure + visible section contrast */

/* Trade Solutions now uses the same header markup as Home: .header-inner + .logo.
   These rules only neutralize the old alternate header classes if they remain unused. */
.trade-documents-section {
  background: var(--cream) !important;
}

.trade-documents-section + .section.soft {
  background: var(--soft) !important;
  border-top: 1px solid var(--line) !important;
}


/* V40 final design-system pass: typography, header, buttons, cards, spacing and section contrast */

/* Header: identical structure and sizing across Home, About, Trade Solutions, Innovation and Contact */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid rgba(217,227,238,.92) !important;
  backdrop-filter: blur(14px) !important;
}

.header-inner {
  max-width: var(--max) !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  padding: 14px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 26px !important;
}

.logo {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

.logo img {
  width: 235px !important;
  max-width: 235px !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
}

.main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
  color: var(--navy) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.main-nav a {
  opacity: .76 !important;
  white-space: nowrap !important;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--copper) !important;
  opacity: 1 !important;
}

.lang-switch {
  display: inline-flex !important;
  gap: 3px !important;
  padding: 3px !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: var(--soft) !important;
}

.lang-switch a {
  padding: 5px 9px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  opacity: 1 !important;
}

.lang-switch a.active {
  color: var(--white) !important;
  background: var(--navy) !important;
}

/* Typography rhythm */
body {
  color: var(--text) !important;
  font-family: var(--font) !important;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 900;
}

.section-head p,
.page-intro p,
.page-hero .lead,
.trade-hero-copy .intro-paragraph,
.innovation-copy .intro-paragraph,
.home-innovation-copy .home-innovation-text {
  color: var(--muted) !important;
}

.section-head p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.66;
}

/* Section backgrounds and separation */
.section {
  background: var(--white);
}

.section.soft {
  background: var(--soft) !important;
}

.section.cream {
  background: var(--cream) !important;
}

.section.band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2)) !important;
}

.trade-documents-section {
  background: var(--white) !important;
}

.trade-documents-section + .section.soft {
  background: var(--soft) !important;
  border-top: 1px solid var(--line) !important;
}

/* Cards */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card h3,
.card h4 {
  color: var(--ink);
}

.card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.card.dark {
  background: linear-gradient(145deg, var(--navy), var(--navy-2)) !important;
  border-color: rgba(255,255,255,.12) !important;
  color: var(--white) !important;
}

.card.dark h3,
.card.dark h4 {
  color: var(--white) !important;
}

.card.dark p {
  color: var(--text-on-dark-muted, rgba(255,255,255,.78)) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  border: 1px solid transparent;
}

.btn.primary,
.btn.dark,
.cta-box .btn.primary,
.final-cta .btn.primary,
.band .actions .btn.primary,
.band .actions .btn.dark {
  background: linear-gradient(135deg, #d39a4b 0%, #ba7d34 100%) !important;
  border-color: rgba(186,125,52,.88) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(186,125,52,.24) !important;
}

.btn.secondary,
.btn.light {
  background: rgba(255,255,255,.96) !important;
  border-color: rgba(6,29,47,.18) !important;
  color: var(--navy) !important;
  box-shadow: 0 10px 22px rgba(6,29,47,.08) !important;
}

.band .actions .btn.secondary,
.band .actions .btn.light,
.cta-box .btn.secondary,
.final-cta .btn.secondary {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.62) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(6,29,47,.16) !important;
}

/* Informational labels: metadata, not fake buttons */
.chip,
.proof-pill {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.chip {
  display: inline-flex !important;
  align-items: center !important;
  color: var(--muted) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.card.dark .chip,
.band .chip {
  color: rgba(255,255,255,.82) !important;
}

.chip::before {
  content: "•";
  color: var(--copper);
  margin-right: 8px;
}

/* Trade Solutions: keep document reference card clear and readable */
.document-card h3 {
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.08;
}

.document-group strong {
  color: var(--ink);
}

.document-group p,
.document-note {
  color: var(--muted) !important;
}

.document-tags span {
  color: var(--navy) !important;
  background: rgba(173,116,54,.10) !important;
  border: 1px solid rgba(173,116,54,.22) !important;
}

/* Forms */
.contact-form input,
.contact-form select,
.contact-form textarea,
.standardized-form input,
.standardized-form select,
.standardized-form textarea {
  color: var(--ink) !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-md) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--copper) !important;
  box-shadow: 0 0 0 4px rgba(173,116,54,.12) !important;
}

/* Footer */
.site-footer {
  background: var(--navy) !important;
}

.footer-logo {
  filter: none !important;
  opacity: 1 !important;
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    padding: 13px 18px !important;
  }

  .logo img {
    width: 205px !important;
    max-width: 205px !important;
  }

  .main-nav {
    gap: 14px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 780px) {
  .logo img {
    width: 180px !important;
    max-width: 180px !important;
  }

  .btn {
    width: auto;
    min-height: 48px;
  }
}


/* V41 Netlify Forms thank-you page */
.thank-you-box {
  max-width: 840px;
  text-align: center;
}

.thank-you-box h1 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-box .lead {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-box .actions {
  justify-content: center;
}


/* V42 mobile fix: collapsed menu + Home Innovation card responsive integrity */

/* Mobile navigation must be closed by default. This overrides the global desktop .main-nav display:flex !important rules from V40. */
@media (max-width: 780px) {
  .site-header {
    overflow: visible !important;
  }

  .header-inner {
    position: relative !important;
    min-height: 72px !important;
    padding: 12px 18px !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 9px 13px !important;
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    color: var(--navy) !important;
    background: var(--white) !important;
    font-size: 0 !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    z-index: 3 !important;
  }

  .main-nav {
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
    top: calc(100% + 10px) !important;
    display: none !important;
    flex: initial !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 26px 22px !important;
    border: 1px solid var(--line) !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: var(--shadow-md) !important;
    z-index: 2 !important;
  }

  .main-nav.open {
    display: flex !important;
  }

  .main-nav a {
    display: block !important;
    width: 100% !important;
    padding: 15px 12px !important;
    text-align: center !important;
    color: var(--navy) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    opacity: .76 !important;
  }

  .main-nav a.active {
    color: var(--copper) !important;
    opacity: 1 !important;
  }

  .main-nav .lang-switch {
    align-self: flex-start !important;
    margin-top: 22px !important;
  }

  

  .nav-toggle .nav-toggle-icon {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before,
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    transform: rotate(-45deg);
  }

.main-nav .lang-switch a {
    width: auto !important;
    padding: 8px 12px !important;
    font-size: 15px !important;
  }
}

/* Home Innovation card must become one clean vertical card on mobile. */
@media (max-width: 780px) {
  .home-innovation-section {
    overflow: hidden !important;
  }

  .home-innovation-section .container.split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    width: 100% !important;
    max-width: var(--max) !important;
  }

  .home-innovation-section .home-product-card {
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 24px !important;
    overflow: hidden !important;
  }

  .home-innovation-section .home-product-card .product-visual,
  .home-innovation-section .home-product-card .product-details {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-innovation-section .home-product-card .product-visual {
    min-height: 360px !important;
    padding: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .home-innovation-section .home-product-card .product-visual img {
    width: auto !important;
    max-width: min(92%, 285px) !important;
    max-height: 340px !important;
    object-fit: contain !important;
  }

  .home-innovation-section .home-product-card .product-kicker {
    max-width: 100% !important;
    margin-bottom: 14px !important;
    white-space: normal !important;
  }

  .home-innovation-section .home-product-card .product-details h3 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    font-size: clamp(32px, 9vw, 42px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.04em !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    overflow: visible !important;
  }

  .home-innovation-section .home-product-card .product-details p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    white-space: normal !important;
    overflow: visible !important;
  }

  .home-innovation-section .home-product-card .product-bullets {
    width: 100% !important;
    max-width: 100% !important;
    margin: 18px 0 0 !important;
    padding-left: 0 !important;
  }

  .home-innovation-section .home-product-card .product-bullets li {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15.5px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }
}

@media (max-width: 440px) {
  .logo img {
    width: 170px !important;
    max-width: 170px !important;
  }

  .home-innovation-section .home-product-card {
    padding: 22px !important;
  }

  .home-innovation-section .home-product-card .product-visual {
    min-height: 330px !important;
    padding: 18px !important;
  }

  .home-innovation-section .home-product-card .product-visual img {
    max-width: min(94%, 260px) !important;
    max-height: 315px !important;
  }
}
