:root {
  --purple: #3f0679;
  --yellow: #ffcd00;
  --bg: #0a0618;
  --surface: #150530;
  --surface2: #1c0840;
  --text: #f0ecf8;
  --muted: #8a7ca0;
  --border: #2a1650;
  --glow-y: rgba(255, 205, 0, 0.12);
  --glow-p: rgba(63, 6, 121, 0.24);
}

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

html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(63, 6, 121, 0.5), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(255, 205, 0, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img,
iframe {
  max-width: 100%;
}

.industry-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(22px, 5vw, 80px);
  background: rgba(10, 6, 24, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.industry-logo {
  display: inline-flex;
  align-items: center;
}

.industry-logo img {
  width: auto;
  height: 30px;
}

.industry-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.industry-nav-links a:hover {
  color: var(--text);
}

.nav-phone {
  color: var(--yellow);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 700;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.industry-hero,
.industry-section,
.local-ops,
.related-industries,
.industry-cta {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
}

.industry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: center;
  min-height: 660px;
  padding: 92px 0 76px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid var(--glow-y);
  border-radius: 999px;
  color: var(--yellow);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-hero h1 {
  max-width: 12ch;
  color: var(--text);
  font-size: clamp(44px, 6.4vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.industry-hero h1 span,
.section-title span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 62ch;
  margin-top: 22px;
  color: rgba(240, 236, 248, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  border: 1px solid rgba(255, 205, 0, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 205, 0, 0.14), transparent 32%),
    rgba(21, 5, 48, 0.76);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  padding: 24px;
}

.hero-panel h2 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 18px;
}

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

.metric {
  padding: 14px;
  border: 1px solid rgba(138, 124, 160, 0.18);
  border-radius: 8px;
  background: rgba(10, 6, 24, 0.54);
}

.metric strong {
  display: block;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  margin-bottom: 4px;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.industry-section,
.local-ops,
.related-industries,
.industry-cta {
  padding: 82px 0;
}

.section-intro {
  margin-bottom: 32px;
}

.section-title {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-copy {
  max-width: 62ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four,
.related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.related-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(21, 5, 48, 0.74);
  padding: 24px;
}

.info-card h3,
.related-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
}

.info-card p,
.related-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.local-ops {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.local-panel,
.ops-list {
  border: 1px solid rgba(255, 205, 0, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(26, 0, 56, 0.9), rgba(21, 5, 48, 0.72));
  padding: 28px;
}

.local-panel h2 {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 30px;
  line-height: 1.1;
}

.local-panel p {
  color: rgba(240, 236, 248, 0.72);
  line-height: 1.7;
}

.ops-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.ops-list li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.ops-list strong {
  color: var(--text);
}

.related-grid {
  display: grid;
  gap: 14px;
}

.related-card {
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}

.related-card:hover {
  border-color: rgba(255, 205, 0, 0.36);
  transform: translateY(-2px);
}

.industry-cta {
  text-align: center;
}

.industry-cta h2 {
  margin: 0 auto 14px;
  max-width: 780px;
  color: var(--yellow);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
}

.industry-cta p {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.7;
}

.industry-footer {
  border-top: 1px solid var(--border);
  padding: 44px clamp(24px, 6vw, 90px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.footer-logo {
  height: 26px;
  margin-bottom: 12px;
}

.footer-tagline,
.footer-col a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: rgba(240, 236, 248, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border: 1px solid rgba(138, 124, 160, 0.24);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(10, 6, 24, 0.45);
  line-height: 1;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--yellow);
  border-color: rgba(255, 205, 0, 0.45);
  background: rgba(255, 205, 0, 0.08);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social .social-dot {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: #3a2560;
  font-size: 12px;
}

@media (max-width: 980px) {
  .industry-nav-links a:not(.nav-cta):not(.nav-phone) {
    display: none;
  }

  .industry-hero,
  .local-ops {
    grid-template-columns: 1fr;
  }

  .industry-hero {
    min-height: auto;
    padding-top: 76px;
  }

  .industry-hero h1 {
    max-width: 14ch;
  }

  .card-grid.three,
  .card-grid.four,
  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .industry-nav {
    padding: 14px 20px;
  }

  .industry-nav-links {
    gap: 12px;
  }

  .industry-nav-links .nav-phone {
    display: none;
  }

  .nav-cta {
    padding: 0 16px;
    font-size: 13px;
  }

  .industry-hero,
  .industry-section,
  .local-ops,
  .related-industries,
  .industry-cta {
    width: calc(100vw - 40px);
  }

  .industry-hero {
    padding: 58px 0 50px;
  }

  .industry-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-copy,
  .section-copy {
    font-size: 15.5px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .card-grid.three,
  .card-grid.four,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industry-section,
  .local-ops,
  .related-industries,
  .industry-cta {
    padding: 56px 0;
  }

  .info-card,
  .related-card,
  .local-panel,
  .ops-list {
    padding: 20px;
  }

  .industry-footer {
    padding: 36px 20px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
