:root {
  --ink: #17191d;
  --charcoal: #242832;
  --muted: #64707d;
  --line: #dfe5eb;
  --soft: #f4f6f8;
  --white: #ffffff;
  --orange: #f47b20;
  --silver: #cdd5df;
  --steel: #758291;
  --shadow: 0 18px 45px rgba(20, 24, 30, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.62;
  background: var(--white);
}

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

a:hover {
  color: var(--orange);
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar {
  color: #dce3ea;
  background: #15171b;
  font-size: 13px;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-weight: 850;
  flex: 0 0 auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  border: 1px solid #b8c2cd;
  background: linear-gradient(135deg, #fbfcfd, #aeb8c3);
  font-size: 22px;
  font-weight: 950;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
  min-width: 0;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 270px;
  display: none;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  padding: 9px 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  font-weight: 850;
}

.btn:hover {
  color: var(--white);
  filter: brightness(0.95);
}

.btn.secondary {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.96), rgba(36, 40, 50, 0.84)),
    radial-gradient(circle at 80% 15%, rgba(244, 123, 32, 0.28), transparent 27%),
    var(--charcoal);
}

.hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: 54px;
  padding: 82px 0 94px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 76px);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

h1,
.page-hero h1,
.hero h1 {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(53, 89, 199, 0.24);
}

h2 {
  color: #eef3ff;
}

h3 {
  color: #ffffff;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 780px;
  color: #dde5ed;
  font-size: 19px;
}

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

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(205, 213, 223, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

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

.metric {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.metric strong {
  display: block;
  font-size: 30px;
}

.section {
  padding: 78px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: var(--white);
  background: var(--charcoal);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 24, 30, 0.03);
}

.dark .card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 48px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 12px;
  height: 12px;
  background: var(--orange);
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.brand-pill {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 800;
}

.brand-section {
  margin-top: 34px;
}

.brand-section h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.brand-logo-grid.compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.brand-logo-tile {
  min-height: 126px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px;
  border: 1px solid rgba(244, 244, 244, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #171717;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.brand-logo-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(142, 168, 255, 0.5);
  box-shadow: 0 22px 70px rgba(53, 89, 199, 0.24);
}

.brand-logo-tile img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(142, 168, 255, 0.18));
}

.brand-logo-tile span {
  color: #eef3ff;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.brand-logo-tile.text-logo strong {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  max-width: 100%;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.brand-disclaimer {
  max-width: 880px;
  margin-top: 22px;
  color: #aeb8c4;
  font-size: 13px;
}

.security-trust {
  padding: 56px 0;
  background:
    linear-gradient(90deg, rgba(1, 24, 53, 0.96), rgba(12, 12, 12, 0.94)),
    #011835;
  border-top: 1px solid rgba(244, 244, 244, 0.12);
  border-bottom: 1px solid rgba(244, 244, 244, 0.12);
}

.security-trust-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: 30px;
  align-items: center;
}

.security-trust-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.security-symbol {
  width: 72px;
  height: 82px;
  position: relative;
  display: inline-block;
  background: linear-gradient(145deg, #eef3ff, #8ea8ff 54%, #3559c7);
  clip-path: polygon(50% 0, 92% 15%, 84% 70%, 50% 100%, 16% 70%, 8% 15%);
  box-shadow: 0 0 34px rgba(142, 168, 255, 0.28);
}

.security-symbol::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 25px;
  height: 31px;
  border: 5px solid #07111f;
  border-radius: 14px 14px 8px 8px;
}

.security-symbol::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 42px;
  width: 33px;
  height: 24px;
  border-radius: 5px;
  background: #07111f;
}

.security-trust h2 {
  margin-bottom: 8px;
  color: #ffffff;
}

.security-trust p {
  color: #cdd7e6;
}

.security-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.security-trust-item {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(244, 244, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.security-mini {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(142, 168, 255, 0.42);
  border-radius: 8px;
  background: rgba(53, 89, 199, 0.18);
}

.security-mini::before {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.security-mini.lock::before {
  content: "SSL";
}

.security-mini.shield::before {
  content: "\2713";
  font-size: 22px;
}

.security-mini.privacy::before {
  content: "ID";
  font-size: 13px;
}

.security-trust-item h3 {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .security-trust-inner,
  .security-trust-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  padding: 82px 0 70px;
  color: var(--white);
  background: linear-gradient(110deg, #1d2026, #343a44);
}

.content {
  padding: 68px 0;
}

.form {
  display: grid;
  gap: 15px;
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.form textarea {
  min-height: 150px;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.security-question {
  display: inline-block;
  color: #8ea8ff;
  font-weight: 850;
}

.notice {
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: #fff7f0;
}

.section-link {
  margin: 24px 0 0;
}

.section-link a {
  color: #8ea8ff;
  font-weight: 850;
}

.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #ffffff;
  border: 1px solid rgba(142, 168, 255, 0.38);
  border-radius: 8px;
  background: rgba(53, 89, 199, 0.22);
  font-weight: 950;
}

.faq-list,
.faq-preview {
  display: grid;
  gap: 14px;
}

.faq-list details,
.faq-preview details {
  border: 1px solid rgba(244, 244, 244, 0.14);
  border-radius: 8px;
  background: #171717;
}

.faq-list summary,
.faq-preview summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 850;
}

.faq-list details p,
.faq-preview details p {
  margin: 0;
  padding: 0 20px 18px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #128c4a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-float:hover {
  color: #ffffff;
  filter: brightness(1.05);
}

.whatsapp-float::before {
  content: "WA";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  letter-spacing: 0;
}

@media (max-width: 620px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 10px 13px;
  }
}

.cta-band {
  padding: 58px 0;
  color: var(--white);
  background: #15171b;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.site-footer {
  color: #dce3ea;
  background: #101215;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding: 18px 0;
  color: #aeb7c2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-security {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(53, 89, 199, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.footer-security-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #dce6ff;
}

.security-seal {
  min-width: 248px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(142, 168, 255, 0.36);
  border-radius: 8px;
  background: rgba(7, 13, 28, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.security-seal div {
  display: grid;
  gap: 3px;
}

.security-seal strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
}

.security-seal span:not(.seal-shield):not(.seal-lock) {
  color: #8ea8ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seal-shield {
  width: 44px;
  height: 50px;
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, #8ea8ff 56%, #3559c7);
  clip-path: polygon(50% 0, 90% 14%, 82% 70%, 50% 100%, 18% 70%, 10% 14%);
  box-shadow: 0 0 24px rgba(142, 168, 255, 0.28);
}

.seal-lock {
  width: 18px;
  height: 14px;
  position: relative;
  display: block;
  margin-top: 10px;
  border-radius: 3px;
  background: #07111f;
}

.seal-lock::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -10px;
  width: 8px;
  height: 10px;
  border: 3px solid #07111f;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.seal-lock::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 4px;
  height: 5px;
  border-radius: 99px;
  background: #8ea8ff;
}

.footer-security-inner p {
  max-width: 620px;
  margin: 0;
  color: #cdd7e6;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 760px) {
  .footer-security-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-security-inner p {
    text-align: left;
  }

  .security-seal {
    min-width: min(100%, 248px);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding-left: 14px;
    border: 0;
    box-shadow: none;
  }

  .hero-inner,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.four,
  .grid.three,
  .brand-cloud {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .hero-inner {
    min-height: 0;
    padding: 58px 0 70px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .metric-grid,
  .brand-cloud {
    grid-template-columns: 1fr;
  }
}

.black-theme-page {
  color: #eef3f8;
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 123, 32, 0.14), transparent 28%),
    radial-gradient(circle at 12% 30%, rgba(185, 197, 209, 0.1), transparent 26%),
    #07090c;
}

.black-theme-page a:hover {
  color: #ffffff;
}

.black-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 12, 0.88);
  border-bottom: 1px solid rgba(205, 213, 223, 0.16);
  backdrop-filter: blur(16px);
}

.black-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.black-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  font-weight: 900;
}

.black-brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #11151a;
  background: linear-gradient(135deg, #ffffff, #9ca8b5 55%, #eef3f8);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 24px rgba(205, 213, 223, 0.2);
}

.black-brand small {
  display: block;
  color: #aeb8c4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.black-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #cbd5df;
  font-size: 14px;
  font-weight: 800;
}

.black-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #f47b20;
  border-radius: 8px;
  color: #ffffff;
  background: #f47b20;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(244, 123, 32, 0.22);
}

.black-btn.ghost {
  border-color: rgba(205, 213, 223, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.black-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.black-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding: 84px 0;
}

.black-hero-copy h1 {
  max-width: 860px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 82px);
}

.black-eyebrow {
  margin: 0 0 14px;
  color: #f47b20;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.black-lead {
  max-width: 760px;
  color: #cbd5df;
  font-size: 20px;
}

.black-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.black-logo-stage {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(205, 213, 223, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #10161d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.black-logo-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border: 1px solid rgba(244, 123, 32, 0.24);
  transform: translate(12px, 12px);
}

.black-logo-stage img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 6px;
}

.black-section {
  padding: 84px 0;
}

.black-section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.black-section h2,
.black-band h2,
.black-cta h2 {
  color: #ffffff;
}

.black-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.black-card {
  padding: 24px;
  border: 1px solid rgba(205, 213, 223, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.black-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: #f47b20;
  font-weight: 950;
}

.black-card h3 {
  color: #ffffff;
}

.black-card p,
.black-band p,
.black-cta p {
  color: #c5cfda;
}

.black-band {
  padding: 78px 0;
  background: linear-gradient(90deg, #10151b, #171d25);
  border-top: 1px solid rgba(205, 213, 223, 0.12);
  border-bottom: 1px solid rgba(205, 213, 223, 0.12);
}

.black-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.black-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.black-list li {
  padding: 14px 16px;
  border-left: 3px solid #f47b20;
  background: rgba(255, 255, 255, 0.055);
}

.black-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border: 1px solid rgba(205, 213, 223, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 980px) {
  .black-header-inner,
  .black-nav,
  .black-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .black-hero-grid,
  .black-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .black-card-grid {
    grid-template-columns: 1fr;
  }

  .black-hero-grid {
    padding: 58px 0;
  }
}

/* Live site theme match: consultinggrove-dark palette from silverstone.ind.in */
:root {
  --ink: #f4f4f4;
  --charcoal: #0c0c0c;
  --muted: #c3c3c3;
  --line: rgba(244, 244, 244, 0.16);
  --soft: #011835;
  --white: #171717;
  --orange: #3559c7;
  --silver: #abb8c3;
  --steel: #e1e1e1;
}

body {
  color: #f4f4f4;
  background: #0c0c0c;
}

.topbar,
.site-header {
  color: #f4f4f4;
  background: #000a2d;
  border-bottom-color: rgba(244, 244, 244, 0.12);
}

.site-header {
  backdrop-filter: blur(14px);
}

.brand {
  color: #f4f4f4;
  min-width: 260px;
}

.brand-logo {
  display: block;
  width: min(240px, 48vw);
  height: auto;
}

.brand-mark {
  background: #3559c7;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.nav {
  color: #f4f4f4;
}

.dropdown-menu {
  background: #171717;
  border-color: rgba(244, 244, 244, 0.14);
}

.btn {
  background: #3559c7;
  color: #ffffff;
}

.btn.secondary {
  color: #f4f4f4;
  background: #171717;
  border-color: rgba(244, 244, 244, 0.18);
}

.btn.profile-download-btn {
  gap: 10px;
  color: #111827;
  background: linear-gradient(135deg, #ffffff, #cfd7e3);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn.profile-download-btn::before {
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 5px;
  color: #ffffff;
  background: #3559c7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.btn.profile-download-btn:hover {
  color: #111827;
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero,
.page-hero {
  background:
    linear-gradient(100deg, rgba(0, 10, 45, 0.98), rgba(12, 12, 12, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(53, 89, 199, 0.28), transparent 30%),
    #0c0c0c;
}

.eyebrow,
.card .tag,
.tag {
  color: #8ea8ff;
}

.lead,
.section-head p,
.card p,
.split p,
.footer-bottom,
p {
  color: #c3c3c3;
}

.section.soft {
  background: #011835;
}

.card,
.brand-pill,
.metric,
.hero-panel,
.notice {
  color: #f4f4f4;
  background: #171717;
  border-color: rgba(244, 244, 244, 0.14);
}

.brand-pill {
  color: #f4f4f4;
}

.check-list li::before {
  background: #3559c7;
}

.cta-band,
.site-footer,
.footer-bottom {
  background: #000a2d;
}

.form input,
.form select,
.form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #f4f4f4;
  background: #171717;
  border-color: rgba(244, 244, 244, 0.18);
}

.form input::placeholder,
.form textarea::placeholder {
  color: #c3c3c3;
}

.black-brand-logo {
  display: block;
  width: min(300px, 60vw);
  height: auto;
}

.live-logo-panel {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #171717;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.live-logo-panel img {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 10px;
  background: #ffffff;
  border-radius: 8px;
}

.visual-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(244, 244, 244, 0.16);
  background: #111827;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.visual-card img,
.page-visual {
  display: block;
  width: 100%;
  height: auto;
}

.page-visual {
  margin-bottom: 26px;
  border: 1px solid rgba(244, 244, 244, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.image-band {
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(1, 24, 53, 0.96), rgba(12, 12, 12, 0.94)),
    #011835;
}

.image-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.image-band-card {
  overflow: hidden;
  border: 1px solid rgba(244, 244, 244, 0.14);
  border-radius: 8px;
  background: #171717;
}

.image-band-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-band-card h3 {
  padding: 16px;
  margin: 0;
  font-size: 18px;
}

.office-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.office-list .card {
  padding: 20px;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.map-card {
  padding: 18px;
  border: 1px solid rgba(244, 244, 244, 0.14);
  border-radius: 8px;
  background: #171717;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.map-card h3 {
  margin-bottom: 14px;
}

@media (max-width: 780px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
}

.realtime-hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.realtime-hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.realtime-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.image-band-card,
.visual-card,
.page-visual {
  transition: transform 420ms ease, filter 420ms ease, box-shadow 420ms ease;
}

.image-band-card:hover,
.visual-card:hover,
.page-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(53, 89, 199, 0.28), 0 16px 44px rgba(0, 0, 0, 0.36);
}

.image-band-card img {
  transition: transform 520ms ease, filter 520ms ease;
}

.image-band-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.08);
}

.image-band-card,
.visual-card {
  position: relative;
}

.image-band-card::after,
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0%, rgba(142, 168, 255, 0.2) 46%, transparent 62%),
    radial-gradient(circle at var(--mx, 62%) var(--my, 32%), rgba(53, 89, 199, 0.32), transparent 28%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 220ms ease, transform 780ms ease;
}

.image-band-card:hover::after,
.visual-card:hover::after {
  opacity: 1;
  transform: translateX(26%);
}

@keyframes silverstoneGlow {
  0%, 100% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 36px rgba(53, 89, 199, 0.24);
  }
}

.live-logo-panel,
.image-band-card,
.page-visual {
  animation: silverstoneGlow 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .live-logo-panel,
  .image-band-card,
  .page-visual {
    animation: none;
  }

  .image-band-card,
  .visual-card,
  .page-visual,
  .image-band-card img {
    transition: none;
  }
}

@media (max-width: 980px) {
  .image-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logo-grid,
  .brand-logo-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .image-band-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo-grid,
  .brand-logo-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-tile {
    min-height: 112px;
  }
}

/* Final typography polish for dark theme readability */
.hero h1,
.page-hero h1,
.black-hero-copy h1 {
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff 0%, #dce6ff 45%, #8ea8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.section h2,
.content h2,
.cta-band h2,
.black-section h2,
.black-band h2,
.black-cta h2 {
  color: #eef3ff;
}

.card h3,
.image-band-card h3,
.footer-grid h3,
.metric strong {
  color: #ffffff;
}

.eyebrow,
.tag,
.card .tag {
  color: #8ea8ff;
}

.lead {
  color: #dce6ff;
}

/* Header stability fix: keep full menu visible on desktop/tablet pages. */
@media (min-width: 761px) {
  .site-header .header-inner {
    flex-wrap: nowrap;
  }

  .site-header .nav-toggle {
    display: none !important;
  }

  .site-header .nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .site-header .dropdown-menu {
    position: absolute !important;
    display: none !important;
  }

  .site-header .dropdown:hover .dropdown-menu,
  .site-header .dropdown:focus-within .dropdown-menu {
    display: grid !important;
  }
}

@media (max-width: 760px) {
  .site-header .nav-toggle {
    display: block;
  }

  .site-header .nav {
    top: 78px;
  }
}

/* Always-visible menu fix: keep top navigation names visible on all pages. */
.site-header .nav-toggle {
  display: none !important;
}

.site-header .header-inner {
  align-items: center;
}

.site-header .nav {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

@media (max-width: 760px) {
  .site-header .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .site-header .nav {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 10px 14px;
    font-size: 13px;
  }

  .site-header .nav .btn {
    min-height: 38px;
    padding: 8px 12px;
  }

  .site-header .dropdown-menu {
    position: static !important;
    display: grid !important;
    min-width: 100% !important;
    margin-top: 6px;
    padding: 6px 0 0 10px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* Final navigation behavior: never hide the menu; scroll it horizontally on narrow screens. */
.site-header .nav-toggle {
  display: none !important;
}

.site-header .header-inner {
  flex-wrap: nowrap !important;
}

.site-header .nav {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  width: auto !important;
  max-width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.site-header .nav > a,
.site-header .nav > .dropdown > a {
  white-space: nowrap;
}

.site-header .dropdown-menu {
  position: absolute !important;
  display: none !important;
  min-width: 250px !important;
  padding: 10px !important;
  border: 1px solid rgba(244, 244, 244, 0.14) !important;
  background: #171717 !important;
  box-shadow: 0 18px 45px rgba(20, 24, 30, 0.35) !important;
}

.site-header .dropdown:hover .dropdown-menu,
.site-header .dropdown:focus-within .dropdown-menu {
  display: grid !important;
}

@media (max-width: 980px) {
  .site-header .header-inner {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 10px 0 !important;
  }

  .site-header .brand-logo {
    width: min(220px, 72vw);
  }

  .site-header .nav {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    width: 100% !important;
    padding-bottom: 8px !important;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .site-header .nav::-webkit-scrollbar {
    height: 6px;
  }

  .site-header .nav::-webkit-scrollbar-thumb {
    background: rgba(142, 168, 255, 0.42);
    border-radius: 999px;
  }

  .site-header .dropdown {
    position: static !important;
  }

  .site-header .dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .site-header .nav {
    font-size: 13px !important;
    gap: 12px !important;
  }

  .site-header .nav .btn {
    min-height: 38px !important;
    padding: 8px 12px !important;
  }
}

/* Silverstone upload repair 2026-06-15: strongest final menu rule.
   Keep this at the end so older mobile-menu rules cannot hide links after page navigation. */
.site-header {
  overflow: visible !important;
}

.site-header .header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
}

.site-header .nav-toggle {
  display: none !important;
}

.site-header .nav {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.site-header .nav a {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.site-header .dropdown-menu {
  position: absolute !important;
  display: none !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 270px !important;
  padding: 10px !important;
  background: #171717 !important;
  border: 1px solid rgba(244, 244, 244, 0.14) !important;
  box-shadow: var(--shadow) !important;
}

.site-header .dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.site-header .dropdown:hover .dropdown-menu,
.site-header .dropdown:focus-within .dropdown-menu,
.site-header .dropdown.dropdown-open .dropdown-menu {
  display: grid !important;
}

@media (max-width: 1040px) {
  .site-header .header-inner {
    align-items: flex-start !important;
    flex-direction: column !important;
    padding: 12px 0 !important;
  }

  .site-header .nav {
    width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding-bottom: 8px !important;
    scrollbar-width: thin;
  }

  .site-header .brand-logo {
    width: min(240px, 78vw) !important;
  }

  .site-header .dropdown-menu {
    position: static !important;
    min-width: 240px !important;
    margin-top: 8px !important;
  }

  .site-header .dropdown::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header .nav {
    gap: 12px !important;
    font-size: 13px !important;
  }

  .site-header .nav .btn {
    min-height: 38px !important;
    padding: 8px 12px !important;
  }
}

/* Final dropdown reliability fix: keep Solutions/Services menus mouse-openable. */
.site-header .dropdown {
  position: relative !important;
}

.site-header .dropdown-menu {
  z-index: 9999 !important;
}

@media (min-width: 769px) {
  .site-header,
  .site-header .header-inner,
  .site-header .nav {
    overflow: visible !important;
  }

  .site-header .nav {
    flex-wrap: wrap !important;
  }

  .site-header .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    min-width: 270px !important;
  }

  .site-header .dropdown:hover .dropdown-menu,
  .site-header .dropdown:focus-within .dropdown-menu,
  .site-header .dropdown.dropdown-open .dropdown-menu {
    display: grid !important;
  }
}

@media (max-width: 768px) {
  .site-header .dropdown-menu {
    position: static !important;
    min-width: 240px !important;
    margin-top: 8px !important;
  }
}
