:root {
  --ink: #07131f;
  --navy: #092238;
  --petrol: #0c3b4d;
  --graphite: #27313b;
  --muted: #637083;
  --line: #dce4ea;
  --soft: #f4f8fb;
  --white: #ffffff;
  --orange: #ff5b2e;
  --red: #ee334e;
  --cyan: #43d4d5;
  --green: #4fd18b;
  --shadow: 0 24px 70px rgba(9, 34, 56, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 19, 31, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 31, 0.94);
  box-shadow: 0 14px 30px rgba(7, 19, 31, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.1vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.main-nav a,
.nav-dropdown button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.nav-dropdown button:hover {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 190px;
  display: grid;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 19, 31, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(67, 212, 213, 0.16), transparent 28%),
    linear-gradient(135deg, #06111d 0%, #092238 48%, #0b3a45 100%);
}

.hero {
  min-height: 100vh;
  padding: 136px clamp(18px, 5vw, 70px) 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid,
.section-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.hero-statement {
  max-width: 640px;
  color: var(--cyan);
  font-weight: 700;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 14px 30px rgba(255, 91, 46, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-outline {
  color: var(--petrol);
  border-color: var(--line);
  background: var(--white);
}

.dashboard-shell {
  min-height: 560px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.dashboard-topbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.7);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.dashboard-topbar strong {
  margin-left: auto;
  font-size: 0.82rem;
}

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

.suite-preview {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.suite-preview article {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(6, 17, 29, 0.72);
}

.suite-preview img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 7px;
  background: var(--white);
}

.suite-preview strong,
.suite-preview span {
  display: block;
}

.suite-preview strong {
  color: var(--white);
}

.suite-preview span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.35;
}

.metric-card,
.chart-card,
.map-card,
.alerts-card {
  border-radius: var(--radius);
  background: rgba(6, 17, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
}

.metric-card small,
.metric-card span {
  color: rgba(255, 255, 255, 0.62);
}

.metric-card strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 2rem;
  line-height: 1;
}

.metric-hot {
  border-top: 3px solid var(--orange);
}

.metric-cyan {
  border-top: 3px solid var(--cyan);
}

.chart-card {
  grid-column: span 2;
}

.card-title {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.card-title b {
  color: var(--green);
}

.bar-chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding-top: 24px;
}

.bar-chart i {
  flex: 1;
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(67, 212, 213, 0.18));
}

.map-card {
  position: relative;
  min-height: 228px;
  overflow: hidden;
}

.map-card p {
  position: absolute;
  left: 16px;
  bottom: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.map-line {
  position: absolute;
  inset: 34px 22px 64px;
  border: 1px solid rgba(67, 212, 213, 0.24);
  transform: skew(-12deg);
}

.well {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 91, 46, 0.14);
}

.well-a {
  left: 24%;
  top: 26%;
}

.well-b {
  right: 22%;
  top: 36%;
  background: var(--cyan);
}

.well-c {
  left: 48%;
  bottom: 34%;
}

.well-d {
  right: 32%;
  bottom: 22%;
  background: var(--green);
}

.alerts-card {
  grid-column: span 2;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.status-ok {
  background: var(--green);
}

.status-cyan {
  background: var(--cyan);
}

.kpi-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.kpi {
  min-height: 136px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.kpi strong {
  display: block;
  color: var(--petrol);
  font-size: 2rem;
}

.kpi span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

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

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.text-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.text-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mission-box {
  margin-top: 26px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--soft);
}

.mission-box span {
  display: block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-box strong {
  display: block;
  margin-top: 4px;
}

.pillar-grid,
.why-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar-card,
.why-card,
.product-card,
.specialty-grid article,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(9, 34, 56, 0.08);
}

.pillar-card,
.why-card {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--petrol);
  font-weight: 800;
}

.pillar-card p,
.why-card p,
.product-card p,
.product-card li,
.specialty-grid p,
.step p {
  color: var(--muted);
}

.product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.product-card {
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.product-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 91, 46, 0.12), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--petrol));
}

.product-card.featured p,
.product-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.product-tag {
  margin-bottom: 8px;
  color: var(--orange) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card ul {
  padding-left: 18px;
  margin: 10px 0 24px;
}

.product-card .btn {
  margin-top: auto;
}

.product-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.product-logo-row img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-logo-row .product-tag {
  margin-bottom: 0;
}

.simulation-section {
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.92), rgba(255, 255, 255, 0.96)),
    var(--soft);
}

.simulation-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.simulation-gallery img {
  width: 100%;
  height: 142px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(9, 34, 56, 0.12);
}

.simulation-gallery .sim-large {
  grid-column: span 3;
  height: 300px;
}

.services .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.service-cloud {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.service-cloud span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

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

.specialty-grid article {
  padding: 22px;
}

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

.timeline {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  padding: 22px;
}

.step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 800;
}

.final-cta {
  padding: clamp(78px, 10vw, 128px) clamp(18px, 5vw, 70px);
  text-align: center;
}

.cta-content {
  width: min(830px, 100%);
  margin: 0 auto;
}

.cta-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.cta-content .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.76);
  background: #05101a;
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.footer-address {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.proposal-page {
  background: var(--white);
}

.proposal-hero {
  min-height: 100vh;
  padding: 136px clamp(18px, 5vw, 70px) 80px;
  display: grid;
  align-items: center;
}

.proposal-hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.proposal-copy h1 {
  font-size: clamp(3rem, 6.8vw, 6.8rem);
}

.proposal-subtitle {
  max-width: 760px;
  color: var(--cyan);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
}

.proposal-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.panel-header small,
.panel-header strong {
  display: block;
}

.panel-header small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.panel-header strong {
  color: var(--white);
  font-size: 1.25rem;
}

.panel-header > span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(79, 209, 139, 0.12);
  font-weight: 800;
}

.proposal-stack {
  display: grid;
  gap: 12px;
}

.proposal-row {
  position: relative;
  padding: 16px 96px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(6, 17, 29, 0.72);
}

.proposal-row.is-core {
  border-color: rgba(67, 212, 213, 0.28);
  background: linear-gradient(135deg, rgba(67, 212, 213, 0.12), rgba(79, 209, 139, 0.08));
}

.proposal-row b {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}

.proposal-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.42;
}

.proposal-row small {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.proposal-card-grid,
.proposal-steps {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proposal-modules {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.proposal-module {
  grid-column: span 2;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(9, 34, 56, 0.08);
}

.proposal-module.is-featured {
  grid-column: span 3;
  color: var(--white);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 91, 46, 0.12), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--petrol));
}

.proposal-module span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--petrol);
  background: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proposal-module.is-featured span {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
}

.proposal-module p {
  color: var(--muted);
}

.proposal-module.is-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .step {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.section-dark .step p {
  color: rgba(255, 255, 255, 0.68);
}

.proposal-commercial {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 14px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(67, 212, 213, 0.12), transparent 36%),
    linear-gradient(135deg, var(--navy), var(--petrol));
  box-shadow: var(--shadow);
}

.proposal-commercial p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.proposal-rules {
  display: grid;
  gap: 12px;
  align-content: center;
}

.proposal-rules span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

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

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

@media (max-width: 1040px) {
  .hero-grid,
  .section-grid,
  .product-grid,
  .proposal-hero-grid,
  .proposal-commercial {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    min-height: auto;
  }

  .kpi-strip,
  .pillar-grid,
  .why-grid,
  .timeline,
  .proposal-card-grid,
  .proposal-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .proposal-module,
  .proposal-module.is-featured {
    grid-column: span 3;
  }

  .main-nav {
    font-size: 0.8rem;
    gap: 10px;
  }
}

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

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 20px;
    background: rgba(7, 19, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown button {
    width: 100%;
    padding: 13px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

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

  .hero {
    padding-top: 118px;
  }

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

  .chart-card,
  .alerts-card {
    grid-column: auto;
  }

  .kpi-strip,
  .pillar-grid,
  .why-grid,
  .timeline,
  .specialty-grid,
  .simulation-gallery,
  .proposal-card-grid,
  .proposal-steps {
    grid-template-columns: 1fr;
  }

  .proposal-modules {
    grid-template-columns: 1fr;
  }

  .proposal-module,
  .proposal-module.is-featured {
    grid-column: auto;
  }

  .proposal-row {
    padding-right: 18px;
  }

  .proposal-row small {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  .simulation-gallery .sim-large {
    grid-column: auto;
    height: 220px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .section {
    padding-inline: 16px;
  }

  .kpi-strip {
    width: calc(100% - 32px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
