:root {
  --brand-900: #004174;
  --brand-800: #0f4271;
  --accent-600: #ff5200;
  --accent-700: #e54a00;
  --ink-900: #0b1220;
  --ink-700: #26344d;
  --ink-500: #5d6b85;
  --surface-0: #ffffff;
  --surface-1: #f7f9fc;
  --border: rgba(34, 211, 238, 0.62);
  --shadow-sm: 0 10px 25px rgba(11, 18, 32, 0.08);
  --shadow-md: 0 20px 45px rgba(11, 18, 32, 0.14);
  --radius-md: 14px;
  --radius-lg: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(900px 360px at 15% 0%, rgba(34, 211, 238, 0.12), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-1) 42%, #ffffff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.industry-container {
  width: 84%;
  margin: 0 auto;
}

.industry-hero {
  padding: 34px 0 28px;
}

.industry-hero__media {
  position: relative;
  min-height: clamp(280px, 38vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(15, 66, 113, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--brand-900);
}

.industry-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 65, 116, 0.78), rgba(0, 65, 116, 0.22), rgba(0, 65, 116, 0));
}

.industry-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.industry-hero__content {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 4vw, 52px);
  top: 50%;
  max-width: 560px;
  color: #ffffff;
  transform: translateY(-50%);
}

.industry-eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 11px;
  border: 1px solid rgba(34, 211, 238, 0.7);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.industry-hero p:last-child {
  margin: 14px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  font-weight: 800;
}

.industry-content {
  padding: 14px 0 76px;
}

.industry-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.industry-grid::after {
  display: none;
}

.industry-column {
  min-width: 0;
  padding: clamp(26px, 3vw, 44px);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(26, 58, 92, 0.13);
}

.industry-column h2 {
  margin: 0 0 18px;
  color: var(--brand-900);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.14;
  letter-spacing: 0;
}

.industry-column h3 {
  margin: 28px 0 8px;
  color: var(--brand-900);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.18;
  letter-spacing: 0;
}

.industry-column p {
  margin: 0 0 16px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
}


.industry-column .subtitle {
  color: var(--brand-900);
  
}

.industry-column .lead {
  color: var(--brand-900);
  font-weight: 700;
}


.industry-diagram {
  margin: 34px auto;
  max-width: 430px;
}

.industry-diagram img {
  width: 100%;
  height: auto;
}

.industry-column ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}

.industry-column li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-700);
  line-height: 1.5;
}

.industry-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-600);
  box-shadow: 0 0 0 4px rgba(255, 82, 0, 0.12);
}

.industry-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--accent-600);
  box-shadow: 0 12px 22px rgba(255, 82, 0, 0.22);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.industry-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-700);
  box-shadow: 0 18px 34px rgba(255, 82, 0, 0.26);
}

@media (max-width: 900px) {
  .industry-container {
    width: calc(100% - 32px);
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-grid::after {
    display: none;
  }

  .industry-hero__media::after {
    background: linear-gradient(90deg, rgba(0, 65, 116, 0.82), rgba(0, 65, 116, 0.34));
  }
}

@media (max-width: 560px) {
  .industry-hero {
    padding-top: 24px;
  }

  .industry-hero__content {
    left: 20px;
    right: 20px;
  }

  .industry-column {
    padding: 16px 0;
  }
}
