:root {
  --navy: #0f172a;
  --navy-2: #111f38;
  --aqua: #00b8d9;
  --teal: #14b8a6;
  --brand-blue: #1d75bc;
  --brand-blue-dark: #155e98;
  --white: #fff;
  --light: #f8fafc;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
  --radius: 24px;
  --hero-banner-image: url("../images/scaletap-hero.jpg");
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
.navbar-brand {
  font-family: Manrope, sans-serif;
  color: var(--navy);
  letter-spacing: -0.035em;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1200px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 9999;
  background: #fff;
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 8px;
  transition: 0.2s;
}
.skip-link:focus {
  top: 12px;
}
.btn {
  border-radius: 10px;
  font-weight: 700;
  padding: 0.82rem 1.35rem;
  transition: 0.3s;
  border-width: 1px;
}
.btn-lg {
  padding: 1rem 1.55rem;
  font-size: 0.9rem;
}
.btn-primary {
  background: var(--aqua);
  border-color: var(--aqua);
  color: #04141b;
  box-shadow: 0 10px 28px rgba(0, 184, 217, 0.22);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #06c9ea;
  border-color: #06c9ea;
  color: #04141b;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 184, 217, 0.32);
}
.text-link {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 5px;
}
.text-link span {
  color: var(--aqua);
  margin-left: 8px;
  transition: 0.2s;
}
.text-link:hover span {
  margin-left: 13px;
}
.section {
  padding: 120px 0;
}
.eyebrow {
  text-transform: uppercase;
  color: #087e91;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
}
.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--aqua);
}
.eyebrow.light {
  color: #85e9f7;
}
.section-head {
  max-width: 720px;
  margin-bottom: 58px;
}
.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-head.text-center .eyebrow {
  justify-content: center;
}
.section h2 {
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}
.section h2 em,
.before-after h3 em,
.hero h1 em {
  font-style: normal;
  color: var(--aqua);
}
.section-head p,
.section-intro p,
.lead-copy {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 630px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #dce6ec;
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 35px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
}
.navbar {
  padding: 18px 0;
  transition: 0.3s;
}
.scrolled .navbar {
  padding: 11px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue) !important;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}
.brand-logo-frame {
  display: block;
  width: 150px;
  overflow: hidden;
}
.brand-logo {
  display: block;
  width: 150px;
  height: auto;
}
.navbar-brand small {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.47rem;
  letter-spacing: 0.28em;
  color: #9aafbf;
  margin-top: 5px;
}
.navbar-nav {
  gap: 10px;
}
.nav-link {
  position: relative;
  color: #24445f !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 12px !important;
}
.nav-link:before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--brand-blue-dark) !important;
}
.nav-link:hover:before,
.nav-link:focus:before,
.nav-link.active:before {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--brand-blue) !important;
}
.nav-link.active:hover,
.nav-link.active:focus {
  color: var(--brand-blue-dark) !important;
}
.nav-link.active:before {
  animation: navUnderlineIn 0.4s ease both;
}
@keyframes navUnderlineIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.nav-cta {
  margin-left: 25px;
  font-size: 0.78rem;
  padding: 0.72rem 1rem;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.nav-cta:hover,
.nav-cta:focus {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  color: #fff;
}
.navbar-toggler {
  border: 0;
  padding: 8px;
  box-shadow: none !important;
}
.navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--brand-blue);
  margin: 5px;
}
.mega-menu {
  min-width: 590px;
  left: 50% !important;
  transform: translateX(-50%);
  padding: 16px;
  border: 1px solid #dce6ec;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(2, 8, 23, 0.18);
}
.mega-menu > div {
  display: flex;
  align-items: center;
  padding: 13px;
  border-radius: 10px;
}
.mega-menu > div:hover {
  background: #f1f7f9;
}
.product-menu {
  min-width: 280px;
  padding: 10px;
  border: 1px solid #dce6ec;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(2, 8, 23, 0.18);
}
.product-menu .dropdown-item {
  padding: 12px 14px;
  border-radius: 9px;
  color: var(--navy);
}
.product-menu .dropdown-item:hover,
.product-menu .dropdown-item:focus {
  background: #edf9fb;
  color: #087e91;
}
.product-menu .dropdown-item.active {
  background: var(--brand-blue);
  color: #fff;
}
.product-menu .dropdown-item.active small {
  color: rgba(255, 255, 255, 0.78);
}
.product-menu strong,
.product-menu small {
  display: block;
}
.product-menu strong {
  font-family: Manrope, sans-serif;
  font-size: 0.84rem;
}
.product-menu small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.65rem;
}
.mega-menu a {
  font-family: Manrope;
  color: var(--navy);
  font-weight: 800;
}
.mega-menu a small {
  display: block;
  font-family: Inter;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.72rem;
}
.menu-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 9px;
  background: #e4f9fc;
  color: #05839a;
  font-size: 0.65rem;
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  min-height: 750px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 24, 0.2), rgba(3, 10, 24, 0.02)),
    var(--hero-banner-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 22, 0.34) 0%, transparent 60%),
    linear-gradient(0deg, rgba(3, 9, 22, 0.5), transparent 35%);
}
@keyframes heroDrift {
  to {
    transform: scale(1.045) translateX(-0.6%);
  }
}
#waterCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.4vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 26px;
  max-width: 750px;
}
.hero h1 em {
  display: block;
}
.hero-lead {
  font-size: 1.08rem;
  max-width: 620px;
  color: #c5d3de;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 35px;
}
.hero .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.hero .btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
  color: #d0dae3;
  font-size: 0.76rem;
}
.trust-row i {
  color: var(--teal);
  font-style: normal;
  margin-right: 5px;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b7c8d4;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.scroll-cue > span {
  width: 24px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative;
}
.scroll-cue > span:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 8px;
  border-radius: 4px;
  background: var(--aqua);
  top: 7px;
  left: 10px;
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  50% {
    transform: translateY(14px);
    opacity: 0.3;
  }
}
.proof-strip {
  background: #fff;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 5;
}
.proof-item {
  padding: 28px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 13px;
}
.proof-item:last-child {
  border: 0;
}
.proof-item strong {
  font-family: Manrope;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.proof-item:nth-child(n + 3) strong {
  font-size: 1.45rem;
}
.proof-item small {
  display: block;
  min-width: 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--muted);
  max-width: 115px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .proof-item {
    gap: 9px;
    padding-right: 18px;
    padding-left: 18px;
  }
  .proof-item:nth-child(n + 3) strong {
    font-size: 1.15rem;
  }
  .proof-item small {
    font-size: 0.64rem;
  }
}

/* Problem */
.problem-section {
  background: var(--light);
}
.issue-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: 0.35s;
}
.issue-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 184, 217, 0.35);
}
.issue-card .icon-box {
  width: 48px;
  height: 48px;
  background: #eefbfc;
  color: #078ca2;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 30px;
}
.issue-no {
  position: absolute;
  top: 30px;
  right: 25px;
  color: #cbd5e1;
  font-size: 0.65rem;
  font-weight: 800;
}
.issue-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
}
.issue-card p {
  font-size: 0.84rem;
  color: var(--muted);
  min-height: 72px;
}
.severity {
  height: 3px;
  background: #edf2f7;
  margin: 22px 0 10px;
  border-radius: 3px;
}
.severity span {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
  border-radius: 3px;
}
.issue-card small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9bac;
  font-size: 0.56rem;
  font-weight: 800;
}
.before-after {
  margin-top: 85px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.ba-visual {
  min-height: 430px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.ba-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.ba-copy {
  padding: 65px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ba-copy h3 {
  font-size: 2.1rem;
  font-weight: 800;
}
.ba-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 15px 0 25px;
}

/* Process */
.process-section {
  background: var(--navy);
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
}
.process-section:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(0, 184, 217, 0.14);
  right: -240px;
  top: -180px;
  box-shadow: 0 0 100px rgba(0, 184, 217, 0.07) inset;
}
.process-section h2 {
  color: #fff;
}
.process-section .section-intro p {
  color: #9fb0c0;
}
.section-intro {
  margin-bottom: 55px;
}
.process-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 38px;
  height: 100%;
  transition: 0.35s;
}
.process-card:hover,
.process-card.featured {
  border-color: rgba(0, 184, 217, 0.55);
  background: rgba(0, 184, 217, 0.07);
  transform: translateY(-6px);
}
.process-num {
  position: absolute;
  right: 28px;
  top: 24px;
  color: #577086;
  font-family: Manrope;
  font-size: 0.75rem;
  font-weight: 800;
}
.process-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #14253e;
  margin-bottom: 30px;
}
.process-icon svg {
  width: 58px;
  fill: none;
  stroke: var(--aqua);
  stroke-width: 2;
}
.process-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}
.process-card p {
  font-size: 0.86rem;
  color: #9eb0bf;
  min-height: 82px;
}
.process-tag {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8ee7f2;
  border: 1px solid rgba(0, 184, 217, 0.28);
  border-radius: 20px;
  padding: 6px 10px;
}

/* Solutions */
.product-showcase {
  background: #fff;
}
.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.partner-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
  transition: 0.4s ease;
}
.partner-product:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 184, 217, 0.42);
  box-shadow: var(--shadow);
}
.partner-product-visual {
  min-height: 285px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
.partner-product-visual.product-photo {
  padding: 0 18px;
}
.product-photo img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: contain;
}
.product-photo .partner-label {
  z-index: 1;
  border-color: rgba(29, 117, 188, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.partner-label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  color: #a9edf5;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-product-copy {
  padding: 34px;
}
.partner-product-copy > span {
  color: #08879b;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-product-copy h3 {
  margin: 8px 0 12px;
  font-size: 2rem;
  font-weight: 800;
}
.partner-product-copy p,
.partner-product-copy li {
  color: var(--muted);
  font-size: 0.8rem;
}
.partner-product-copy ul {
  margin: 20px 0 25px;
  padding: 0;
  list-style: none;
}
.partner-product-copy li {
  padding: 5px 0;
}
.partner-product-copy li:before {
  content: "\2713";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 800;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-actions .btn {
  font-size: 0.72rem;
}
.product-actions .text-link {
  font-size: 0.7rem;
}
.distributor-note {
  margin: 22px auto 0;
  max-width: 760px;
  color: #8493a2;
  font-size: 0.63rem;
  text-align: center;
}
.solutions-section {
  background: #fff;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.solution-card {
  border: 1px solid var(--line);
  border-radius: 19px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.solution-image {
  height: 235px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #dff7fb, #9bd9e4);
}

.solution-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 17px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 7px 11px;
  border-radius: 20px;
}
.line-art {
  position: relative;
  z-index: 1;
  font-family: Manrope;
  font-size: 6rem;
  color: rgba(15, 23, 42, 0.7);
  text-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  transition: 0.4s;
}
.industrial .line-art {
  color: #7fddea;
}
.solution-card:hover .line-art {
  transform: scale(1.08) translateY(-4px);
}
.solution-copy {
  padding: 28px;
}
.solution-copy > span {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #76909b;
  font-weight: 800;
}
.solution-copy h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 12px 0;
}
.solution-copy p,
.solution-copy li {
  font-size: 0.8rem;
  color: var(--muted);
}
.solution-copy ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.solution-copy li {
  padding: 4px 0;
}
.solution-copy li:before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  margin-right: 8px;
}
.solution-copy a {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--navy);
}
.solution-copy a b {
  float: right;
  color: var(--aqua);
  font-size: 1rem;
}

/* Benefits */
.benefits-section {
  background: var(--light);
}
.metric-card {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 16px;
  padding: 25px 30px;
  color: #fff;
  max-width: 410px;
}
.metric-card strong {
  font-family: Manrope;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1;
}
.metric-card small {
  display: block;
  color: #9db1c3;
  font-size: 0.68rem;
  margin-top: 5px;
}
.metric-ring {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: conic-gradient(var(--aqua) 0 99%, #324159 99%);
  position: relative;
}
.metric-ring:after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--navy);
  border-radius: 50%;
}
.fine-print {
  font-size: 0.62rem;
  color: #94a3b8;
  margin-top: 10px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
  border-radius: 15px;
  transition: 0.3s;
}
.feature-card:hover {
  border-color: rgba(0, 184, 217, 0.4);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transform: translateY(-4px);
}
.feature-card > div {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #e5f9fb;
  color: #078ba0;
  border-radius: 10px;
  font-size: 1.3rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 17px 0 7px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Industries */
.industries-section {
  background: #eaf2f8;
  color: var(--text);
}
.industries-section h2 {
  color: var(--navy);
}
.industries-section .section-intro p {
  color: var(--muted);
}
.industries-section .eyebrow.light {
  color: var(--brand-blue);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #cddce7;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.industry-grid a {
  min-height: 185px;
  color: var(--navy);
  padding: 28px 15px;
  border-right: 1px solid #dce6ec;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.3s;
  position: relative;
}
.industry-grid a:last-child {
  border: 0;
}
.industry-grid a:hover {
  background: var(--brand-blue);
  color: #fff;
}
.industry-grid span {
  position: absolute;
  top: 22px;
  color: var(--brand-blue);
  transition: 0.3s;
}
.industry-grid .industry-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 117, 188, 0.18);
  border-radius: 11px;
  background: rgba(29, 117, 188, 0.08);
}
.industry-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-grid a:hover span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}
.industry-grid b {
  font-family: Manrope;
  font-size: 0.8rem;
}
.industry-grid small {
  font-size: 0.58rem;
  color: var(--muted);
  margin-top: 4px;
}
.industry-grid a:hover small {
  color: rgba(255, 255, 255, 0.78);
}

/* Testimonials */
.testimonials-section {
  background: var(--light);
}
.testimonial {
  display: grid;
  grid-template-columns: 70px 1fr 280px;
  gap: 35px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 45px;
  align-items: center;
}
.quote-mark {
  font-family: Georgia;
  font-size: 6rem;
  line-height: 1;
  color: #cceef3;
  align-self: start;
}
.stars {
  color: #f5aa35;
  letter-spacing: 4px;
  font-size: 0.8rem;
}
.testimonial blockquote {
  font-family: Manrope;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.55;
  margin: 16px 0 25px;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #b9edf3, #1ba7bc);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.7rem;
}
.author strong,
.author small {
  display: block;
}
.author strong {
  font-size: 0.78rem;
  color: var(--navy);
}
.author small {
  font-size: 0.65rem;
  color: var(--muted);
}
.result {
  background: var(--navy);
  border-radius: 15px;
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.result small {
  color: #67dbe9;
  letter-spacing: 0.12em;
  font-size: 0.54rem;
}
.result strong {
  font-family: Manrope;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 12px 0;
}
.result span {
  color: #91a6b8;
  font-size: 0.68rem;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 20px;
}
.carousel-controls button {
  border: 1px solid #cfdbe4;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy);
  transition: 0.2s;
}
.carousel-controls button:hover {
  background: var(--navy);
  color: #fff;
}
.carousel-count {
  font-size: 0.65rem;
  color: #8b9baa;
}
.carousel-count b {
  color: var(--navy);
}

/* FAQ/contact/footer */
.faq-section {
  background: #fff;
}
.faq-section .col-lg-5 > p {
  color: var(--muted);
  max-width: 420px;
}
.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
}
.accordion-button {
  font-family: Manrope;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 23px 0;
  box-shadow: none !important;
  background: transparent !important;
}
.accordion-button:not(.collapsed) {
  color: #078ca2;
}
.accordion-button:after {
  background-size: 13px;
}
.accordion-body {
  padding: 0 35px 22px 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 34px;
}
.contact-options a {
  display: flex;
  gap: 13px;
  align-items: center;
  color: var(--navy);
  padding: 15px;
  border: 1px solid #dce6ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: 0.3s;
}
.contact-options a:hover {
  border-color: rgba(29, 117, 188, 0.4);
  background: #f1f7fc;
  color: var(--brand-blue);
  transform: translateY(-2px);
}
.contact-options a:first-child {
  grid-column: 1/-1;
}
.contact-options a > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--brand-blue);
  background: rgba(29, 117, 188, 0.1);
  border-radius: 9px;
}
.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-options .contact-icon-call {
  color: #1d75bc;
  background: #e8f3fb;
}
.contact-options .contact-icon-whatsapp {
  color: #128c7e;
  background: #e5f7f2;
}
.contact-icon-whatsapp svg {
  fill: currentColor;
  stroke: none;
}
.contact-options .contact-icon-email {
  color: #7c3aed;
  background: #f1eafe;
}
.contact-options a > div {
  min-width: 0;
}
.contact-options small,
.contact-options strong {
  display: block;
}
.contact-options small {
  color: var(--brand-blue);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}
.contact-options strong {
  color: var(--navy);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.form-head {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.form-head span,
.form-head small {
  display: block;
}
.form-head span {
  font-family: Manrope;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
}
.form-head small {
  color: var(--muted);
  font-size: 0.66rem;
}
.contact-form label {
  font-size: 0.63rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 5px;
}
.form-control,
.form-select {
  border: 1px solid #dce5eb;
  border-radius: 8px;
  padding: 0.72rem 0.85rem;
  font-size: 0.78rem;
  background: #fbfdfe;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 0.18rem rgba(0, 184, 217, 0.12);
}
.captcha-box {
  padding: 14px;
  border: 1px solid #dce5eb;
  border-radius: 10px;
  background: #fbfdfe;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-question {
  min-width: 130px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}
.captcha-row .form-control {
  max-width: 120px;
  background: #fff;
}
.form-note {
  text-align: center;
  font-size: 0.54rem;
  color: #94a3b8;
  margin: 10px 0 0;
}
.form-status {
  font-size: 0.65rem;
  color: #087e91;
  margin-top: 6px;
}
.form-status.is-success {
  color: #087e56;
}
.form-status.is-error {
  color: #b42318;
}
.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.7;
}
.site-footer {
  background: #09111f;
  color: #7f91a3;
  padding: 75px 0 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 55px;
  padding-bottom: 55px;
}
.footer-brand p {
  font-size: 0.72rem;
  max-width: 250px;
  margin: 20px 0;
}
.site-footer h3 {
  color: #fff;
  font-family: Inter;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-main > div > a:not(.navbar-brand) {
  display: block;
  color: #8294a5;
  font-size: 0.72rem;
  padding: 5px 0;
}
.footer-main > div > a:hover {
  color: var(--aqua);
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #27354a;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #9badbc;
  transition: 0.25s;
}
.socials a:hover {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.socials a[aria-label*="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.socials .icon-dot {
  fill: currentColor;
  stroke: none;
}
.socials .youtube-play {
  fill: #09111f;
}
.socials a:hover .youtube-play {
  fill: var(--brand-blue);
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
}
.footer-bottom a {
  color: #7f91a3;
  margin: 0 10px;
}
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #18bc78;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(24, 188, 120, 0.35);
  transition: 0.25s;
}
.floating-whatsapp:hover {
  background: #128c62;
  color: #fff;
  transform: translateY(-3px);
}
.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}
.floating-whatsapp span {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: #fff;
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 8px 11px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
  opacity: 0;
  transform: translateX(8px);
  transition: 0.2s;
}
.floating-whatsapp:hover span {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .section {
    padding: 90px 0;
  }
  .site-header {
    background: #fff;
  }
  .navbar-collapse {
    padding: 18px 0 10px;
  }
  .nav-cta {
    margin: 12px 0 0;
  }
  .mega-menu {
    min-width: 0;
    transform: none;
    box-shadow: none;
  }
  .hero-bg {
    background-position: 61% center;
  }
  .hero-bg:after {
    background: linear-gradient(
      90deg,
      rgba(3, 9, 22, 0.92),
      rgba(3, 9, 22, 0.45)
    );
  }
  .hero .col-lg-7 {
    max-width: 680px;
  }
  .proof-item {
    border-bottom: 1px solid var(--line);
  }
  .before-after {
    grid-template-columns: 1fr;
  }
  .ba-visual {
    min-height: 350px;
  }
  .process-card p {
    min-height: auto;
  }
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-card:last-child {
    grid-column: 1/-1;
  }
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .industry-grid a {
    border-bottom: 1px solid #dce6ec;
  }
  .testimonial {
    grid-template-columns: 50px 1fr;
  }
  .testimonial .result {
    grid-column: 2;
  }
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .section {
    padding: 72px 0;
  }
  .hero {
    min-height: auto;
    overflow: visible;
  }
  .hero-content > .row {
    min-height: auto !important;
    align-items: flex-start !important;
    padding: 135px 0 58px;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 1.07;
    margin-bottom: 20px;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
  }
  .captcha-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .captcha-row .form-control {
    max-width: none;
  }
  .trust-row {
    gap: 12px 18px;
  }
  .scroll-cue {
    display: none;
  }
  .proof-item {
    padding: 20px 14px;
    display: block;
  }
  .proof-item strong,
  .proof-item small {
    display: block;
  }
  .proof-item strong {
    font-size: 1.5rem;
  }
  .before-after {
    margin-top: 55px;
  }
  .ba-visual {
    min-height: 250px;
    padding: 16px;
  }
  .ba-copy {
    padding: 35px 25px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }
  .product-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .solution-card:last-child {
    grid-column: auto;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industry-grid a {
    min-height: 145px;
  }
  .testimonial {
    display: block;
    padding: 28px;
  }
  .quote-mark {
    height: 55px;
  }
  .testimonial blockquote {
    font-size: 1.05rem;
  }
  .testimonial .result {
    margin-top: 25px;
    min-height: 150px;
  }
  .contact-options {
    grid-template-columns: 1fr;
  }
  .contact-options a:first-child {
    grid-column: auto;
  }
  .contact-form {
    padding: 25px 20px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    text-align: center;
  }
  .footer-bottom > * {
    display: block;
    margin: 10px;
  }
  .floating-whatsapp span {
    display: none;
  }
}

/* Testimonials page */
.testimonial-hero {
  padding-bottom: 85px;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 24, 0.78), rgba(3, 10, 24, 0.42)),
    var(--hero-banner-image);
  background-size: cover;
  background-position: center;
}
.testimonial-hero h1 {
  max-width: 760px;
}
.testimonial-hero p {
  margin-bottom: 8px;
  color: #a9bbc8;
}
.video-story-section {
  overflow: hidden;
}
.customer-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #07111f;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}
.customer-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.82);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.video-story-section h2 {
  margin: 12px 0 20px;
}
.video-outcomes {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.video-outcomes span {
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}
.video-outcomes b {
  color: var(--aqua);
  font-size: 0.65rem;
}
.testimonial-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-around;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: 0.3s;
}
.story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 184, 217, 0.4);
  box-shadow: var(--shadow);
}
.story-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #087e91;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonial-page .story-card-top {
  display: none;
}
.testimonial-page .story-card {
  min-height: 300px;
}
.testimonial-page .story-card blockquote {
  flex: 0;
  margin: 0 0 18px;
}
.story-card blockquote {
  flex: 1;
  margin: 35px 0 28px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}
.story-result {
  margin: 28px -30px -30px;
  padding: 23px 30px;
  border-radius: 0 0 17px 17px;
  background: var(--navy);
}
.story-result small,
.story-result strong,
.story-result span {
  display: block;
}
.story-result small {
  color: #67dbe9;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.story-result strong {
  margin: 7px 0 2px;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 1rem;
}
.story-result span {
  color: #91a6b8;
  font-size: 0.65rem;
}
@media (max-width: 991.98px) {
  .testimonial-card-grid {
    grid-template-columns: 1fr;
  }
  .story-card {
    min-height: 0;
  }
}
@media (max-width: 767.98px) {
  .testimonial-hero {
    padding-bottom: 65px;
  }
  .customer-video-wrap {
    border-radius: 15px;
  }
  .story-card {
    padding: 25px;
  }
  .story-result {
    margin: 25px -25px -25px;
    padding: 21px 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-bg {
    transform: none;
  }
}

/* Inner pages */
.vulcan-hero {
  position: relative;
  overflow: hidden;
  padding: 175px 0 95px;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 24, 0.82), rgba(3, 10, 24, 0.5)),
    var(--hero-banner-image);
  background-size: cover;
  background-position: center;
  color: #b8c7d4;
}
.vulcan-hero:before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -350px;
  top: -300px;
  border: 1px solid rgba(113, 231, 244, 0.13);
  border-radius: 50%;
}
.vulcan-hero .container {
  position: relative;
  z-index: 1;
}
.vulcan-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.02;
}
.vulcan-hero h1 em {
  color: var(--aqua);
  font-style: normal;
}
.vulcan-hero p {
  max-width: 610px;
  font-size: 1.02rem;
}
.vulcan-product-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.vulcan-stage-image {
  display: block;
  width: 100%;
  max-height: 470px;
  object-fit: contain;
}
.product-assurance {
  position: relative;
  z-index: 3;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.product-assurance .col-6 {
  padding: 24px 27px;
  border-right: 1px solid var(--line);
}
.product-assurance strong,
.product-assurance small {
  display: block;
}
.product-assurance strong {
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: 0.85rem;
}
.product-assurance small {
  color: var(--muted);
  font-size: 0.62rem;
}
.vulcan-science-visual {
  min-height: 400px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.vulcan-science-image {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}
.vulcan-growth-visual {
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.vulcan-growth-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.calmat-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #07111f;
  box-shadow: var(--shadow);
}
.calmat-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.support-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}
.support-grid span {
  color: var(--aqua);
  font-size: 0.62rem;
  font-weight: 800;
}
.support-grid h3 {
  margin: 17px 0 7px;
  font-size: 1rem;
}
.support-grid p {
  margin: 0;
  font-size: 0.72rem;
}
.inner-page .site-header {
  background: #fff;
}
.page-hero {
  position: relative;
  padding: 185px 0 100px;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 24, 0.82), rgba(3, 10, 24, 0.5)),
    var(--hero-banner-image);
  background-size: cover;
  background-position: center;
  color: #c5d3de;
  overflow: hidden;
}
.page-hero:before {
  content: "";
  position: absolute;
  right: -12%;
  top: -70%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(0, 184, 217, 0.16);
  box-shadow: inset 0 0 140px rgba(0, 184, 217, 0.07);
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.03;
  max-width: 880px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--aqua);
}
.page-hero p {
  max-width: 670px;
  font-size: 1.05rem;
}
.breadcrumbs {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  color: #7790a5;
}
.breadcrumbs a {
  color: #79ddea;
}
.content-block {
  padding: 100px 0;
}
.content-block.alt {
  background: var(--light);
}
.content-block.dark {
  background: #101d32;
  color: #a8b7c5;
}
.content-block.dark h2,
.content-block.dark h3 {
  color: #fff;
}
.content-block h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
}
.content-block h2 em {
  color: var(--aqua);
  font-style: normal;
}
.content-block p {
  color: var(--muted);
}
.content-block.dark p {
  color: #9caebd;
}
.info-card {
  height: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 184, 217, 0.4);
}
.info-card .card-index {
  display: block;
  color: var(--aqua);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 35px;
}
.info-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
}
.info-card p {
  font-size: 0.82rem;
  margin: 0;
}
.editorial-visual {
  min-height: 430px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.editorial-visual.about-gallery {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: visible;
  background: transparent;
}
.editorial-visual.about-gallery:before,
.editorial-visual.about-gallery:after {
  display: none;
}
.about-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}
.check-list li:before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
  margin-right: 12px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 35px;
}
.stat-box {
  padding: 20px;
  background: #eef9fb;
  border-radius: 12px;
}
.stat-box strong {
  display: block;
  font-family: Manrope;
  color: var(--navy);
  font-size: 1.7rem;
}
.stat-box small {
  color: var(--muted);
  font-size: 0.62rem;
}
.article-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.article-art {
  height: 180px;
  background: linear-gradient(135deg, #12243e, #0b7185);
  display: grid;
  place-items: center;
  color: #82e8f5;
  font-size: 3rem;
}
.article-card:nth-child(2) .article-art {
  background: linear-gradient(135deg, #183a43, #14b8a6);
}
.article-card:nth-child(3) .article-art {
  background: linear-gradient(135deg, #293649, #667b8e);
}
.article-copy {
  padding: 25px;
}
.article-copy span {
  font-size: 0.56rem;
  color: #087e91;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.article-copy h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 10px 0;
}
.article-copy p {
  font-size: 0.75rem;
}
.article-copy a {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}
.page-cta {
  padding: 80px 0;
  background: linear-gradient(120deg, #0d1a2f, #123d4b);
  color: #fff;
}
.page-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}
.page-cta p {
  color: #a9bbc8;
  margin: 0;
}
.page-cta .btn {
  white-space: nowrap;
}
.compact-contact {
  padding: 100px 0;
  background: var(--light);
}

/* 404 page */
.not-found-hero {
  position: relative;
  padding: 175px 0 95px;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 24, 0.84), rgba(3, 10, 24, 0.5)),
    var(--hero-banner-image);
  background-size: cover;
  background-position: center;
  color: #c5d3de;
  overflow: hidden;
}
.not-found-hero:before {
  content: "";
  position: absolute;
  right: -180px;
  top: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(0, 184, 217, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(0, 184, 217, 0.08);
}
.not-found-hero .container {
  position: relative;
}
.not-found-panel {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1fr;
  gap: 45px;
  align-items: center;
  max-width: 980px;
}
.not-found-code {
  color: rgba(255, 255, 255, 0.13);
  font-family: Manrope, sans-serif;
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
}
.not-found-copy h1 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
}
.not-found-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #b8c7d4;
  font-size: 1rem;
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.not-found-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.not-found-actions .btn-outline-light:hover,
.not-found-actions .btn-outline-light:focus {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.not-found-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin-top: 58px;
}
.not-found-links a {
  min-height: 128px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: 0.3s;
}
.not-found-links a:hover,
.not-found-links a:focus {
  border-color: rgba(0, 184, 217, 0.58);
  background: rgba(0, 184, 217, 0.09);
  transform: translateY(-4px);
}
.not-found-links strong,
.not-found-links span {
  display: block;
}
.not-found-links strong {
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.not-found-links span {
  margin-top: 8px;
  color: #a9bbc8;
  font-size: 0.72rem;
  line-height: 1.55;
}
@media (max-width: 767.98px) {
  .vulcan-hero {
    padding: 140px 0 70px;
  }
  .vulcan-product-stage {
    min-height: 360px;
  }
  .product-assurance .col-6 {
    border-bottom: 1px solid var(--line);
  }
  .vulcan-science-visual {
    min-height: 320px;
    padding: 12px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 145px 0 70px;
  }
  .content-block {
    padding: 70px 0;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .page-cta {
    text-align: center;
  }
  .page-cta .btn {
    margin-top: 25px;
  }
  .editorial-visual {
    min-height: 300px;
  }
  .not-found-hero {
    padding: 145px 0 70px;
  }
  .not-found-panel,
  .not-found-links {
    grid-template-columns: 1fr;
  }
  .not-found-panel {
    gap: 24px;
  }
  .not-found-code {
    font-size: clamp(4.5rem, 24vw, 6.5rem);
  }
  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }
  .not-found-links {
    margin-top: 42px;
  }
  .not-found-links a {
    min-height: 0;
  }
}
