@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --font-base: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-display: "Space Grotesk", "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --bhk-blue: #0b3d91;
  --bhk-sky: #1e7ff0;
  --bhk-white: #f7fbff;
  --bhk-slate: #1c2333;
  --bhk-muted: rgba(11, 61, 145, 0.08);
  --bhk-bg: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  --bhk-surface: rgba(255, 255, 255, 0.94);
  --bhk-surface-alt: rgba(255, 255, 255, 0.88);
  --bhk-border: rgba(11, 61, 145, 0.12);
  --text-strong: rgba(12, 26, 45, 0.95);
  --text-body: rgba(12, 26, 45, 0.85);
  --text-muted: rgba(12, 26, 45, 0.64);
  --text-inverse: rgba(247, 251, 255, 0.95);
  --shadow-lg: 0 50px 90px rgba(11, 61, 145, 0.12);
  --shadow-md: 0 32px 60px rgba(12, 50, 110, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --space-xs: 0.75rem;
  --space-sm: 1.2rem;
  --space-md: clamp(1.5rem, 3vw, 2.4rem);
  --space-lg: clamp(3rem, 6vw, 4.5rem);
  --transition: 220ms ease;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition: 0ms;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bhk-bg);
  color: rgba(214, 226, 255, 0.78);
  font-family: var(--font-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  --body-parallax: 0px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -40vh -40vw 50% -40vw;
  background: radial-gradient(circle at top, rgba(30, 127, 240, 0.18), transparent 70%);
  z-index: -3;
  transform: translate3d(0, var(--body-parallax), 0);
  transition: transform 800ms ease;
}

header {
  background: rgba(4, 10, 24, 0.85);
  backdrop-filter: blur(18px);
  color: rgba(222, 234, 255, 0.88);
  padding: 1.8rem clamp(1.5rem, 5vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 rgba(8, 20, 48, 0.55);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: rgba(6, 16, 36, 0.65);
  color: var(--text-inverse);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 45;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: rgba(222, 234, 255, 0.9);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  color: rgba(220, 232, 255, 0.9);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--transition), opacity var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
}

header nav a:first-child {
  margin-left: 0;
}

header nav a:hover,
header nav a:focus,
header nav a.active {
  color: rgba(122, 183, 255, 0.95);
  opacity: 1;
}

header nav a:focus-visible {
  outline: 2px solid rgba(122, 183, 255, 0.7);
  outline-offset: 6px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(226, 236, 255, 0.95);
  text-decoration: none;
}

.brand::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, var(--bhk-white), var(--bhk-sky));
  box-shadow: 0 0 18px rgba(30, 127, 240, 0.45);
}

main {
  padding: 6rem clamp(1.5rem, 5vw, 7rem);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4,
h5,
h6 {
  font-family: var(--font-base);
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(214, 226, 255, 0.78);
  line-height: 1.75;
}

.eyebrow {
  font-family: var(--font-base);
  letter-spacing: 0.22em;
}

.hero {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
  color: var(--text-inverse);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(70, 148, 255, 0.14), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(32, 96, 210, 0.12), transparent 62%);
  opacity: 0.28;
  z-index: -1;
  filter: blur(10px);
  transform: translateY(calc(-20px + var(--hero-parallax, 0px)));
  transition: transform 900ms ease;
}

.hero > div {
  display: grid;
  gap: clamp(1.8rem, 2.5vw, 2.6rem);
  padding: clamp(2.8rem, 4vw, 3.4rem);
  border-radius: var(--radius-lg);
  background: var(--hero-panel-bg);
  border: var(--hero-panel-border);
  box-shadow: var(--hero-panel-shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero > div::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -25%;
  width: 360px;
  height: 320px;
  background: radial-gradient(circle, rgba(140, 198, 255, 0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-inverse);
  margin-bottom: 0.3rem;
  text-shadow: 0 12px 28px rgba(1, 7, 20, 0.45);
}

.hero p {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(236, 242, 255, 0.86);
  line-height: 1.75;
}

.hero-card {
  background: var(--hero-panel-bg);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 4vw, 3.2rem);
  box-shadow: var(--hero-panel-shadow);
  border: var(--hero-panel-border);
  color: rgba(234, 242, 255, 0.96);
  position: relative;
  isolation: isolate;
  z-index: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-card h2 {
  color: rgba(234, 242, 255, 0.98);
}

.hero-card p {
  color: rgba(214, 226, 255, 0.82);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -120px 55%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(126, 190, 255, 0.14), transparent 70%);
  transform: rotate(-18deg);
  z-index: -1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--bhk-blue), var(--bhk-sky));
  color: var(--text-inverse);
  box-shadow: 0 16px 30px rgba(14, 69, 166, 0.3);
}

.btn-secondary {
  border: none;
  color: var(--text-inverse);
  background: linear-gradient(135deg, rgba(10, 32, 72, 0.9), rgba(6, 18, 46, 0.95));
  box-shadow: 0 18px 35px rgba(2, 8, 20, 0.45);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11, 61, 145, 0.26);
}

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn:focus-visible {
  outline: 2px solid var(--bhk-sky);
  outline-offset: 4px;
}

section {
  margin-bottom: 6rem;
}

section h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--text-inverse);
  text-shadow: 0 8px 20px rgba(1, 8, 26, 0.4);
  letter-spacing: -0.01em;
}

.section-content {
  display: grid;
  gap: clamp(2.8rem, 5vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 4vw, 3.4rem);
  border: none;
  box-shadow: none;
  transition: transform var(--transition), opacity var(--transition);
  position: relative;
  color: rgba(230, 240, 255, 0.9);
  line-height: 1.7;
}

.card::after {
  display: none;
}

.card:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

.card:hover::after {
  display: none;
}

.card h3 {
  color: rgba(236, 244, 255, 0.96);
  margin-bottom: 1.4rem;
  font-size: clamp(1.35rem, 2.4vw, 1.55rem);
  letter-spacing: 0.01em;
}

.card p {
  color: rgba(226, 236, 255, 0.82);
  line-height: 1.75;
  margin-top: 1.2rem;
  font-size: 1.02rem;
}

.grid-two {
  display: grid;
  gap: clamp(2.8rem, 4vw, 3.8rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.grid-two > div > p {
  margin-bottom: clamp(2rem, 3vw, 2.8rem);
}

.list {
  list-style: none;
  display: grid;
  gap: clamp(1.6rem, 2.4vw, 2rem);
}

.list li {
  padding: 1.8rem 2rem;
  background: transparent;
  border-radius: 18px;
  color: rgba(234, 242, 255, 0.88);
  box-shadow: none;
  line-height: 1.78;
  font-size: 1.02rem;
}

.list li:hover {
  transform: translateY(-2px);
}

.contact-strip {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.6rem);
}

.contact-strip li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(155deg, rgba(16, 40, 88, 0.55), rgba(8, 18, 44, 0.7));
  color: rgba(232, 240, 255, 0.9);
  padding: 1.45rem 1.8rem;
  border-radius: 20px;
  box-shadow: 0 24px 40px rgba(4, 12, 32, 0.32);
  border: 1px solid rgba(120, 180, 255, 0.16);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.contact-strip li strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
  color: rgba(238, 246, 255, 0.95);
}

.contact-strip li span {
  font-size: 0.95rem;
  opacity: 0.95;
  color: rgba(214, 228, 255, 0.82);
}

.contact-strip li:hover {
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 30px 55px rgba(6, 16, 42, 0.4);
}

.contact-layout {
  display: grid;
  gap: clamp(2.4rem, 5vw, 3.6rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.contact-info {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.2rem);
}

.contact-form {
  background: var(--hero-panel-bg);
  border: var(--hero-panel-border);
  box-shadow: var(--hero-panel-shadow);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 4vw, 3.2rem);
  display: grid;
  gap: clamp(1.6rem, 2.6vw, 2.4rem);
}

.contact-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.contact-form legend {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(238, 246, 255, 0.94);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.contact-form .form-row {
  display: grid;
  gap: 0.6rem;
}

.contact-form .form-row--split {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(200, 220, 255, 0.82);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(120, 180, 255, 0.18);
  background: rgba(8, 18, 44, 0.85);
  color: rgba(236, 244, 255, 0.92);
  padding: 0.95rem 1.15rem;
  font-size: 1rem;
  font-family: var(--font-base);
  transition: border var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: rgba(190, 210, 250, 0.6);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: rgba(120, 180, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(86, 146, 235, 0.35);
  background: rgba(12, 26, 64, 0.88);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form .form-helper {
  font-size: 0.85rem;
  color: rgba(200, 216, 246, 0.7);
}

.contact-form .form-status {
  font-size: 0.9rem;
  margin: -0.3rem 0 0;
  color: rgba(204, 224, 255, 0.75);
  min-height: 1.3em;
  transition: color var(--transition), opacity var(--transition);
}

.contact-form .form-status.is-success {
  color: rgba(134, 220, 195, 0.9);
}

.contact-form .form-status.is-error {
  color: rgba(255, 160, 160, 0.9);
}

.contact-form .btn {
  justify-self: flex-start;
  padding-inline: 2rem;
  background: linear-gradient(135deg, rgba(20, 48, 116, 0.9), rgba(6, 22, 64, 0.98));
  box-shadow: 0 16px 36px rgba(4, 12, 32, 0.48);
}

.contact-form .btn:hover {
  box-shadow: 0 22px 48px rgba(6, 16, 42, 0.56);
}

.contact-form .consent {
  font-size: 0.85rem;
  color: rgba(196, 214, 246, 0.7);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.contact-form .consent input {
  width: auto;
  margin-top: 0.3rem;
}

.contact-form .consent label {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: rgba(214, 230, 255, 0.78);
}

.footer {
  background: #061225;
  border-top: 1px solid rgba(120, 180, 255, 0.12);
  color: var(--text-inverse);
  padding: 3rem clamp(1.5rem, 5vw, 6rem);
}

.footer p {
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

.footer a {
  color: var(--text-inverse);
  text-decoration: none;
  margin-right: 1.2rem;
  font-weight: 600;
}

.page-hero {
  padding: clamp(5.5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 7rem) clamp(4rem, 7vw, 6rem);
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
  background: var(--hero-panel-bg);
  border-radius: var(--radius-lg);
  margin: 4rem clamp(1.5rem, 5vw, 7rem) 0;
  box-shadow: var(--hero-panel-shadow);
  border: var(--hero-panel-border);
  position: relative;
  overflow: hidden;
  color: var(--text-inverse);
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 25% 30%, rgba(78, 142, 236, 0.14), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(26, 78, 182, 0.12), transparent 62%);
  z-index: -1;
  transform: translate3d(0, calc(-20px + var(--hero-parallax, 0px)), 0);
  transition: transform 1000ms ease;
}


.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: rgba(210, 224, 248, 0.72);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  letter-spacing: -0.015em;
  color: var(--text-inverse);
  text-shadow: 0 14px 30px rgba(2, 10, 30, 0.45);
  max-width: 18ch;
}

.page-hero p {
  max-width: 70ch;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(232, 242, 255, 0.85);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(210, 224, 248, 0.72);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(200, 214, 255, 0.88);
  text-decoration: none;
}

.page-section {
  margin: clamp(4.5rem, 6vw, 6.5rem) clamp(1.5rem, 5vw, 7rem);
  display: grid;
  gap: clamp(2.6rem, 4vw, 3.6rem);
}

.page-section h2 {
  margin-bottom: 0.8rem;
}

.page-section p {
  max-width: 85ch;
  line-height: 1.75;
  color: rgba(218, 230, 255, 0.82);
}

.section-alt {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: none;
  color: rgba(220, 232, 255, 0.88);
}

.section-alt h2 {
  color: rgba(226, 236, 255, 0.95);
}

.section-alt p {
  color: rgba(214, 226, 255, 0.78);
}

.section-full-bleed {
  margin: clamp(4rem, 7vw, 5.5rem) 0;
  padding: clamp(5rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.abstract-strip {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(6, 18, 46, 0.95), rgba(2, 8, 24, 0.9));
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  opacity: 0.9;
  z-index: -2;
}

.abstract-pattern {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 20% 30%, rgba(46, 110, 220, 0.25), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(12, 54, 160, 0.22), transparent 65%);
  z-index: -1;
  filter: blur(4px);
}

.full-bleed-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--text-inverse);
  display: grid;
  gap: var(--space-md);
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.logo-grid {
  display: grid;
  gap: clamp(1.8rem, 3.5vw, 2.8rem);
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  padding: clamp(1rem, 3vw, 1.6rem) 0;
}

.logo-tile {
    padding: 1.4rem 1.8rem;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(214, 228, 255, 0.72);
  }

.testimonial {
    background: transparent;
    border-radius: 28px;
    padding: clamp(2.2rem, 4vw, 3.2rem);
    border: none;
    box-shadow: none;
    color: rgba(220, 232, 255, 0.86);
  }

  .testimonial p {
    color: rgba(214, 226, 255, 0.78);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .testimonial cite {
    font-style: normal;
    color: rgba(188, 204, 236, 0.72);
    font-weight: 600;
  }

.page-grid {
  display: grid;
  gap: clamp(1.8rem, 3vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stat-card {
  background: transparent;
  padding: 2.4rem;
  border-radius: 24px;
  border: none;
  box-shadow: none;
  color: rgba(224, 234, 255, 0.9);
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(226, 236, 255, 0.95);
  margin-bottom: 0.8rem;
}

.stat-label {
  color: rgba(196, 210, 238, 0.72);
}

.stat-highlight {
  background: transparent;
  border-radius: 24px;
  padding: 2.2rem;
  display: grid;
  gap: 0.6rem;
  box-shadow: none;
}

.stat-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(226, 236, 255, 0.95);
  margin: 0;
}

.stat-highlight p {
  color: rgba(214, 226, 255, 0.78);
  margin: 0;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: clamp(1.2rem, 2.6vw, 1.6rem);
}

.feature-list li {
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
  color: rgba(230, 240, 255, 0.84);
  font-size: 1.03rem;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(120, 180, 255, 0.88);
  position: absolute;
  left: 0;
  top: 0.65rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}

.info-table thead {
  color: rgba(214, 228, 255, 0.9);
}

.info-table th,
.info-table td {
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(221, 233, 255, 0.85);
}

.info-table tbody tr {
  border-bottom: 1px solid rgba(30, 68, 140, 0.35);
}

.info-table tbody tr:last-child {
  border-bottom: none;
}

.cta-block {
  background: transparent;
  color: rgba(220, 232, 255, 0.88);
  padding: clamp(3rem, 6vw, 4.5rem);
  border-radius: 28px;
  box-shadow: none;
  display: grid;
  gap: 1.4rem;
}

.cta-block p {
  color: rgba(214, 226, 255, 0.78);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(48, 102, 198, 0.35), rgba(24, 54, 128, 0.5));
  color: rgba(236, 244, 255, 0.92);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(230, 242, 255, 0.22), 0 10px 20px rgba(4, 12, 32, 0.35);
}

.two-column {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-strong);
  border-left: 3px solid rgba(30, 127, 240, 0.45);
  padding-left: 1rem;
}

.timeline {
  display: grid;
  gap: 1.4rem;
}

  .timeline-item {
    padding: 1.4rem 1.6rem;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    color: rgba(222, 232, 255, 0.85);
  }

  .timeline-item h4 {
    color: rgba(226, 236, 255, 0.95);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
  }

.table-caption {
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translateX(-36px);
}

.reveal[data-reveal="right"] {
  transform: translateX(36px);
}

.reveal[data-reveal="up"] {
  transform: translateY(36px);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-group {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  header nav {
    position: fixed;
    top: clamp(70px, 8vw, 86px);
    right: clamp(1rem, 5vw, 2rem);
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    background: rgba(3, 8, 20, 0.92);
    backdrop-filter: blur(18px);
    padding: 1.6rem;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(1, 4, 12, 0.7);
    min-width: 220px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  header nav a {
    margin: 0;
    color: rgba(220, 232, 255, 0.9);
  }

  header.nav-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  header.nav-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  header.nav-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .card {
    padding: 2.2rem;
  }

  .page-hero {
    margin-top: 2rem;
    border-radius: 24px;
  }

  main {
    padding: clamp(4rem, 10vw, 5rem) clamp(1.2rem, 5vw, 2rem);
  }
}

[data-theme="dark"] {
  color-scheme: dark;
  --bhk-blue: #7ab7ff;
  --bhk-sky: #57a9ff;
  --bhk-white: #0f172a;
  --bhk-slate: #e2e8f0;
  --bhk-muted: rgba(122, 183, 255, 0.12);
  --bhk-bg: linear-gradient(180deg, #020617 0%, #0b1730 100%);
  --bhk-surface: rgba(18, 27, 45, 0.88);
  --bhk-surface-alt: rgba(13, 22, 38, 0.92);
  --bhk-border: rgba(122, 183, 255, 0.12);
  --text-strong: rgba(236, 241, 255, 0.98);
  --text-body: rgba(214, 226, 247, 0.9);
  --text-muted: rgba(151, 175, 214, 0.7);
  --text-inverse: rgba(243, 249, 255, 0.94);
  --shadow-lg: 0 45px 80px rgba(5, 16, 39, 0.55);
  --shadow-md: 0 32px 60px rgba(4, 12, 28, 0.4);
  --panel-bg: linear-gradient(155deg, rgba(14, 32, 76, 0.88), rgba(6, 18, 48, 0.92));
  --panel-shadow: 0 35px 70px rgba(4, 12, 32, 0.36);
  --panel-border: 1px solid rgba(86, 134, 210, 0.16);
  --hero-panel-bg: linear-gradient(160deg, rgba(10, 26, 60, 0.94), rgba(4, 12, 30, 0.98));
  --hero-panel-border: 1px solid rgba(90, 140, 220, 0.12);
  --hero-panel-shadow: 0 38px 80px rgba(2, 8, 24, 0.3);
}

[data-theme="dark"] body::before {
  background: radial-gradient(circle at top, rgba(87, 169, 255, 0.28), transparent 70%);
}

.info-table,
.info-table th,
.info-table td {
  border: none !important;
}











.card,
.section-alt,
.stat-card,
.stat-highlight,
.timeline-item,
.list li,
.contact-strip li,
.info-table,
.cta-block,
.testimonial,
.logo-grid .logo-tile {
  background: var(--panel-bg);
  border-radius: var(--radius-lg);
  border: var(--panel-border);
  box-shadow: var(--panel-shadow);
  color: rgba(230, 240, 255, 0.92);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card h3,
.section-alt h2,
.stat-card h3,
.stat-highlight h3,
.timeline-item h4,
.cta-block h2,
.testimonial cite,
.contact-strip li strong,
.logo-grid .logo-tile {
  color: rgba(234, 242, 255, 0.96);
}

.card p,
.section-alt p,
.stat-card p,
.stat-highlight p,
.timeline-item p,
.list li,
.contact-strip li span,
.info-table th,
.info-table td,
.cta-block p,
.testimonial p,
.logo-grid .logo-tile {
  color: rgba(214, 226, 255, 0.82);
}

.list li,
.timeline-item {
  border-radius: 18px;
}

.contact-strip li {
  border-radius: 20px;
}

.info-table {
  overflow: hidden;
  padding: 0;
}

.info-table thead {
  background: linear-gradient(135deg, rgba(16, 34, 78, 0.85), rgba(8, 20, 48, 0.9));
}

.info-table tbody tr {
  border-bottom: 1px solid rgba(26, 54, 112, 0.4);
}

.info-table tbody tr:last-child {
  border-bottom: none;
}

.card:hover,
.section-alt:hover,
.stat-card:hover,
.stat-highlight:hover,
.timeline-item:hover,
.list li:hover,
.contact-strip li:hover,
.info-table:hover,
.cta-block:hover,
.testimonial:hover,
.logo-grid .logo-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 60px 110px rgba(3, 12, 30, 0.65);
}

.cta-block {
  background: linear-gradient(150deg, rgba(18, 72, 170, 0.92), rgba(8, 42, 115, 0.95));
  color: rgba(230, 240, 255, 0.92);
}

.cta-block p {
  color: rgba(214, 226, 255, 0.82);
}

.testimonial {
  background: linear-gradient(150deg, rgba(10, 28, 64, 0.94), rgba(5, 14, 34, 0.92));
  color: rgba(226, 236, 255, 0.88);
}

.logo-grid .logo-tile {
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(12, 30, 68, 0.82), rgba(4, 12, 34, 0.88));
}
