/* ==========================================================================
   BicoreSoft LLC — Stylesheet
   Palette derived from the BicoreSoft logo: deep corporate navy + brand teal.
   --------------------------------------------------------------------------
   01. Tokens
   02. Reset & base
   03. Typography & layout utilities
   04. Buttons
   05. Header & navigation
   06. Hero
   07. Trust strip & intro
   08. Services
   09. About
   10. Why us
   11. Process
   12. Solutions
   13. Industries
   14. CTA band
   15. Contact & form
   16. Footer & back-to-top
   17. Legal pages
   18. Motion & reveal
   19. Responsive
   20. Reduced motion & print
   ========================================================================== */

/* 01. Tokens ============================================================== */
:root {
  /* Brand — sampled from the logo */
  --navy-900: #06203F;
  --navy-800: #082B57;
  --navy-700: #0E3A72;   /* primary */
  --navy-600: #14498C;
  --navy-500: #1D5CA8;
  --navy-100: #E8EEF7;

  --teal-700: #0B7E90;
  --teal-600: #0F92A6;
  --teal-500: #12A2B8;   /* accent */
  --teal-400: #35BED2;
  --teal-100: #E2F5F8;

  /* Neutrals */
  --ink:      #0B1F38;
  --body:     #4E5F76;
  --muted:    #71829A;
  --line:     #E2E9F2;
  --line-soft:#EDF2F8;
  --surface:  #F5F8FC;
  --surface-2:#FAFCFE;
  --white:    #FFFFFF;

  /* Feedback */
  --danger:   #C2334A;
  --danger-bg:#FDF0F2;
  --success:  #17795F;
  --success-bg:#EDF8F4;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Space & shape */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 6.5vw, 5.5rem);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(11, 31, 56, .06);
  --shadow-sm: 0 4px 14px rgba(11, 31, 56, .06);
  --shadow:    0 14px 38px rgba(11, 31, 56, .09);
  --shadow-lg: 0 28px 70px rgba(11, 31, 56, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* 02. Reset & base ======================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  /* The closed off-canvas menu is parked off-screen; clipping at the root
     guarantees it can never produce a horizontal scrollbar on any device. */
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--navy-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal-600); }

ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--navy-700);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* 03. Typography & layout utilities ====================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.35rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.95rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.075rem; font-weight: 700; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

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

.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section-surface { background: var(--surface); }
.section-gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1rem;
}
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 3.5vw, 2.75rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p {
  font-size: 1.075rem;
  margin-top: 1.1rem;
  margin-bottom: 0;
  color: var(--body);
}

.lead { font-size: clamp(1.05rem, 1.5vw, 1.175rem); color: var(--body); }
.text-teal { color: var(--teal-500); }

.icon { width: 24px; height: 24px; flex: none; }
.icon-sm { width: 19px; height: 19px; }

/* 04. Buttons ============================================================ */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: .975rem;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  box-shadow: 0 8px 22px rgba(14, 58, 114, .26);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(14, 58, 114, .34); }

.btn-accent {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  box-shadow: 0 8px 22px rgba(18, 162, 184, .3);
}
.btn-accent:hover { box-shadow: 0 14px 32px rgba(18, 162, 184, .38); }

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border-color: rgba(14, 58, 114, .22);
}
.btn-outline:hover {
  color: var(--navy-700);
  border-color: var(--navy-700);
  background: var(--navy-100);
}

.btn-light {
  background: #fff;
  color: var(--navy-700);
  box-shadow: 0 10px 26px rgba(6, 32, 63, .24);
}
.btn-light:hover { color: var(--navy-800); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.btn-ghost-light:hover { color: #fff; background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn-block { width: 100%; }
.btn-lg { padding: 1.075rem 2.15rem; font-size: 1.025rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .93rem;
  color: var(--navy-700);
}
.link-arrow .icon { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--teal-600); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* 05. Header & navigation ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(11, 31, 56, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo {
  width: auto;
  height: clamp(34px, 4.4vw, 46px);
  transition: transform .3s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.02); }

.nav-list { display: flex; align-items: center; gap: .3rem; }

/* Close control, shown only inside the off-canvas panel */
.nav-panel-head { display: none; }
.nav-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-700);
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}
.nav-close:hover { border-color: var(--navy-500); background: var(--surface); transform: rotate(90deg); }
.nav-close svg { width: 20px; height: 20px; }

.nav-link {
  position: relative;
  display: block;
  padding: .55rem .85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: .945rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .3rem;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-link:hover { color: var(--navy-700); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--navy-700); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.nav-toggle:hover { border-color: var(--navy-500); }

.nav-toggle-bars { display: block; position: relative; width: 20px; height: 14px; margin: 0 auto; }
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-700);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6, 32, 63, .45);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; }

/* 06. Hero =============================================================== */
.hero {
  position: relative;
  padding-block: clamp(3rem, 5.5vw, 5rem) clamp(3.25rem, 6vw, 5.5rem);
  background:
    radial-gradient(1000px 600px at 88% -8%, rgba(18, 162, 184, .13), transparent 62%),
    radial-gradient(820px 560px at 4% 8%, rgba(14, 58, 114, .09), transparent 60%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--white) 78%);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .5;
  pointer-events: none;
}
.hero-blob-1 {
  width: 420px; height: 420px;
  top: -160px; right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(53, 190, 210, .38), transparent 70%);
  animation: drift 22s var(--ease) infinite alternate;
}
.hero-blob-2 {
  width: 340px; height: 340px;
  bottom: -140px; left: -110px;
  background: radial-gradient(circle at 60% 40%, rgba(29, 92, 168, .3), transparent 70%);
  animation: drift 28s var(--ease) infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-26px, 30px, 0) scale(1.09); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: stretch;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1rem .5rem .6rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-xs);
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy-700);
}
.hero-badge .dot {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
}
.hero-badge .dot .icon { width: 15px; height: 15px; }

.hero h1 { margin-bottom: 1.35rem; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--teal-600), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy { max-width: 34rem; margin-bottom: 2.1rem; font-size: 1.1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--line);
}
.hero-fact { display: flex; align-items: flex-start; gap: .7rem; max-width: 15rem; }
.hero-fact .icon { color: var(--teal-500); margin-top: 2px; }
.hero-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--ink);
}
.hero-fact span { font-size: .875rem; color: var(--muted); line-height: 1.5; }

/* Hero media */
.hero-media { position: relative; display: flex; flex-direction: column; }
.hero-media-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy-700), var(--teal-600));
  flex: 1 1 auto;
  min-height: 340px;
}
.hero-media-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(6, 32, 63, .04) 30%, rgba(6, 32, 63, .34));
}

.hero-media-inset {
  position: absolute;
  right: -1.25rem;
  bottom: -2rem;
  width: 44%;
  max-width: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  background: var(--navy-100);
  aspect-ratio: 4 / 3;
}
.hero-media-inset img { width: 100%; height: 100%; object-fit: cover; }

.hero-chip {
  position: absolute;
  left: -1.4rem;
  bottom: 3.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.hero-chip .chip-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff;
}
.hero-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.3;
}
.hero-chip span { font-size: .78rem; color: var(--muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* 07. Trust strip & intro ================================================ */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
  padding-block: 1.6rem;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.75rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-700);
}
.trust-item .icon { width: 18px; height: 18px; color: var(--teal-500); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.intro-points {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: .35rem;
  height: 100%;
}
.intro-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.intro-point:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 162, 184, .4);
  box-shadow: var(--shadow-sm);
}
.intro-point .icon-wrap {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-700);
}
.intro-point h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.intro-point p { font-size: .93rem; margin: 0; }

/* 08. Services =========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.15rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  background: var(--navy-100);
  color: var(--navy-700);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.service-icon .icon { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy-700), var(--teal-600));
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}

.service-card h3 { margin-bottom: .7rem; }
.service-card > p { font-size: .95rem; margin-bottom: 1.35rem; }

.service-list { margin-top: auto; display: grid; gap: .55rem; }
.service-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--muted);
}
.service-list .icon { width: 15px; height: 15px; color: var(--teal-500); }

/* 09. About ============================================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: stretch;
}

.about-media { position: relative; display: flex; flex-direction: column; padding-bottom: 3rem; padding-right: 3rem; }
.about-media-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-100);
  flex: 1 1 auto;
  min-height: 360px;
}
.about-media-main img { width: 100%; height: 100%; object-fit: cover; }

.about-media-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  max-width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: var(--shadow);
  background: var(--teal-100);
  aspect-ratio: 1 / 1;
}
.about-media-inset img { width: 100%; height: 100%; object-fit: cover; }

.about-media-accent {
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 162, 184, .16), rgba(14, 58, 114, .1));
  z-index: -1;
}

.about-list { display: grid; gap: 1rem; margin: 1.75rem 0 2.25rem; }
.about-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  font-size: .96rem;
}
.about-list .check {
  width: 24px; height: 24px; flex: none;
  display: grid; place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
}
.about-list .check .icon { width: 13px; height: 13px; }
.about-list strong { color: var(--ink); font-family: var(--font-display); }

/* 10. Why us ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.why-card {
  position: relative;
  padding: 2.15rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 58, 114, .18);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  margin-bottom: 1.35rem;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--navy-100), var(--teal-100));
  color: var(--navy-700);
  transition: transform .35s var(--ease);
}
.why-card:hover .why-icon { transform: translateY(-3px); }
.why-card h3 { margin-bottom: .6rem; }
.why-card p { font-size: .93rem; margin: 0; }

/* 11. Process ============================================================ */
.process-section {
  position: relative;
  background:
    radial-gradient(760px 460px at 92% 0%, rgba(18, 162, 184, .1), transparent 60%),
    var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-400) 0 8px, transparent 8px 18px);
  opacity: .55;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 2rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.process-no {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 10px 24px rgba(14, 58, 114, .24);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.process-step:hover .process-no {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(18, 162, 184, .3);
}
.process-step h3 { margin-bottom: .6rem; }
.process-step p { font-size: .93rem; margin: 0; }

/* 12. Solutions ========================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.solution-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.solution-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-600));
}
.solution-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.solution-card:hover .solution-media img { transform: scale(1.06); }
.solution-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 32, 63, .5));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.solution-card:hover .solution-media::after { opacity: 1; }

.solution-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .93);
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.solution-body { padding: 1.6rem 1.6rem 1.75rem; }
.solution-body h3 { margin-bottom: .55rem; font-size: 1.15rem; }
.solution-body p { font-size: .92rem; margin: 0; }

/* 13. Industries ========================================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.industry-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 162, 184, .4);
  box-shadow: var(--shadow-sm);
}
.industry-icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--navy-100);
  color: var(--navy-700);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.industry-card:hover .industry-icon { background: var(--navy-700); color: #fff; }
.industry-card h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.industry-card p { font-size: .89rem; margin: 0; }

/* 14. CTA band =========================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--navy-800) 0%, var(--navy-700) 48%, var(--teal-700) 128%);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-image);
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  right: -180px; top: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 190, 210, .34), transparent 68%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 2.5rem;
  align-items: center;
}
.cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255, 255, 255, .84); font-size: 1.075rem; max-width: 40rem; margin: 0; }
.cta-inner .eyebrow { color: var(--teal-400); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* 15. Contact & form ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: start;
}

.contact-info { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-card:hover { border-color: rgba(18, 162, 184, .45); box-shadow: var(--shadow-sm); }
.contact-card .icon-wrap {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff;
}
.contact-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.contact-card p, .contact-card address { font-size: .95rem; margin: 0; line-height: 1.6; }
.contact-card a { font-weight: 500; color: var(--navy-600); word-break: break-word; }
.contact-card a:hover { color: var(--teal-600); }

.form-panel {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-panel > h3 { margin-bottom: .5rem; font-size: 1.35rem; }
.form-panel > .form-intro { font-size: .95rem; margin-bottom: 1.75rem; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
}
.field .req { color: var(--danger); margin-left: 2px; }
.field .optional { color: var(--muted); font-weight: 500; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%230E3A72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder { color: #9AA8BC; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #C9D6E6; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(18, 162, 184, .14);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
  background: var(--danger-bg);
}
.field.has-error input:focus,
.field.has-error select:focus,
.field.has-error textarea:focus { box-shadow: 0 0 0 4px rgba(194, 51, 74, .13); }

.field-error {
  display: none;
  font-size: .82rem;
  color: var(--danger);
  font-weight: 500;
}
.field.has-error .field-error { display: block; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.form-note { font-size: .82rem; color: var(--muted); flex: 1 1 14rem; margin: 0; }

.form-alert {
  display: flex;
  gap: .8rem;
  padding: 1.05rem 1.25rem;
  margin-bottom: 1.6rem;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  line-height: 1.6;
}
.form-alert .icon { margin-top: 3px; }
.form-alert p { margin: 0; }
.form-alert.is-success {
  background: var(--success-bg);
  border: 1px solid rgba(23, 121, 95, .25);
  color: var(--success);
}
.form-alert.is-error {
  background: var(--danger-bg);
  border: 1px solid rgba(194, 51, 74, .25);
  color: var(--danger);
}
.form-alert strong { display: block; font-family: var(--font-display); margin-bottom: .15rem; }

/* 16. Footer & back-to-top =============================================== */
.site-footer {
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  background: var(--navy-900);
  color: rgba(255, 255, 255, .68);
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: 3rem;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 1.4rem;
  padding: .55rem .75rem;
  background: #fff;
  border-radius: 12px;
}
.footer-about { max-width: 30rem; margin: 0; line-height: 1.75; }

.footer-heading {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links { display: grid; gap: .7rem; }
.footer-links a { color: rgba(255, 255, 255, .68); }
.footer-links a:hover { color: var(--teal-400); }

.footer-contact { display: grid; gap: 1rem; }
.footer-contact li { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact .icon { color: var(--teal-400); margin-top: 4px; }
.footer-contact a { color: rgba(255, 255, 255, .68); word-break: break-word; }
.footer-contact a:hover { color: var(--teal-400); }
.footer-contact address { line-height: 1.7; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: inline-flex; gap: .65rem; align-items: center; }
.footer-bottom a { color: rgba(255, 255, 255, .68); }
.footer-bottom a:hover { color: var(--teal-400); }

.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 80;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: none;
  border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .25s var(--ease);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--teal-600); }

/* 17. Legal pages ======================================================== */
.page-hero {
  position: relative;
  padding-block: clamp(3.25rem, 6vw, 5rem);
  background:
    radial-gradient(760px 420px at 85% 0%, rgba(18, 162, 184, .16), transparent 62%),
    linear-gradient(120deg, var(--navy-800), var(--navy-700));
  color: #fff;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: .9rem; }
.page-hero p { color: rgba(255, 255, 255, .8); max-width: 46rem; margin: 0; }
.page-hero .eyebrow { color: var(--teal-400); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .62);
}
.breadcrumb a { color: rgba(255, 255, 255, .82); }
.breadcrumb a:hover { color: var(--teal-400); }
.breadcrumb [aria-current] { color: #fff; }

.legal-layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 108px;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}
.legal-toc h2 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.legal-toc ol { counter-reset: toc; display: grid; gap: .1rem; }
.legal-toc a {
  display: block;
  padding: .42rem .6rem;
  border-radius: 8px;
  font-size: .875rem;
  color: var(--body);
  line-height: 1.45;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.legal-toc a:hover { background: var(--navy-100); color: var(--navy-700); }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  padding: 1rem 1.35rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal-500);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: .9rem;
}
.legal-meta strong { color: var(--ink); font-family: var(--font-display); }
.legal-meta .meta-item { display: inline-flex; align-items: center; gap: .5rem; }
.legal-meta .icon { color: var(--teal-600); }

.legal-body { max-width: 46rem; }
.legal-body section { scroll-margin-top: 110px; }
.legal-body section + section { margin-top: 2.75rem; }
.legal-body h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin-bottom: .9rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
}
.legal-body h2 .num {
  display: inline-block;
  min-width: 2.1rem;
  color: var(--teal-600);
  font-size: .95em;
}
.legal-body h3 { font-size: 1.05rem; margin: 1.75rem 0 .6rem; }
.legal-body p { font-size: .975rem; line-height: 1.8; }
.legal-body ul { display: grid; gap: .6rem; margin: 0 0 1.15rem; }
.legal-body ul li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .975rem;
  line-height: 1.75;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: .35rem;
  top: .72rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
}
.legal-body a { text-decoration: underline; text-underline-offset: 3px; }

.legal-contact {
  margin-top: 3rem;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.legal-contact h2 { border: none; padding: 0; margin-bottom: 1rem; }
.legal-contact address { line-height: 1.85; font-size: .975rem; }
.legal-contact address strong { color: var(--ink); font-family: var(--font-display); }

/* 18. Motion & reveal ====================================================
   The hidden starting state is scoped to .js, which is set by an inline
   script in the document head. Without JavaScript the content simply shows,
   so a script failure can never leave a section invisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

.js .reveal-left  { transform: translateX(-28px); }
.js .reveal-right { transform: translateX(28px); }
.js .reveal-scale { transform: scale(.96); }
.js .reveal-left.is-visible,
.js .reveal-right.is-visible,
.js .reveal-scale.is-visible { transform: none; }

/* 19. Responsive ========================================================= */
@media (max-width: 1100px) {
  .services-grid,
  .solutions-grid,
  .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid::before { display: none; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); display: grid; gap: .1rem .75rem; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 88px; }
  .header-inner { min-height: 72px; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: block; margin-top: .75rem; }
  .nav-toggle { display: block; }

  .nav-panel-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.25rem;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 95;
    width: min(340px, 86vw);
    height: 100dvh;
    padding: 1.15rem 1.5rem 2rem;
    background: #fff;
    box-shadow: -18px 0 46px rgba(11, 31, 56, .16);
    transform: translateX(102%);
    /* visibility keeps the closed panel out of the tab order, not merely
       off-screen, and stops it contributing to the scrollable area */
    visibility: hidden;
    transition: transform .35s var(--ease), visibility 0s linear .35s;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .35s var(--ease), visibility 0s;
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav-link {
    padding: .85rem .9rem;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.is-active { background: var(--surface); color: var(--navy-700); }

  .hero-grid,
  .about-grid,
  .intro-grid,
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid { gap: 3rem; }

  /* Stacked columns have no row height to fill, so the media returns to a
     fixed aspect ratio instead of stretching. */
  /* width:100% is required — margin-inline:auto stops a grid item stretching,
     and it would otherwise shrink-wrap to nothing while the image is unloaded. */
  .hero-media, .about-media { width: 100%; max-width: 620px; margin-inline: auto; }
  .hero-media-main  { flex: 0 0 auto; min-height: 0; aspect-ratio: 4 / 3.15; }
  .about-media-main { flex: 0 0 auto; min-height: 0; aspect-ratio: 5 / 4.3; }
  .intro-points { grid-template-rows: none; height: auto; }

  .cta-inner { grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
}

@media (max-width: 760px) {
  :root { --section-y: clamp(3rem, 8vw, 4rem); }

  .services-grid,
  .solutions-grid,
  .industries-grid,
  .why-grid,
  .process-grid { grid-template-columns: minmax(0, 1fr); }

  .form-grid { grid-template-columns: minmax(0, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }

  .hero-actions .btn { flex: 1 1 100%; }
  .hero-chip { left: 0; bottom: -1rem; }
  .hero-media-inset { right: 0; bottom: -1.5rem; width: 40%; }
  .about-media { padding-right: 2rem; padding-bottom: 2.5rem; }

  .trust-strip-inner { gap: .75rem 1.5rem; }
  .trust-item { font-size: .84rem; }

  .legal-toc ol { grid-template-columns: minmax(0, 1fr); }
  .form-footer .btn { width: 100%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-facts { gap: 1.25rem; }
  .hero-fact { max-width: none; }
  .cta-actions .btn { width: 100%; }
  .footer-bottom { justify-content: flex-start; }

  /* Long labels must wrap rather than push the layout wider than the screen. */
  .btn {
    white-space: normal;
    text-align: center;
    padding-inline: 1.35rem;
  }
  .btn-lg { padding: .95rem 1.5rem; font-size: .975rem; }

  .form-panel { border-radius: var(--radius-lg); }
  .hero-media-inset { width: 44%; }
  .hero-chip { padding: .7rem .9rem; }
  .hero-chip .chip-icon { width: 32px; height: 32px; }
  .legal-meta { padding: .85rem 1.1rem; }
}

/* Very small handsets (iPhone SE and narrower) */
@media (max-width: 360px) {
  :root { --gutter: 1rem; }
  .service-card, .why-card, .process-step { padding-inline: 1.35rem; }
  .solution-body, .industry-card, .contact-card { padding-inline: 1.2rem; }
  .brand-logo { height: 32px; }
  .hero-badge { font-size: .78rem; }
}

/* Large desktop monitors — let the layout breathe without stretching text */
@media (min-width: 1500px) {
  :root {
    --container: 1320px;
    --section-y: 6rem;
  }
  .hero { padding-block: 5.5rem 6rem; }
}

/* 20. Reduced motion & print ============================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero-blob, .hero-chip { animation: none; }
}

@media print {
  .site-header, .site-footer, .to-top, .legal-toc, .nav-backdrop { display: none !important; }
  body { color: #000; }
  .page-hero { background: none; color: #000; padding-block: 1rem; }
  .page-hero h1, .page-hero p { color: #000; }
  .legal-body { max-width: none; }
  a { color: #000; }
}

/* Industry cards used as links (404 page) inherit their own text colours. */
a.industry-card { color: inherit; }
a.industry-card:hover { color: inherit; }
a.industry-card h3 { color: var(--ink); }

/* Long unbroken strings (emails, URLs) must never widen a container. */
h1, h2, h3, h4, p, li, address, dd, dt { overflow-wrap: break-word; }
