:root {
  --bg-base: #eff3f8;
  --bg-deep: #031225;
  --surface: #ffffff;
  --surface-muted: #f4f7fc;
  --text-primary: #071322;
  --text-secondary: #50607a;
  --brand-strong: #1451df;
  --brand-main: #1f6feb;
  --brand-soft: #4fc6ff;
  --success: #1fa971;
  --warning: #f3a536;
  --border-soft: #d7e0ec;
  --shadow-lg: 0 30px 70px rgba(7, 19, 34, 0.16);
  --shadow-md: 0 14px 40px rgba(10, 40, 95, 0.12);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: min(1160px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: radial-gradient(120% 100% at 0% 0%, #f8fbff 0%, var(--bg-base) 40%, #e8eef7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand-main,
.button,
.tab,
.footer-brand {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.backdrop-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(20, 81, 223, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 81, 223, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 0%, #000 35%, transparent 85%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, 0.84);
  border-bottom: 1px solid rgba(18, 64, 158, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(4, 27, 66, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  border: 1px solid rgba(14, 35, 67, 0.12);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(9, 22, 45, 0.14);
  flex: 0 0 auto;
}

.brand-main {
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  color: #263957;
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--brand-main);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.solid {
  background: linear-gradient(135deg, #1d63e9, #1388f8);
  color: #fff;
  box-shadow: 0 10px 26px rgba(25, 105, 237, 0.35);
}

.button.ghost {
  border-color: #b5c7e3;
  color: #12386f;
  background: rgba(255, 255, 255, 0.75);
}

.button.ghost:hover {
  border-color: #89a7d6;
  box-shadow: 0 10px 24px rgba(11, 54, 130, 0.15);
}

.hero {
  position: relative;
  padding: 70px 0 46px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 680px;
  height: 680px;
  top: -340px;
  right: -130px;
  background: radial-gradient(circle, rgba(47, 150, 255, 0.3) 0%, rgba(15, 83, 214, 0) 70%);
}

.hero::after {
  width: 540px;
  height: 540px;
  top: -280px;
  left: -120px;
  background: radial-gradient(circle, rgba(19, 97, 237, 0.25) 0%, rgba(19, 97, 237, 0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  border: 1px solid #c5d6ef;
  color: #1d4f9f;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 18ch;
}

.hero .lead {
  margin: 0;
  max-width: 62ch;
  color: #314665;
  font-size: 1.03rem;
}

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

.hero-metrics {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d4dfef;
  border-radius: var(--radius-md);
  padding: 14px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.46rem;
  color: #143c79;
}

.hero-metrics span {
  font-size: 0.83rem;
  color: #54637d;
}

.hero-panel {
  background: linear-gradient(180deg, #081a34 0%, #061328 100%);
  color: #d9ebff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 16px;
  border: 1px solid rgba(91, 145, 232, 0.36);
  overflow: hidden;
}

.hero-panel header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(126, 168, 241, 0.32);
  padding-bottom: 10px;
}

.hero-panel header p {
  margin: 0;
  font-weight: 600;
}

.hero-panel header span {
  margin: 0;
  font-size: 0.78rem;
  color: #95b7e5;
}

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

.lane-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(99, 148, 235, 0.28);
  border-radius: 10px;
  background: rgba(14, 43, 86, 0.45);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
}

.dot.success {
  background: #16ce8f;
  box-shadow: 0 0 0 4px rgba(22, 206, 143, 0.2);
}

.dot.info {
  background: #57acff;
  box-shadow: 0 0 0 4px rgba(87, 172, 255, 0.2);
}

.dot.warning {
  background: #f3b34a;
  box-shadow: 0 0 0 4px rgba(243, 179, 74, 0.2);
}

.lane-list p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.lane-list small {
  color: #aac5e8;
  font-size: 0.8rem;
}

.panel-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(126, 168, 241, 0.32);
  padding-top: 10px;
  font-size: 0.88rem;
}

.panel-footer strong {
  color: #5defaf;
}

.hero-preview {
  margin: 16px -22px 0;
  position: relative;
  border-top: 1px solid rgba(126, 168, 241, 0.32);
}

.hero-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(0.85);
  display: block;
}

.hero-preview figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  margin: 0;
  font-size: 0.78rem;
  color: #e3f1ff;
  padding: 0.48rem 0.65rem;
  border-radius: 9px;
  border: 1px solid rgba(137, 182, 244, 0.4);
  background: rgba(6, 29, 62, 0.72);
  backdrop-filter: blur(4px);
}

.trust-strip {
  padding: 0 0 20px;
}

.trust-wrap {
  border: 1px solid #d5e2f4;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 22px rgba(13, 56, 124, 0.08);
}

.trust-wrap p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: #385179;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-items span {
  border-radius: 999px;
  border: 1px solid #c8d9ef;
  background: #f8fbff;
  color: #244872;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.section {
  padding: 84px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.2;
}

.section-head p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  max-width: 72ch;
}

.problem {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(241, 246, 254, 0.95));
}

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

.card {
  background: linear-gradient(160deg, #04234c, #0f3d79);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #ddedff;
  min-height: 190px;
  border: 1px solid rgba(128, 178, 247, 0.42);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: #cae0fb;
}

.lifecycle {
  background: #fff;
}

.lifecycle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 18px;
  align-items: start;
}

.timeline {
  margin: 0;
  padding: 16px;
  list-style: none;
  border-radius: var(--radius-lg);
  background: #f6f9ff;
  border: 1px solid #dce5f1;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 14px 10px;
  border-radius: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.timeline-item + .timeline-item {
  margin-top: 6px;
}

.timeline-item span {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #2d5387;
  background: #e4edf9;
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.timeline-item p {
  margin: 0;
  color: #5a6982;
}

.timeline-item.active {
  background: #e9f2ff;
  transform: translateX(5px);
}

.timeline-item.active span {
  background: linear-gradient(135deg, #1e67eb, #0c8af6);
  color: #fff;
}

.release-map {
  background: linear-gradient(180deg, #04152e 0%, #08244b 100%);
  border: 1px solid rgba(90, 144, 232, 0.4);
  color: #e3efff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.release-map h3 {
  margin: 0 0 14px;
}

.release-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.release-row label {
  color: #b9d4fa;
  font-weight: 600;
}

.release-row div {
  height: 36px;
  border-radius: 10px;
  background: rgba(21, 61, 118, 0.7);
  border: 1px solid rgba(111, 158, 236, 0.33);
  padding: 5px;
}

.release-row span {
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  background: linear-gradient(90deg, #1f6feb, #4bc7ff);
}

.map-note {
  margin: 10px 0 0;
  color: #aac7ee;
  font-size: 0.86rem;
}

.capabilities {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

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

.feature-card {
  background: #fff;
  border: 1px solid #d8e4f5;
  border-radius: 14px;
  padding: 20px;
  min-height: 172px;
  box-shadow: 0 8px 22px rgba(15, 64, 147, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #bdd1ee;
  box-shadow: 0 14px 28px rgba(15, 64, 147, 0.14);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.17rem;
}

.feature-card p {
  margin: 0;
  color: #4f607d;
}

.showcase {
  background: linear-gradient(180deg, #edf4ff 0%, #f8fbff 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.show-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d2e0f2;
  background: #0a1f3a;
  box-shadow: 0 14px 30px rgba(12, 48, 109, 0.15);
  position: relative;
}

.show-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 21, 44, 0.05) 8%, rgba(5, 23, 44, 0.72) 92%);
  pointer-events: none;
  z-index: 1;
}

.show-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: grayscale(14%) contrast(1.07) saturate(0.95);
  transform: scale(1.02);
}

.show-card.large img {
  height: 370px;
}

.show-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
}

.show-card h3 {
  margin: 0 0 5px;
  color: #f4f8ff;
  font-size: 1.14rem;
}

.show-card p {
  margin: 0;
  color: #c8dcfa;
  font-size: 0.87rem;
}

.use-cases {
  background: #fff;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tab {
  border: 1px solid #c7d8ee;
  background: #f8fbff;
  color: #274773;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #1f6feb, #2389f9);
  box-shadow: 0 10px 24px rgba(31, 111, 235, 0.3);
}

.tab-panels {
  background: linear-gradient(160deg, #041935, #0a2f61);
  color: #def0ff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 156, 236, 0.4);
  box-shadow: var(--shadow-md);
  padding: 22px;
  min-height: 236px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.35rem;
}

.tab-panel p {
  margin: 0;
  color: #c5defa;
}

.tab-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #dcecff;
}

.tab-panel li + li {
  margin-top: 5px;
}

.insights {
  background: linear-gradient(180deg, #f2f7ff 0%, #edf3fd 100%);
}

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

.insight-card {
  background: #fff;
  border: 1px solid #d7e1f0;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(12, 58, 133, 0.09);
}

.insight-card h2 {
  margin: 0;
  font-size: 1.85rem;
}

.insight-card p {
  color: #4c5d79;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.92rem;
}

th,
td {
  border-bottom: 1px solid #d9e4f5;
  padding: 0.72rem 0.25rem;
  text-align: left;
}

th {
  color: #2b4d7d;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input[type="range"] {
  width: 100%;
  margin-top: 10px;
  accent-color: #1f6feb;
}

.bar-stack {
  margin-top: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.bar-row span {
  font-size: 0.88rem;
  color: #496081;
}

.bar {
  height: 16px;
  border-radius: 999px;
  background: #ebf1fa;
  overflow: hidden;
  border: 1px solid #d8e3f4;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f6feb, #45bdf8);
  transition: width 0.3s ease;
}

.bar-row.emphasis .bar i {
  background: linear-gradient(90deg, #1cb97d, #57dca8);
}

.bar-row strong {
  font-size: 0.9rem;
  color: #102747;
}

.contact {
  background: linear-gradient(180deg, #031224 0%, #0a2f58 100%);
  color: #ddedff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: start;
}

.contact .eyebrow {
  border-color: rgba(121, 166, 233, 0.5);
  color: #b8d8ff;
  background: rgba(13, 47, 91, 0.8);
}

.contact h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact p {
  color: #b8d3f3;
}

.contact-benefits {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.contact-benefits li {
  border: 1px solid rgba(131, 176, 238, 0.38);
  background: rgba(15, 52, 100, 0.55);
  color: #d7e9ff;
  padding: 0.62rem 0.78rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.contact-note {
  margin-top: 12px;
  font-size: 0.86rem;
  color: #a4c5ec;
}

.contact-form {
  background: rgba(255, 255, 255, 0.97);
  color: #10213c;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(151, 184, 235, 0.5);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-top: 0;
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f3960;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c7d8ef;
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
  color: #172c49;
  background: #f7faff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 111, 235, 0.28);
  border-color: #8fb2e8;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #cf3e4d;
  background: #fff6f7;
  outline: 2px solid rgba(207, 62, 77, 0.2);
}

.form-status {
  margin-top: 10px;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.site-footer {
  background: #020e1f;
  color: #d4e7ff;
  padding: 34px 0;
  border-top: 1px solid rgba(104, 145, 209, 0.3);
}

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

.footer-brand {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #fff;
}

.site-footer p {
  margin: 0 0 6px;
  color: #abc7ea;
}

.site-footer strong {
  color: #fff;
}

.footer-map-module {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(108, 151, 218, 0.3);
}

.footer-map-title {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-map-frame {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(127, 167, 226, 0.4);
  background: #051021;
}

.footer-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-map-link {
  display: inline-block;
  margin-top: 9px;
  color: #8ec4ff;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-map-link:hover {
  color: #b4dbff;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .lifecycle-layout,
  .insights-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .show-card.large {
    grid-column: 1 / -1;
  }

  .hero-panel {
    max-width: 760px;
  }

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

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

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 26px);
  }

  .site-header {
    padding: 6px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .desktop-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 13px;
    left: 13px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #cfe0f3;
    border-radius: 14px;
    display: grid;
    padding: 14px;
    box-shadow: 0 16px 40px rgba(5, 35, 82, 0.2);
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .cap-grid,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .feature-card,
  .insight-card,
  .contact-form {
    min-height: auto;
  }

  .tab {
    width: 100%;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section {
    padding: 66px 0;
  }

  .trust-strip {
    padding-bottom: 6px;
  }
}
