/* Homepage (header + banner) — screenshot-matching layout */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f7ff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.68);
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 45px rgba(2, 6, 23, 0.12);
  --shadow-soft: 0 10px 30px rgba(2, 6, 23, 0.08);
  --primary: #2b67f6;
  --primary-2: #1f54d6;
  --accent-red: #f64e4d;
  --accent-green: #12a150;
  --teal: #63d3d9;
  --navy: #10233d;
  --navy-2: #0d1d34;
  --ring: rgba(43, 103, 246, 0.22);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  transform: translateY(-200%);
  background: var(--text);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.containerdemo {
  margin-inline: auto;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header[data-elevated="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 12px 0;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(226, 58, 58, 0.25);
  background: rgba(226, 58, 58, 0.06);
  display: grid;
  place-items: center;
}
.brand-name {
  font-size: 20px;
}
.brand-red {
  color: var(--accent-red);
}
.site-nav {
  display: flex;
  justify-content: flex-end;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
}
.nav-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 6px var(--ring), 0 8px 20px rgba(2, 6, 23, 0.06);
}
.nav-toggle-icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: inline-block;
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.nav-toggle-icon::before {
  top: -6px;
}
.nav-toggle-icon::after {
  top: 6px;
}
.nav-menu {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.75);
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-link:hover {
  background: rgba(43, 103, 246, 0.08);
  color: var(--text);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 6px var(--ring);
}

.nav-sep {
  color: rgba(11, 18, 32, 0.3);
  font-weight: 700;
  user-select: none;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(99, 211, 217, 0.9);
  color: rgba(11, 18, 32, 0.82);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(99, 211, 217, 0.7);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
}
.nav-pill:hover {
  background: rgba(99, 211, 217, 1);
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  transition: transform 130ms ease, box-shadow 130ms ease, background 160ms ease,
    border-color 160ms ease, color 160ms ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 6px var(--ring);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(43, 103, 246, 0.22);
}
.btn-primary:hover {
  background: var(--primary-2);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}
.btn-ghost:hover {
  border-color: rgba(43, 103, 246, 0.22);
}
.btn-sm {
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 13px;
}

/* Banner (matches screenshot: left image, right navy panel) */
.banner {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 30px;
}
.banner-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.10fr 0.65fr;
}
.banner-left {
  background: #fff;
}
.banner-right {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  padding: 70px 56px;
  display: grid;
  align-content: center;
}
.banner-title {
  margin: 0;
  color: var(--teal);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.banner-text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
  max-width: 54ch;
}
.banner-photo {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 100%;
}
.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}
.bubble {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  pointer-events: none;
}
.bubble-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.14);
  display: grid;
  place-items: center;
}
.bubble-label {
  font-size: 12px;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 600;
}
.bubble-icon-red {
  outline: 10px solid rgba(226, 58, 58, 0.06);
}
.bubble-icon-teal {
  outline: 10px solid rgba(99, 211, 217, 0.10);
}
.bubble-donors {
  left: 6%;
  top: 22%;
}
.bubble-banks {
  left: 4%;
  bottom: 18%;
}
.bubble-hospitals {
  right: 18%;
  top: 18%;
}
.bubble-saving {
  right: 13%;
  bottom: 22%;
}

/* Below-banner sections (Who We Are + Vision & Mission) */
.content-section {
  padding: 38px 0;
  background: #fff;
}
.content-section-alt {
  background: #fff;
  padding-top: 28px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.86fr 1.00fr;
  gap: 50px;
  align-items: start;
}
.two-col-media {
  display: grid;
  justify-items: start;
}
.media-img {
  width: 100%;
  max-width: 520px;
  border-radius: 0px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.section-title {
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.title-grey {
  color: #5c6f9a;
}
.title-red {
  color: var(--accent-red);
  font-weight: 300;
}
.title-underline {
  width: 70px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 999px;
  margin-top: 12px;
}

.lead {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(16, 35, 61, 0.84);
  max-width: 44ch;
}
.sub {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11, 18, 32, 0.58);
  max-width: 70ch;
}

/* About section overrides (Who We Are) */
#about .lead {
  color: #405482;
  font-size: 28px;
}
#about .section-title {
  font-size: 44px;
}
#about .title-grey {
  color: #5c6f9a;
}
#about .title-red {
  color: #f64e4d;
}

.vm-card {
  display: grid;
  grid-template-columns: 1.50fr 0.50fr;
  background: #f7f7f7;
  border: 1px solid rgba(226, 58, 58, 0.16);
  border-radius: 8px;
  overflow: hidden;
}
.vm-left {
  padding: 40px 40px;
}
.vm-right {
  background: #fff;
}
.vm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.vm-items {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}
.vm-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
}
.vm-bullet-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}
.vm-title {
  font-size: 28px;
  font-weight: 600;
  color: rgba(77, 92, 120, 0.9);
  letter-spacing: -0.01em;
}
.vm-text {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.72);
  max-width: 78ch;
}

@media (max-width: 1040px) {
  .two-col {
    gap: 32px;
  }
  .section-title {
    font-size: 30px;
  }
  .lead {
    font-size: 18px;
  }
}

/* Leadership section (matches screenshot card layout) */
.lead-card {
  display: grid;
  grid-template-columns: 0.60fr 1.40fr;
  background: #f7f7f7;
  border: 1px solid rgba(226, 58, 58, 0.16);
  border-radius: 8px;
  overflow: hidden;
}
.lead-media {
  background: #fff;
}
.lead-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.lead-copy {
  padding: 34px 34px;
}
.leadership-lead {
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.2;
  color: #405482;
  max-width: 70ch;
}
.leadership-sub {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11, 18, 32, 0.58);
  max-width: 90ch;
}

/* Our Products section (dark textured, 3 cards) */
.products-section {
  position: relative;
  padding: 56px 0 64px;
  color: #fff;
  overflow: hidden;
}
.products-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 24, 44, 0.86), rgba(11, 24, 44, 0.92)),
    url("./images/background-texture.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05);
}
.products-inner {
  position: relative;
  z-index: 1;
}
.products-head {
  text-align: center;
  margin-bottom: 28px;
}
.products-title {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.products-subtitle {
  margin: 0px 0 0;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.product-card-top {
  padding: 0;
  display: block;
}
.product-top-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.product-card-body {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(11, 18, 32, 0.84);
  padding: 18px 18px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.product-name {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.product-name-bbms {
  color: #1a4c93;
}
.product-name-os {
  color: #246432;
}
.product-desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.7);
}
.product-link {
  margin-top: 14px;
  display: inline-block;
  font-size: 15px;
  color: rgba(11, 18, 32, 0.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Generic sections */
.section {
  padding: 22px 0;
}
.section.alt {
  background: var(--surface-2);
}
.card-shell {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}
.split-tight {
  align-items: center;
}
.split-media {
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.split-copy {
  padding: 16px;
}
.split-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.split-lead {
  margin: 10px 0 0;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.82);
  font-size: 13px;
}
.split-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.rounded-media {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
}

.icon-row {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}
.icon-bullet {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
}
.icon-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  margin-top: 2px;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
}
.icon-dot-blue {
  background: rgba(43, 103, 246, 0.14);
  border: 1px solid rgba(43, 103, 246, 0.22);
}
.icon-dot-red {
  background: rgba(226, 58, 58, 0.14);
  border: 1px solid rgba(226, 58, 58, 0.22);
}
.icon-bullet-title {
  font-weight: 900;
  font-size: 13px;
}
.icon-bullet-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.mini-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.mini-title {
  font-weight: 900;
  font-size: 13px;
}
.mini-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

/* Products band */
.products {
  padding: 26px 0 36px;
  background:
    radial-gradient(900px 340px at 50% -35%, rgba(43, 103, 246, 0.28), transparent 55%),
    #1f2a44;
}
.products-head {
  text-align: center;
  color: #fff;
  padding: 8px 0 12px;
}
.products-title {
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.products-sub {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}
.product-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.product-top {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-top-red {
  background: linear-gradient(135deg, rgba(226, 58, 58, 0.22), rgba(226, 58, 58, 0.08));
}
.product-top-blue {
  background: linear-gradient(135deg, rgba(43, 103, 246, 0.24), rgba(43, 103, 246, 0.08));
}
.product-top-green {
  background: linear-gradient(135deg, rgba(18, 161, 80, 0.22), rgba(18, 161, 80, 0.08));
}
.product-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.12);
}
.product-name {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 24px;
  text-align: center;
}
.product-body {
  padding: 14px;
}
.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.product-link {
  margin-top: 12px;
  display: inline-flex;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.72);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(43, 103, 246, 0.06);
  border: 1px solid rgba(43, 103, 246, 0.16);
}
.product-link:hover {
  background: rgba(43, 103, 246, 0.1);
  border-color: rgba(43, 103, 246, 0.22);
}

/* Demo CTA */
.demo {
  padding: 18px 0 26px;
  background: #fff;
}
.demo-shell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
}
.demo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 6;
}
.demo-card {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, calc(100% - 36px));
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.14);
}
.demo-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.demo-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.demo-btn {
  margin-top: 12px;
}

/* Demo / Get in touch (screenshot-style) */
.demo2-section {
  background: #fff;
}
.demo2-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
  background: #e9edf7;
  min-height: 260px;
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  align-items: stretch;
}
.demo2-illustration {
  width: 90%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  align-self: center;
}
.demo2-content {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 28px 52px 28px 18px;
}
.demo2-kicker {
  margin: 0;
  font-size: 24px;
  color: rgba(11, 18, 32, 0.6);
}
.demo2-lead {
  margin: 0px 0 0;
  font-size: 24px;
  color: rgba(11, 18, 32, 0.6);
}
.demo2-brand {
  font-weight: 700;
  color: rgba(11, 18, 32, 0.70);
}
.demo2-brand-red {
  color: var(--accent-red);
}
.demo2-sub {
  margin: 0px 0 0;
  font-size: 28px;
  line-height: 1.25;
  color: rgba(11, 18, 32, 0.58);
}
.demo2-strong {
  color: #1f3f6b;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}
.demo2-rest {
  display: block;
}
.demo2-btn, .demo3-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: min(520px, 100%);
  padding: 0 22px;
  border-radius: 8px;
  background: #1f3f6b;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(31, 63, 107, 0.24);
}
.demo2-btn:hover {
  background: #17345c;
}
.demo2-btn:focus-visible, .demo3-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 6px rgba(31, 63, 107, 0.25), 0 16px 36px rgba(31, 63, 107, 0.24);
}
.demo3-btn,  .demo3-btn:hover { 
  background: #dc2626;
}
/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 16px 0 0;
  background: #fff;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 14px;
}
.footer-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.76);
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-links a:hover {
  background: rgba(43, 103, 246, 0.08);
  color: var(--text);
}
.footer-art {
  margin-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
}
.footer-art img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 920px) {
  .banner-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .banner-right {
    padding: 34px 22px;
  }
  .banner-photo {
    min-height: 420px;
  }
  .bubble-hospitals {
    right: 8%;
  }
  .bubble-saving {
    right: 6%;
  }

  .content-section {
    padding: 40px 0;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .media-img {
    max-width: 100%;
  }
  .vm-card {
    grid-template-columns: 1fr;
  }
  .vm-right {
    order: -1;
  }
  .vm-img {
    min-height: 260px;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }
  .lead-img {
    min-height: 260px;
  }

  .products-section {
    padding: 44px 0 52px;
  }
  .products-title {
    font-size: 34px;
  }
  .products-subtitle {
    font-size: 16px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .demo2-section {
    padding: 34px 0 46px;
  }
  .demo2-content {
    padding: 22px 18px;
    background: rgba(233, 237, 247, 0.92);
  }
  .demo2-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .demo2-illustration {
    width: 70%;
    margin: 18px auto 0;
    height: 220px;
  }
  .demo2-btn {
    min-width: 240px;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .site-nav {
    justify-content: end;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
  .nav-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 66px;
    width: min(360px, calc(100vw - 40px));
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav-menu[data-open="true"] {
    display: flex;
  }
  .nav-link {
    padding: 10px 12px;
  }
  .nav-sep {
    display: none;
  }
  .nav-pill {
    height: 40px;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 14px;
  }

  .banner-photo {
    min-height: 360px;
  }
  .bubble-icon {
    width: 64px;
    height: 64px;
  }
  .bubble-label {
    font-size: 11px;
  }
  .banner-title {
    font-size: 22px;
  }

  .section-title {
    font-size: 26px;
  }
  .lead {
    font-size: 16px;
  }
  .vm-left {
    padding: 22px 18px;
  }
  .vm-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .vm-icon {
    width: 40px;
    height: 40px;
  }

  .lead-copy {
    padding: 22px 18px;
  }
  .leadership-lead {
    font-size: 16px;
  }

  .products-head {
    margin-bottom: 18px;
  }
  .products-title {
    font-size: 30px;
  }
  .product-name {
    font-size: 22px;
  }
  .product-desc,
  .product-link {
    font-size: 14px;
  }

  .demo2-kicker,
  .demo2-lead {
    font-size: 16px;
  }
  .demo2-sub {
    font-size: 20px;
  }
  .demo2-content {
    padding: 18px 16px;
  }
}

/* Footer (bridge) — screenshot-style */
.site-footer2 {
  background: #ffffff;
  padding: 26px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.footer2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer2-logo {
  height: 48px;
  width: auto;
  display: block;
}
.footer2-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.7);
}
.footer2-links a {
  color: rgba(11, 18, 32, 0.7);
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 10px;
}
.footer2-links a:hover {
  background: rgba(43, 103, 246, 0.08);
  color: rgba(11, 18, 32, 0.88);
}
.footer2-links span {
  color: rgba(11, 18, 32, 0.35);
  user-select: none;
}
.footer2-mid {
  margin-top: 8px;
}
.footer2-copy {
  margin: 0;
  font-size: 16px;
  color: rgba(11, 18, 32, 0.68);
}
.footer2-tagline {
  color: rgba(29, 142, 68, 0.95);
  font-weight: 600;
}
.footer2-art {
  margin-top: 12px;
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.footer2-bridge {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .footer2-links span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* IMPACT DASHBOARD */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.impact-text {
  margin-top: 16px;
  color: rgba(11,18,32,0.6);
  max-width: 420px;
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #0d1d34;
  padding: 20px;
  border-radius: 14px;
}

.impact-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}

.impact-card h3 {
  margin: 0;
  color: #f64e4d;
  font-size: 22px;
}

.impact-card p {
  margin: 6px 0 0;
  font-size: 13px;
}


/* WARRIOR CODE */
.warrior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 14px;
}

.warrior-cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.warrior-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.warrior-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
}

.warrior-card h3 {
  margin: 0;
  font-size: 16px;
}

.warrior-card p {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(11,18,32,0.6);
}

.warrior-card.highlight {
  border: 2px solid #f64e4d;
}

.warrior-right {
  background: #ececec;
  padding: 20px;
  border-radius: 14px;
}

.certificate-img {
  width: 100%;
  border-radius: 10px;
}

.certificate-text {
  margin-top: 14px;
}

.certificate-text h3 {
  font-size: 20px;
  margin: 0;
}

.certificate-text span {
  color: #f64e4d;
}

.certificate-text p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(11,18,32,0.6);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .impact-grid,
  .warrior-grid {
    grid-template-columns: 1fr;
  }

  .impact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .warrior-cards {
    flex-direction: column;
  }
}

/* TRUST SECTION */
.trust-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  inset: 0;
  background: url("./images/engineering-trust.jpg") center/cover no-repeat;
  z-index: 0;
}

.trust-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.trust-title {
  font-size: 42px;
  margin-bottom: 30px;
  color: #2c3e6b;
  font-weight: 500;
}

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

/* CARD BASE */
.trust-card {
  background: #fff;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 2px solid transparent;
}

/* HEADER */
.trust-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.trust-head .icon {
  font-size: 20px;
}

/* COLOR HEADERS */
.trust-red .trust-head {
  background: #ffe5e5;
  padding: 10px 14px;
  border-radius: 14px 14px 0px 0px;
}

.trust-blue .trust-head {
  background: #e6f0ff;
  padding: 10px 14px;
  border-radius: 14px 14px 0px 0px;
}

.trust-green .trust-head {
  background: #e9f7ec;
  padding: 10px 14px;
  border-radius: 14px 14px 0px 0px;
}

/* TAG */
.tag {
  margin-left: auto;
  background: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid #d0d7ff;
}

/* TEXT */
.trust-card p {
  color: rgb(31 31 31 / 70%);
  font-size: 15px;
  line-height: 1.5;
  padding: 16px;
}

/* DEMAND BOX */
.demand-box {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.demand-item {
  background: #f6f7fb;
  padding: 10px 14px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.critical {
  color: #e74c3c;
}

.rare {
  color: #f39c12;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}


/* NEW BANNER */
.banner-new {
  position: relative;
  height: 520px;
  background: url("./images/warriors-ban-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Soft overlay for readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 5px;
}

/* TOP TEXT */
.banner-tagline {
  font-size: 22px;
  color: rgba(11, 18, 32, 0.6);
  margin-bottom: 0px;
}

/* MAIN HEADING */
.banner-heading {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 900px;
  margin: 0;
}

.banner-heading .blue {
  color: #2c4f8c;
}

.banner-heading .green {
  color: #2e8b57;
}

/* SUBTEXT */
.banner-subtext {
  margin-top: 4px;
  font-size: 18px;
  color: rgba(11, 18, 32, 0.7);
}

/* DIVIDER */
.banner-divider {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-divider .line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #2c4f8c, #2e8b57);
  border-radius: 2px;
}

.banner-divider .icon {
  font-size: 22px;
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  border: 2px solid #2e8b57;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .banner-heading {
    font-size: 16px;
  }

  .banner-tagline {
    font-size: 18px;
  }

  .banner-subtext {
    font-size: 12px;
  }

  .banner-new {
    height: 420px;
  }
}

/* BBMS BANNER */
.bbms-banner {
  padding: 30px 0;
  background: #f5f6f8;
}

.bbms-banner-wrap {
  display: grid;
  grid-template-columns: 1.0fr 0.8fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* LEFT SLIDER */
.bbms-slider {
  position: relative;
  height: 480px;
}

.bbms-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bbms-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.45));
  color: #fff;
}

.bbms-slide-overlay h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.bbms-slide-overlay p {
  margin-top: 6px;
  font-size: 16px;
  opacity: 0.9;
}

/* DOTS */
.bbms-dots {
  margin-top: 12px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  margin-right: 6px;
}

.dot.active {
  background: #fff;
}

/* RIGHT FORM */
.bbms-form {
  background: #0f2a4d;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bbms-tag {
  color: #ff4d4d;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bbms-form h2 {
  margin: 0;
  font-size: 28px;
}

.bbms-sub {
  font-size: 14px;
  margin: 10px 0 10px;
  color: rgba(255,255,255,0.75);
}

.bbms-form label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.bbms-form input {
  width: 100%;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0 14px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.bbms-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.bbms-form button {
  width: 100%;
  margin-top: 10px;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: #e32626;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.bbms-form button:hover {
  background: #c71f1f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bbms-banner-wrap {
    grid-template-columns: 1fr;
  }

  .bbms-slider {
    height: 300px;
  }
}

/* SLIDER ANIMATION */
.bbms-slider {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.bbms-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.bbms-slide.active {
  opacity: 1;
  z-index: 1;
}

.bbms-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay stays same */
.bbms-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  background: linear-gradient(transparent, rgb(255 255 255 / 92%));
  color: #0a0343;
}

/* dots position fix */
.bbms-dots {
  position: absolute;
  bottom: 12px;
  left: 30px;
}

/* OPERATIONAL BLUEPRINT */
.op-section {
  background: #f6f7f9;
  padding: 40px 0;
}

/* HEADER */
.op-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.op-subtitle {
  font-size: 26px;
  color: #f64e4d;
  margin: 10px 0;
  line-height: 1.3;
}

.op-image img {
  width: 100%;
  border-radius: 10px;
}

/* GRID */
.op-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.op-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
}

.op-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.op-icon {
  width: 34px;
  height: 34px;
  background: #f64e4d;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.op-icon svg {
  width: 18px;
  height: 18px;
}

.op-card h3 {
  margin: 0;
  font-size: 18px;
}

.op-card p {
  font-size: 14px;
  color: rgba(11,18,32,0.7);
}

/* LIST */
.op-card ul {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.op-card li {
  margin-bottom: 8px;
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}

/* green tick */
.op-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #12a150;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .op-header {
    grid-template-columns: 1fr;
  }

  .op-grid {
    grid-template-columns: 1fr;
  }

  .op-subtitle {
    font-size: 20px;
  }
}


/* OPERATIONS GAP */
.gap-section {
  background: #fff;
  padding: 40px 0;
}

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

.gap-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgb(0 0 0 / 20%);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.gap-icon {
  width: 36px;
  height: 36px;
  background: #f64e4d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.gap-icon svg {
  width: 18px;
  height: 18px;
}

.gap-card h3 {
  margin: 6px 0;
  font-size: 16px;
}

.gap-card p {
  font-size: 14px;
  color: rgba(11,18,32,0.65);
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .gap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* SOLUTION ENGINE */
.solution-section {
  position: relative;
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}

/* HEADER */
.solution-header {
  text-align: left;
  margin-bottom: 30px;
}

.solution-sub {
  font-size: 20px;
  color: #2c4f8c;
  margin-top: 6px;
}

.solution-desc {
  color: rgba(11,18,32,0.6);
  margin-top: 8px;
}

/* BACKGROUND IMAGE */
.solution-bg {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  opacity: 0.35;
  z-index: 0;
}

.solution-bg img {
  width: 100%;
}

/* GRID */
.solution-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.solution-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.solution-card h3 {
  margin: 10px 0;
}

.solution-card p {
  color: rgba(11,18,32,0.65);
  font-size: 14px;
}

/* ICON */
.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon svg {
  width: 20px;
  height: 20px;
}

/* COLORS */
.solution-icon.red { background: #f64e4d; }
.solution-icon.green { background: #2ecc71; }
.solution-icon.yellow { background: #f1c40f; }

/* ALERT BOX */
.solution-alert {
  margin-top: 12px;
  background: #fff4f4;
  padding: 10px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  font-size: 13px;
}

.solution-alert .highlight {
  color: #e74c3c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

/* LAYOUT */
.solution-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

/* LEFT STACK */
.solution-left {
  display: grid;
  gap: 20px;
}

/* CARD */
.solution-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #d2cdcd;
}

/* HEAD ALIGN (ICON + TITLE SIDE BY SIDE) */
.solution-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.solution-head h3 {
  margin: 0;
  font-size: 18px;
}

/* RIGHT SIDE INFO */
.solution-info {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border: 1px solid #d2cdcd;
}

/* ALERT BOX */
.solution-alert {
  margin-top: 14px;
  background: #fff4f4;
  padding: 12px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.solution-alert .highlight {
  color: #e74c3c;
}

/* ICON COLORS */
.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon.red { background: #f64e4d; }
.solution-icon.green { background: #2ecc71; }
.solution-icon.yellow { background: #f1c40f; }

/* BACKGROUND FIX (VERY IMPORTANT) */
.solution-bg {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  opacity: 0.6; /* increased visibility */
  z-index: 1;
  pointer-events: none;
}

.solution-bg img {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .solution-layout {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.partner-section {
  padding: 50px 0;
  background: #f5f7fb;
}

/* MAIN CARD */
.partner-card {
  background: linear-gradient(180deg, #eef2f8, #e6ecf5);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

/* TITLE */
.partner-title {
  font-size: 28px;
  color: #1f2f4d;
  margin-bottom: 25px;
}

/* STATUS BAR */
.partner-status {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 25px;
  border: 1px solid #77d36e;
  text-align: left;
}

.partner-status h3 {
  margin: 0;
  font-size: 18px;
}

.partner-status p {
  margin: 4px 0 0;
  color: rgba(11,18,32,0.6);
}

/* GREEN DOT */
.status-dot {
  width: 14px;
  height: 14px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(46,204,113,0.15);
}

/* METRICS */
.partner-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* METRIC CARD */
.metric-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.metric-card h2 {
  font-size: 40px;
  margin: 0;
  color: #1f2f4d;
}

.metric-card p {
  margin-top: 8px;
  color: rgba(11,18,32,0.6);
}

/* HIGHLIGHT CARD */
.metric-card.highlight {
  border: 2px solid #5b8def;
  box-shadow: 0 12px 30px rgba(91,141,239,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-metrics {
    grid-template-columns: 1fr;
  }
}

/* GET APP SECTION */

.getapp-title {
  font-size: 56px;
  font-weight: 700;
  color: #0b1a33;
  margin: 10px 0;
}

.getapp-desc {
  font-size: 16px;
  color: rgba(11,18,32,0.7);
  max-width: 520px;
  margin: 15px 0 25px;
  line-height: 1.6;
}

/* BUTTONS */
.getapp-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #e53935;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-secondary {
  background: #fff;
  border: 2px solid #cfd6e4;
  color: #0b1a33;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* IMAGE */
.getapp-img {
  border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .getapp-title {
    font-size: 42px;
  }
}

.contact-form-outbox{max-width: 38rem;
  margin: 0 auto;}

  /* MOBILE NAV FIX */

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .nav-menu.open {
    display: flex;
  }
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}