:root {
  --primary: #0f766e;
  --teal: #14b8a6;
  --blue: #2563eb;
  --purple: #7c3aed;
  --orange: #f97316;
  --dark: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --grad: linear-gradient(135deg, #0f766e, #2563eb 55%, #7c3aed);
  --shadow: 0 28px 90px rgba(15, 23, 42, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    Segoe UI,
    Tahoma,
    sans-serif;
  color: var(--dark);
  background: #f8fbff;
  overflow-x: hidden;
  line-height: 1.7;
}

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

.container {
  width: min(1240px, 92%);
  margin: auto;
  position: relative;
  z-index: 2;
}

.industry-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(20, 184, 166, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 14%,
      rgba(37, 99, 235, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #eef7ff 100%);
}

.industry-bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  animation: gridMove 20s linear infinite;
}

.industry-light {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.65;
  pointer-events: none;
  animation: floatOrb 9s ease-in-out infinite;
}

.industry-light-one {
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.22);
  left: -130px;
  top: 120px;
}

.industry-light-two {
  width: 360px;
  height: 360px;
  background: rgba(37, 99, 235, 0.18);
  right: -150px;
  top: 230px;
  animation-delay: 1.4s;
}

.industry-light-three {
  width: 280px;
  height: 280px;
  background: rgba(124, 58, 237, 0.15);
  left: 48%;
  bottom: -120px;
  animation-delay: 2.4s;
}

/* HERO */
.industry-hero {
  min-height: 100vh;
  padding: 138px 0 82px;
  display: grid;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.18);
  color: var(--primary);
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.08);
}

.hero-copy h1 {
  max-width: 830px;
  margin: 20px 0 22px;
  font-size: clamp(3.1rem, 5.8vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: -0.078em;
}

.hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.09rem;
  font-weight: 650;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition: 0.32s ease;
}

.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.25);
}

.btn-light {
  color: var(--dark);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.btn:hover {
  transform: translateY(-5px);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 690px;
  margin-top: 34px;
}

.trust-metrics article {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
  transition: 0.3s ease;
}

.trust-metrics article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.trust-metrics strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 950;
}

.trust-metrics span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

/* HERO CONSOLE */
.industry-console {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 24px;
  border-radius: 42px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: var(--shadow);
  animation: cardFloat 6s ease-in-out infinite;
}

.industry-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(20, 184, 166, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 84% 70%,
      rgba(124, 58, 237, 0.12),
      transparent 25%
    );
}

.console-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-weight: 950;
}

.console-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
}

.console-top span:nth-child(2) {
  background: #f59e0b;
}
.console-top span:nth-child(3) {
  background: #22c55e;
}

.console-radar {
  position: relative;
  display: grid;
  place-items: center;
  height: 390px;
}

.radar-core {
  position: relative;
  z-index: 4;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background: #06111f;
  color: #14b8a6;
  font-size: 3.1rem;
  font-weight: 950;
  box-shadow: 0 0 90px rgba(20, 184, 166, 0.3);
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(37, 99, 235, 0.32);
  animation: spin 18s linear infinite;
}

.ring-a {
  width: 270px;
  height: 270px;
}
.ring-b {
  width: 370px;
  height: 370px;
  animation-direction: reverse;
}

.radar-node {
  position: absolute;
  z-index: 5;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  font-size: 1.65rem;
  animation: floatOrb 5.2s ease-in-out infinite;
}

.n1 {
  top: 1px;
  left: 42%;
}
.n2 {
  right: 50px;
  top: 145px;
  animation-delay: 0.2s;
}
.n3 {
  right: 60px;
  bottom: 80px;
  animation-delay: 0.4s;
}
.n4 {
  left: 60px;
  bottom: 80px;
  animation-delay: 0.6s;
}
.n5 {
  left: 50px;
  top: 145px;
  animation-delay: 0.8s;
}
.n6 {
  top: 339px;
  right: 225px;
  animation-delay: 1s;
}

.console-pills {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.console-pills span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: #334155;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.console-pills i {
  color: var(--primary);
}

.console-progress {
  position: relative;
  z-index: 5;
  padding: 19px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #dbeafe;
}

.console-progress div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 950;
}

.console-progress em {
  display: block;
  width: 98%;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--purple));
  animation: progressPulse 2s ease-in-out infinite alternate;
}

/* STRIP */
.industry-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding-bottom: 70px;
}

.strip-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.strip-card span {
  color: var(--muted);
  font-weight: 900;
}

.strip-card strong {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.12),
    rgba(37, 99, 235, 0.09)
  );
  font-weight: 950;
}

/* SECTIONS */
.section {
  position: relative;
  padding: 94px 0;
}

.section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2 {
  max-width: 860px;
  margin: 14px auto;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-head p {
  max-width: 760px;
  margin: auto;
  color: var(--muted);
  font-weight: 650;
}

/* CARDS */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 355px;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.07);
  transition: 0.38s ease;
  transform-style: preserve-3d;
}

.industry-card::before {
  content: attr(data-index);
  position: absolute;
  right: 20px;
  top: 10px;
  color: #eaf2ff;
  font-size: 5rem;
  line-height: 1;
  font-weight: 950;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(20, 184, 166, 0.18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.08),
      rgba(37, 99, 235, 0.08),
      rgba(124, 58, 237, 0.07)
    );
  opacity: 0;
  transition: 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-12px) rotateX(4deg);
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: var(--shadow);
}

.industry-card:hover::after {
  opacity: 1;
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

.industry-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 23px;
  background: var(--grad);
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.22);
  transition: 0.35s ease;
}

.industry-card:hover .industry-icon {
  transform: rotate(-6deg) scale(1.08);
}

.industry-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  font-weight: 950;
}

.industry-card p {
  color: var(--muted);
  font-weight: 620;
}

.industry-card ul {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  list-style: none;
}

.industry-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 850;
}

.industry-card li::before {
  content: "✓";
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.78rem;
}

/* CAPABILITIES */
.capability-section {
  background: linear-gradient(135deg, #ffffff, #eef6ff);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.capability-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
}

.capability-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.capability-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.12),
    rgba(37, 99, 235, 0.1)
  );
  font-size: 1.35rem;
}

.capability-card h3 {
  margin-bottom: 8px;
}
.capability-card p {
  color: var(--muted);
}

/* METHOD */
.method-section {
  background: #06111f;
  color: #fff;
  overflow: hidden;
}

.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 184, 166, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.method-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.method-copy h2 {
  margin: 14px 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.method-copy p {
  color: #cbd5e1;
  margin-bottom: 26px;
  font-weight: 650;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.method-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: 0.35s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.method-card span {
  color: #5eead4;
  font-size: 2rem;
  font-weight: 950;
}

.method-card h3 {
  margin: 4px 0 8px;
}
.method-card p {
  color: #cbd5e1;
}

/* CONSULTATION */
.consultation-section {
  background: linear-gradient(135deg, #fff, #eef6ff);
}

.consultation-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: 38px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.consultation-card h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.consultation-card p {
  color: var(--muted);
  font-weight: 650;
}

.industry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.industry-form input,
.industry-form select,
.industry-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 17px;
  border: 1px solid #dbeafe;
  background: #f8fafc;
  font: inherit;
  font-weight: 700;
  outline: 0;
  transition: 0.3s ease;
}

.industry-form textarea {
  grid-column: span 2;
  min-height: 125px;
  resize: vertical;
}

.industry-form button {
  grid-column: span 2;
}

.industry-form input:focus,
.industry-form select:focus,
.industry-form textarea:focus {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12);
}

/* REVEAL */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
}

.js .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.32s;
}

/* ANIMATIONS */
@keyframes gridMove {
  to {
    background-position: 54px 54px;
  }
}
@keyframes floatOrb {
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes cardFloat {
  50% {
    transform: translateY(-12px) rotateX(2deg);
  }
}
@keyframes progressPulse {
  to {
    transform: scaleX(0.96);
    transform-origin: left;
    filter: saturate(1.4);
  }
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .hero-layout,
  .method-layout,
  .consultation-card {
    grid-template-columns: 1fr;
  }

  .industry-console {
    max-width: 650px;
    margin: auto;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .industry-hero {
    padding: 118px 0 66px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-actions,
  .trust-metrics,
  .console-pills,
  .industries-grid,
  .capability-grid,
  .method-grid,
  .industry-form {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .industry-console {
    min-height: auto;
  }

  .console-radar {
    height: 310px;
  }

  .radar-node {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
  }

  .consultation-card {
    padding: 24px;
  }

  .industry-form textarea,
  .industry-form button {
    grid-column: auto;
  }
}
