:root {
  --ink: #142337;
  --muted: #607083;
  --aqua: #19c6d5;
  --blue: #0875c9;
  --navy: #073b69;
  --orange: #ff9555;
  --pale: #eef8fa;
  --line: #dce7ec;
  --white: #fff;
  --shadow: 0 18px 44px rgba(10, 63, 103, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-topline { height: 4px; background: var(--orange); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e4eaee;
}
.nav-inner {
  width: min(1240px, 100%);
  height: 76px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 225px;
  text-decoration: none;
}

.brand img {
  width: 165px;
  object-fit: contain;
  padding-left: 9px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-around;
  flex: 1;
}
.nav-links-inner {
    display: flex;
    justify-content: space-around;
    gap: 45px;
}
.nav-links a, .nav-links button {
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font: 600 14px "DM Sans", Arial, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover { color: var(--orange); }
.contact-button {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 14px 23px;
  letter-spacing: .02em;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}
.mega-menu {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  border-top: 3px solid #ff9555;
  box-shadow: 0 16px 30px rgba(21,59,83,.12);
}
.mega-menu.is-open { display: block; }
.mega-inner {
  width: min(1240px, 100%);
  margin: auto;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
  gap: 42px;
}
.mega-column h3 {
  margin: 0 0 14px;
  font: 700 14px "Space Grotesk", Arial, sans-serif;
  letter-spacing: .03em;
}
.mega-column a {
  display: block;
  padding: 7px 0;
  color: #415261;
  font-size: 13px;
  text-decoration: none;
}
.mega-column a:hover { color: var(--orange); transform: translateX(3px); }
.mobile-menu {
  display: none;
  padding: 10px 20px 22px;
  border-top: 1px solid var(--line);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a, .mobile-menu button {
  display: block;
  width: 100%;
  padding: 13px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: 600 15px "DM Sans", Arial, sans-serif;
  text-align: left;
  text-decoration: none;
}
.mobile-menu .mobile-sub {
  padding-left: 15px;
  color: var(--muted);
  font-size: 13px;
}
.mobile-menu .mobile-contact {
  margin-top: 8px;
  padding: 14px 18px;
  background: var(--orange);
  color: #fff;
  text-align: center;
}
.breadcrumb {
  padding: 12px max(28px, calc((100% - 1184px) / 2));
  background: #f1f6f8;
  color: var(--muted);
  font-size: 12px;
}
 .hero {
  position: relative;
  overflow: hidden;
  padding: 82px max(28px, calc((100% - 1184px) / 2));
  background: radial-gradient(ellipse at 60% 40%, #4a1a0a 0%, #1c0f08 50%, #0d0604 100%)
  color: #fff;
}
.hero:after {
  position: absolute;
  content: "";
  right: -70px;
  top: -100px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 84px rgba(255,255,255,.025);
}
.hero > * { position: relative; z-index: 1; }
.kicker, .eyebrow {
  color: #a5f4f4;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1 {
  max-width: 740px;
  margin: 18px 0;
  font: 700 clamp(38px, 5vw, 68px)/1.03 "Space Grotesk", Arial, sans-serif;
}
.hero p {
  max-width: 650px;
  color: #e1f2f6;
  font-size: 18px;
  line-height: 1.6;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #fff; }
.button-secondary { border-color: #8bdde7; color: #fff; }
.section {
  width: min(1184px, 100%);
  margin: auto;
  padding: 76px 28px;
}
.section-wide { width: 100%; background: var(--pale); }
.section-wide > .section { padding-top: 76px; padding-bottom: 76px; }
.eyebrow { color: var(--orange); }
/*.section h2 {
  max-width: 760px;
  margin: 12px 0 16px;
  font: 700 clamp(30px, 4vw, 46px)/1.1 "Space Grotesk", Arial, sans-serif;
}*/
.section > p { max-width: 720px; color: var(--muted); line-height: 1.7; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.card {
  min-height: 185px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--aqua); transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin: 18px 0 9px; font: 600 20px "Space Grotesk", Arial, sans-serif; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.card-icon { color: var(--orange); font-size: 27px; }
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: #b8d9e2;
}
.stat { padding: 28px; background: #fff; }
.stat strong { display: block; color: var(--navy); font: 700 34px "Space Grotesk", Arial, sans-serif; }
.stat span { color: var(--muted); font-size: 14px; }
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 62px max(28px, calc((100% - 1184px) / 2));
  background: var(--navy);
  color: #fff;
}
.cta h2 { margin: 0; font: 700 36px "Space Grotesk", Arial, sans-serif; }
.cta p { color: #c4d9e2; }
.footer { padding: 38px 28px; background: #10283c; color: #c9d8df; }
.footer-inner {
  width: min(1184px, 100%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer img { width: 150px; }
.footer small { max-width: 720px; font-size: 12px; line-height: 1.6; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag { padding: 8px 12px; border: 1px solid #a8dce5; color: #fff font-size: 13px; }
.number-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; }
.number-item { padding: 22px; background: #fff; border-left: 4px solid var(--aqua); box-shadow: 0 8px 22px rgba(10,63,103,.06); }
.number-item strong { display: block; margin-bottom: 7px; font: 600 19px "Space Grotesk", Arial, sans-serif; }
.number-item span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature-panel { padding: 34px; background: var(--navy); color: #fff; }
.feature-panel h3 { margin-top: 0; font: 600 26px "Space Grotesk", Arial, sans-serif; }
.feature-panel p { color: #c4d9e2; line-height: 1.7; }
.form {
  display: grid;
  gap: 13px;
  max-width: 720px;
  margin-top: 30px;
}
.form input, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  font: 14px "DM Sans", Arial, sans-serif;
}
.form textarea { min-height: 120px; resize: vertical; }
.form button { width: fit-content; border: 0; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 950px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 16px; }
  .brand { min-width: 195px; }
  .brand img { width: 165px; }
}
@media (max-width: 760px) {
  .nav-inner { height: 68px; padding: 0 18px; }
  .brand { min-width: 0; }

  .nav-links, .mega-menu { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 62px 24px 72px; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .section { padding: 56px 22px; }
  .section-wide > .section { padding-top: 56px; padding-bottom: 56px; }
  .card-grid, .number-list, .feature-split, .stat-bar { grid-template-columns: 1fr; }
  .cta { display: block; padding: 48px 22px; }
  .cta h2 { margin-bottom: 22px; font-size: 30px; }
  .footer-inner { display: block; }
  .footer small { display: block; margin-top: 18px; }
}

/* Industries Desktop Dropdown Styling */
.industries-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.industries-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
  border-radius: 4px;
}

.industries-dropdown.is-open {
  display: block;
}

.industries-dropdown a {
  display: block;
  padding: 8px 16px;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}

.industries-dropdown a:hover {
  background-color: #f5f5f5;
}