:root {
  --bg: #031628;
  --bg-soft: #052947;
  --panel: rgba(3, 27, 49, 0.9);
  --panel-strong: #041f3a;
  --line: rgba(0, 214, 255, 0.24);
  --text: #f2fbff;
  --muted: #b1c7d4;
  --green: #5ce12a;
  --green-strong: #1c9d32;
  --green-soft: rgba(92, 225, 42, 0.18);
  --blue: #0069d6;
  --blue-deep: #004ea8;
  --cyan: #00dff2;
  --purple: #00aeca;
  --shadow: 0 24px 80px rgba(0, 7, 17, 0.42);
  --radius-lg: 22px;
  --radius-md: 16px;
  --page-pad: clamp(10px, 2vw, 32px);
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-label: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  background:
    radial-gradient(ellipse at 50% 4%, rgba(242, 251, 255, 0.86) 0%, rgba(183, 234, 219, 0.44) 17%, transparent 34%),
    radial-gradient(circle at 0% 8%, rgba(0, 105, 214, 0.8), transparent 36%),
    radial-gradient(circle at 100% 10%, rgba(92, 225, 42, 0.58), transparent 38%),
    radial-gradient(circle at 42% 54%, rgba(0, 223, 242, 0.2), transparent 30%),
    linear-gradient(180deg, #04315b 0%, #031f3a 36%, #021928 100%);
}

body.modal-open { overflow: hidden; }

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(32deg, transparent 0 46%, rgba(0, 223, 242, 0.2) 47% 47.6%, transparent 48.6% 100%),
    linear-gradient(148deg, transparent 0 44%, rgba(92, 225, 42, 0.14) 45% 45.6%, transparent 46.6% 100%),
    linear-gradient(rgba(0, 223, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 225, 42, 0.055) 1px, transparent 1px);
  background-size: 360px 180px, 420px 220px, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 88%);
}

body::after {
  position: fixed;
  inset: auto -8vw 0 -8vw;
  z-index: -1;
  height: 34vh;
  min-height: 240px;
  content: "";
  background:
    radial-gradient(circle at 10% 70%, rgba(0, 105, 214, 0.46), transparent 20%),
    radial-gradient(circle at 88% 55%, rgba(92, 225, 42, 0.38), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0, 47, 83, 0.5) 28%, rgba(1, 15, 26, 0.96));
  opacity: 0.95;
  pointer-events: none;
}

img { max-width: 100%; }

.page-shell {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(8px, 1.2vw, 18px) var(--page-pad) clamp(22px, 3vw, 44px);
  zoom: 0.95;
}

.page-view[hidden] { display: none !important; }

.topbar {
  position: sticky;
  top: clamp(8px, 1vw, 16px);
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  width: 100%;
  padding: 8px clamp(12px, 1.4vw, 20px);
  margin-bottom: clamp(14px, 1.8vw, 24px);
  background:
    linear-gradient(115deg, rgba(0, 105, 214, 0.26), rgba(3, 27, 49, 0.88) 48%, rgba(92, 225, 42, 0.18));
  border: 1px solid rgba(0, 223, 242, 0.3);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand { display: inline-flex; align-items: center; color: inherit; text-decoration: none; }

.brand-logo {
  display: block;
  width: clamp(150px, 13vw, 232px);
  height: auto;
  filter:
    drop-shadow(0 10px 18px rgba(0, 7, 17, 0.44))
    drop-shadow(0 0 16px rgba(0, 223, 242, 0.18));
  object-fit: contain;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand:hover .brand-logo {
  filter:
    drop-shadow(0 14px 24px rgba(0, 7, 17, 0.52))
    drop-shadow(0 0 20px rgba(92, 225, 42, 0.2));
}

.mini-logo {
  display: block;
  width: min(126px, 100%);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 7, 17, 0.42));
  object-fit: contain;
}

.nav { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(8px, 1vw, 18px); }

.nav a,
.footer a,
.contact-list a { color: var(--muted); text-decoration: none; transition: color 180ms ease; }

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"],
.footer a:hover,
.contact-list a:hover { color: var(--text); }

.nav a[aria-current="page"] {
  background: rgba(0, 105, 214, 0.24);
  box-shadow: 0 10px 20px rgba(0, 7, 17, 0.22), 0 0 18px rgba(0, 105, 214, 0.18);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 223, 242, 0.32);
  border-radius: 14px;
  background: rgba(4, 35, 62, 0.88);
  box-shadow: 0 12px 26px rgba(0, 7, 17, 0.36), 0 0 0 1px rgba(0, 223, 242, 0.08);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span { display: block; width: 22px; height: 2px; border-radius: 99px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.topbar.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.topbar.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.brand:focus-visible,
.nav a:focus-visible,
.menu-toggle:focus-visible,
.primary-button:focus-visible,
.ghost-button:focus-visible,
.footer a:focus-visible,
.project-card a:focus-visible,
.contact-list a:focus-visible,
.quote-modal__close:focus-visible,
.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible { outline: 3px solid rgba(92, 225, 42, 0.88); outline-offset: 4px; }

.primary-button,
.ghost-button {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-button {
  color: #031628;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow:
    0 22px 38px rgba(0, 7, 17, 0.46),
    0 16px 38px rgba(0, 223, 242, 0.34),
    0 8px 26px rgba(92, 225, 42, 0.3),
    inset 0 1px 0 rgba(242, 251, 255, 0.46);
}

.topbar > .primary-button.compact,
.hero-actions .primary-button,
.cta-band .primary-button,
.contact-card .primary-button {
  box-shadow:
    0 26px 44px rgba(0, 7, 17, 0.5),
    0 18px 42px rgba(0, 223, 242, 0.42),
    0 10px 30px rgba(92, 225, 42, 0.38),
    inset 0 1px 0 rgba(242, 251, 255, 0.5);
}

.ghost-button {
  color: var(--text);
  background: rgba(4, 35, 62, 0.84);
  border-color: rgba(0, 223, 242, 0.3);
  box-shadow: 0 12px 26px rgba(0, 7, 17, 0.34), 0 0 20px rgba(0, 223, 242, 0.08);
}

.primary-button:hover,
.ghost-button:hover {
  box-shadow:
    0 18px 34px rgba(0, 7, 17, 0.4),
    0 16px 38px rgba(0, 223, 242, 0.24),
    0 8px 24px rgba(92, 225, 42, 0.18);
  transform: translateY(-2px);
}

.topbar > .primary-button.compact:hover,
.hero-actions .primary-button:hover,
.cta-band .primary-button:hover,
.contact-card .primary-button:hover {
  box-shadow:
    0 30px 52px rgba(0, 7, 17, 0.56),
    0 22px 48px rgba(0, 223, 242, 0.5),
    0 12px 34px rgba(92, 225, 42, 0.46),
    inset 0 1px 0 rgba(242, 251, 255, 0.56);
  transform: translateY(-3px);
}
.primary-button.compact { min-height: 34px; white-space: nowrap; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
  min-height: auto;
  padding-bottom: clamp(14px, 2.2vw, 30px);
}

.hero-copy,
.hero-panel,
.service-card,
.project-card,
.cta-band,
.footer,
.info-strip,
.feature-card,
.benefit-card,
.about-card,
.contact-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 223, 242, 0.14), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(92, 225, 42, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(4, 49, 91, 0.86), rgba(2, 25, 40, 0.9));
  border: 1px solid rgba(0, 223, 242, 0.26);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy { display: grid; align-content: start; padding: clamp(22px, 3vw, 48px) clamp(20px, 2.6vw, 40px); }

.hero-copy::after,
.hero-panel::after,
.cta-band::after,
.feature-card::after,
.contact-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at right top, rgba(92, 225, 42, 0.28), transparent 28%),
    radial-gradient(circle at left bottom, rgba(0, 223, 242, 0.22), transparent 36%),
    linear-gradient(130deg, rgba(0, 105, 214, 0.1), transparent 40%, rgba(92, 225, 42, 0.09));
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 105, 214, 0.16);
  border: 1px solid rgba(0, 223, 242, 0.2);
  color: var(--green);
  font: 700 0.66rem/1 var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 16ch;
  margin: 14px 0 14px;
  font: 700 clamp(2rem, 3.7vw, 4.75rem) / 0.98 var(--font-display);
  letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 span { color: var(--green); }

.hero p,
.section-heading p,
.feature-card p,
.about-card p,
.contact-card p { max-width: 62ch; color: var(--muted); line-height: 1.5; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 24px; }
.hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.hero-points article { display: flex; gap: 10px; padding: 12px; background: rgba(3, 27, 49, 0.58); border: 1px solid rgba(0, 223, 242, 0.15); border-radius: 14px; }
.point-icon { display: grid; place-items: center; min-width: 36px; height: 36px; border-radius: 11px; background: var(--green-soft); }
.point-icon img { width: 24px; height: 24px; }

.hero-points h2,
.section-title h2,
.service-card h3,
.project-head h3,
.footer h3,
.feature-card h3,
.benefit-card h3,
.about-card h3,
.contact-card h3 { margin: 0; font: 700 0.88rem/1.2 var(--font-display); }

.hero-points p,
.service-card p,
.project-head p,
.footer p,
.activity-list li,
.legend li,
.project-card li,
.benefit-card p,
.about-card li,
.contact-list span { margin: 4px 0 0; color: var(--muted); line-height: 1.42; font-size: 0.78rem; }

.hero-panel { padding: clamp(6px, 0.9vw, 10px); }
.dashboard-window { display: grid; grid-template-columns: clamp(104px, 8vw, 142px) 1fr; min-height: 0; background: rgba(2, 22, 40, 0.76); border: 1px solid rgba(0, 223, 242, 0.18); border-radius: 16px; }
.dashboard-sidebar { display: grid; align-content: start; gap: 6px; padding: 10px 9px; border-right: 1px solid rgba(0, 223, 242, 0.16); background: linear-gradient(180deg, rgba(4, 35, 62, 0.96), rgba(2, 22, 40, 0.92)); }
.mini-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.menu-item { padding: 7px 8px; border-radius: 9px; color: var(--muted); text-decoration: none; transition: background 180ms ease, color 180ms ease; font-size: 0.78rem; }
.menu-item.active,
.menu-item:hover { color: var(--text); background: rgba(0, 105, 214, 0.22); }
.dashboard-main { display: grid; gap: clamp(7px, 0.8vw, 11px); padding: clamp(9px, 1vw, 14px); }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dashboard-top span,
.stat-card span,
.section-title span { display: block; color: var(--muted); font-size: 0.72rem; }
.dashboard-top h2 { margin: 2px 0 0; font: 700 clamp(1rem, 1.25vw, 1.35rem) / 1.08 var(--font-display); }
.dashboard-actions { display: flex; gap: 7px; }
.dashboard-actions span { width: 9px; height: 9px; border-radius: 50%; background: rgba(0, 105, 214, 0.42); }
.dashboard-actions span:nth-child(2) { background: rgba(92, 225, 42, 0.4); }
.dashboard-actions span:nth-child(3) { background: rgba(0, 223, 242, 0.4); }

.stats-row,
.metrics-grid,
.activity-grid,
.services-grid,
.projects-grid,
.footer,
.benefit-grid,
.about-grid,
.feature-stats,
.info-strip { display: grid; gap: clamp(10px, 1.1vw, 16px); }
.stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat-card,
.chart-card,
.donut-card,
.activity-card,
.service-card,
.project-card,
.benefit-card { padding: clamp(9px, 1vw, 14px); background: rgba(3, 27, 49, 0.88); border: 1px solid rgba(0, 223, 242, 0.16); border-radius: var(--radius-md); }
.stat-card strong { display: block; margin: 5px 0 4px; font: 700 clamp(0.96rem, 1.05vw, 1.22rem) / 1 var(--font-display); }
.stat-card small { color: var(--green); font-weight: 700; }
.metrics-grid { grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.8fr); }
.line-chart { position: relative; height: clamp(86px, 10vw, 132px); margin-top: 10px; border-radius: 12px; background: linear-gradient(rgba(0, 223, 242, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 225, 42, 0.08) 1px, transparent 1px); background-size: 100% 25%, 16.66% 100%; }
.line-chart::after { position: absolute; inset: 22px 12px 24px 12px; content: ""; border-radius: 18px; background: radial-gradient(circle at 0% 72%, var(--blue) 0 3px, transparent 4px), radial-gradient(circle at 20% 58%, var(--cyan) 0 3px, transparent 4px), radial-gradient(circle at 40% 62%, var(--blue) 0 3px, transparent 4px), radial-gradient(circle at 60% 40%, var(--green) 0 3px, transparent 4px), radial-gradient(circle at 80% 28%, var(--green) 0 3px, transparent 4px), radial-gradient(circle at 100% 12%, var(--green) 0 3px, transparent 4px); clip-path: polygon(0 78%, 20% 62%, 40% 67%, 60% 43%, 80% 31%, 100% 14%, 100% 100%, 0 100%); box-shadow: inset 0 -100px 80px rgba(0, 105, 214, 0.16); }
.line-chart span { position: absolute; inset: 0; }
.line-chart span::before { position: absolute; inset: 22px 12px 24px 12px; content: ""; border-radius: 18px; border: 3px solid transparent; border-left: none; border-bottom: none; }
.line-chart span:nth-child(1)::before { border-color: rgba(0, 223, 242, 0.95); clip-path: polygon(0 77%, 20% 61%, 40% 66%, 60% 42%, 80% 30%, 100% 13%); }
.chart-labels { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 12px; color: var(--muted); font-size: 0.78rem; }
.donut-card { display: grid; align-content: start; }
.donut { display: grid; place-items: center; padding: 8px 0; }
.donut-ring { display: grid; place-items: center; width: clamp(84px, 7vw, 112px); height: clamp(84px, 7vw, 112px); border-radius: 50%; background: radial-gradient(circle at center, #041f3a 0 55%, transparent 56%), conic-gradient(var(--green) 0 65%, rgba(0, 223, 242, 0.28) 65% 100%); box-shadow: inset 0 0 0 10px rgba(4, 35, 62, 0.88); }
.donut-ring strong { font: 700 clamp(1rem, 1.25vw, 1.3rem) / 1 var(--font-display); }
.donut-ring span { margin-top: -34px; color: var(--muted); font-size: 0.76rem; }
.legend,
.activity-list,
.project-card ul,
.about-card ul { display: grid; gap: 7px; padding: 0; margin: 10px 0 0; list-style: none; }
.legend li,
.activity-list li,
.project-card li,
.about-card li { display: flex; align-items: flex-start; gap: 10px; }
.project-card li::before,
.about-card li::before { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; content: ""; border-radius: 50%; background: url("icons/check.svg") center/14px 14px no-repeat, rgba(92, 225, 42, 0.14); }
.dot { width: 9px; height: 9px; flex: 0 0 9px; margin-top: 7px; border-radius: 50%; background: currentColor; }
.dot.green { color: var(--green); }
.dot.blue { color: var(--blue); }
.dot.cyan { color: var(--cyan); }

.info-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: clamp(14px, 1.5vw, 22px); margin-bottom: clamp(18px, 2.4vw, 32px); }
.info-strip article { padding: clamp(12px, 1.2vw, 16px); border-radius: 16px; background: rgba(3, 27, 49, 0.8); border: 1px solid rgba(0, 223, 242, 0.15); }
.info-strip strong { display: block; font: 700 clamp(1.38rem, 2.2vw, 2.42rem) / 1 var(--font-display); color: var(--green); }
.info-strip span { display: block; margin-top: 8px; color: var(--muted); }

.section-band { padding: clamp(26px, 3.8vw, 58px) 0 clamp(14px, 2.4vw, 28px); }
.section-heading { display: grid; justify-items: center; gap: 10px; max-width: 860px; margin: 0 auto clamp(18px, 2.4vw, 30px); text-align: center; }
.section-heading h2 { margin: 0; font: 700 clamp(1.7rem, 3.1vw, 3.8rem) / 1 var(--font-display); letter-spacing: 0; }
.section-heading p { margin: 0; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.service-card { min-height: 210px; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.service-icon,
.project-badge { display: block; width: 54px; height: 54px; margin-bottom: 16px; padding: 9px; border-radius: 14px; border: 1px solid rgba(0, 223, 242, 0.24); background: radial-gradient(circle at top left, rgba(0, 223, 242, 0.24), transparent 55%), rgba(4, 35, 62, 0.92); box-shadow: 0 0 22px rgba(0, 223, 242, 0.12); }
.service-card:hover,
.project-card:hover,
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(92, 225, 42, 0.34); box-shadow: 0 26px 80px rgba(0, 7, 17, 0.48); }

.benefits-layout { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr); gap: clamp(14px, 1.8vw, 22px); }
.feature-card { display: grid; align-content: center; gap: 14px; padding: clamp(18px, 2.8vw, 40px); }
.feature-card h3,
.about-card h3,
.contact-card h3 { font-size: clamp(1.28rem, 2.1vw, 2.35rem); letter-spacing: 0; }
.feature-card p,
.about-card p,
.contact-card p { margin: 0; }
.feature-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 8px; }
.feature-stats div { padding: 12px; border: 1px solid rgba(0, 223, 242, 0.16); border-radius: 14px; background: rgba(3, 27, 49, 0.58); }
.feature-stats strong { display: block; color: var(--green); font: 700 1.18rem/1 var(--font-display); }
.feature-stats span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.82rem; }
.benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.benefit-card { min-height: 158px; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.benefit-card h3 { position: relative; padding-top: 42px; }
.benefit-card h3::before { position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 34px; height: 34px; content: ""; border-radius: 11px; background: radial-gradient(circle, rgba(92, 225, 42, 0.58), transparent 65%), rgba(0, 223, 242, 0.14); box-shadow: 0 0 22px rgba(92, 225, 42, 0.2); }

.projects-grid { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.project-card { display: grid; gap: 12px; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.project-card.green {
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 225, 42, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(3, 42, 56, 0.9), rgba(2, 25, 40, 0.94));
  box-shadow: inset 0 0 0 1px rgba(92, 225, 42, 0.3), var(--shadow);
}
.project-card.purple {
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 223, 242, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(4, 49, 91, 0.9), rgba(2, 25, 40, 0.94));
  box-shadow: inset 0 0 0 1px rgba(0, 223, 242, 0.3), var(--shadow);
}
.project-card.blue {
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 225, 42, 0.22), transparent 35%),
    radial-gradient(circle at 0% 8%, rgba(0, 105, 214, 0.3), transparent 40%),
    linear-gradient(180deg, rgba(3, 49, 72, 0.92), rgba(2, 25, 40, 0.94));
  box-shadow: inset 0 0 0 1px rgba(92, 225, 42, 0.26), var(--shadow);
}
.project-card.cyan {
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 223, 242, 0.28), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(92, 225, 42, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(3, 56, 80, 0.92), rgba(2, 25, 40, 0.94));
  box-shadow: inset 0 0 0 1px rgba(0, 223, 242, 0.32), var(--shadow);
}
.project-head { display: flex; align-items: center; gap: 12px; }
.project-head .project-badge { flex: 0 0 auto; margin-bottom: 0; }
.project-head p { margin-top: 2px; color: var(--green); font-weight: 700; }
.project-card ul { min-height: 122px; }
.project-preview { min-height: clamp(116px, 10vw, 154px); border-radius: 14px; border: 1px solid rgba(242, 251, 255, 0.08); background-color: rgba(242, 251, 255, 0.02); }
.project-preview-media { display: block; padding: 0; overflow: hidden; background: rgba(3, 27, 49, 0.8); }
.project-preview-media img { display: block; width: 100%; height: 100%; min-height: clamp(116px, 10vw, 154px); object-fit: cover; object-position: center; }
.project-showcase { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 10px; padding: 12px 10px 8px; overflow: hidden; background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent); background-size: 100% 28px, 18% 100%, 100% 100%; }
.project-showcase::before { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 35%, rgba(0,0,0,0.18)); pointer-events: none; }
.device { position: relative; border-radius: 12px; background: linear-gradient(180deg, rgba(242,246,250,0.95), rgba(212,220,230,0.92)); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28); }
.device::before { position: absolute; left: 50%; transform: translateX(-50%); content: ""; background: rgba(12, 21, 31, 0.7); }
.device.laptop { width: min(78%, 220px); height: 84px; padding: 6px 6px 12px; }
.device.laptop::before { bottom: -7px; width: 82%; height: 8px; border-radius: 0 0 10px 10px; }
.device.phone { width: 52px; height: 96px; padding: 6px 4px; border-radius: 15px; }
.device.phone::before { top: 4px; width: 18px; height: 3px; border-radius: 999px; }
.device-screen { width: 100%; height: 100%; border-radius: 8px; background-color: #f2fbff; border: 1px solid rgba(3, 27, 49, 0.08); }
.app-grid { background: linear-gradient(90deg, #0069d6 0 18%, transparent 18%), linear-gradient(#d7ecf6 0 0) top 10px left 22% / 28% 8px no-repeat, linear-gradient(#e5f4f9 0 0) top 24px left 22% / 66% 10px no-repeat, linear-gradient(#c7e6f2 0 0) top 42px left 22% / 66% 24px no-repeat, linear-gradient(#bdebdc 0 0) top 42px left 58% / 30% 24px no-repeat, linear-gradient(180deg, #f2fbff, #e6f5ee); }
.map-screen { background: radial-gradient(circle at 36% 42%, rgba(92, 225, 42, 0.9) 0 6px, transparent 7px), linear-gradient(135deg, transparent 48%, rgba(0, 105, 214, 0.55) 48% 52%, transparent 52%), linear-gradient(45deg, transparent 30%, rgba(0, 223, 242, 0.3) 30% 34%, transparent 34%), linear-gradient(180deg, #f2fbff, #e6f5ee); }
.cards-screen { background: linear-gradient(#d7ecf6 0 0) top 10px left 10px / 48px 8px no-repeat, linear-gradient(#e5f4f9 0 0) top 24px left 10px / 86% 36px no-repeat, linear-gradient(#c7e6f2 0 0) bottom 12px left 10px / 40% 18px no-repeat, linear-gradient(#bdebdc 0 0) bottom 12px right 10px / 42% 18px no-repeat, linear-gradient(180deg, #f2fbff, #e6f5ee); }
.tasks-screen { background: linear-gradient(#bdebdc 0 0) top 14px left 6px / 70% 9px no-repeat, linear-gradient(#e5f4f9 0 0) top 31px left 6px / 80% 7px no-repeat, linear-gradient(#e5f4f9 0 0) top 47px left 6px / 72% 7px no-repeat, linear-gradient(#e5f4f9 0 0) top 63px left 6px / 68% 7px no-repeat, linear-gradient(180deg, #f2fbff, #e6f5ee); }
.charts-screen { background: linear-gradient(#d7ecf6 0 0) top 10px left 10px / 48px 8px no-repeat, radial-gradient(circle at 24% 68%, #0069d6 0 4px, transparent 5px), radial-gradient(circle at 48% 52%, #00dff2 0 4px, transparent 5px), radial-gradient(circle at 70% 58%, #5ce12a 0 4px, transparent 5px), radial-gradient(circle at 86% 32%, #5ce12a 0 4px, transparent 5px), linear-gradient(135deg, transparent 58%, rgba(0, 105, 214, 0.24) 58% 66%, transparent 66%), linear-gradient(180deg, #f2fbff, #e6f5ee); }
.metrics-screen { background: linear-gradient(#d7ecf6 0 0) top 12px left 8px / 64% 7px no-repeat, linear-gradient(90deg, #00dff2 0 34%, transparent 34%), linear-gradient(180deg, #f2fbff, #e6f5ee); }
.records-screen { background: linear-gradient(#d7ecf6 0 0) top 10px left 10px / 58px 8px no-repeat, linear-gradient(#e5f4f9 0 0) top 28px left 10px / 88% 8px no-repeat, linear-gradient(#c7e6f2 0 0) top 46px left 10px / 88% 12px no-repeat, linear-gradient(#e5f4f9 0 0) top 64px left 10px / 88% 8px no-repeat, linear-gradient(180deg, #f2fbff, #e6f5ee); }
.schedule-screen { background: linear-gradient(#bdebdc 0 0) top 14px left 8px / 62% 8px no-repeat, linear-gradient(#e5f4f9 0 0) top 30px left 8px / 76% 7px no-repeat, linear-gradient(#e5f4f9 0 0) top 46px left 8px / 76% 7px no-repeat, linear-gradient(#5ce12a 0 0) bottom 14px left 8px / 52% 18px no-repeat, linear-gradient(180deg, #f2fbff, #e6f5ee); }
.green-theme { background-color: rgba(92, 225, 42, 0.1); }
.purple-theme { background-color: rgba(0, 223, 242, 0.1); }
.blue-theme { background-color: rgba(0, 105, 214, 0.1); }
.cyan-theme { background-color: rgba(0, 223, 242, 0.11); }
.project-card a { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; border-radius: 12px; color: var(--text); text-decoration: none; border: 1px solid rgba(0, 223, 242, 0.24); background: rgba(4, 35, 62, 0.72); box-shadow: 0 12px 26px rgba(0, 7, 17, 0.32), 0 0 18px rgba(0, 223, 242, 0.08); }

.about-grid { grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); }
.about-grid--single { grid-template-columns: minmax(0, 980px); justify-content: center; }
.contact-page-grid { display: grid; grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr); gap: clamp(18px, 2.4vw, 32px); align-items: stretch; }
.about-card,
.contact-card { padding: clamp(24px, 3vw, 46px); }
.contact-card { display: grid; gap: 18px; align-content: start; }
.contact-list { display: grid; gap: 10px; margin: 4px 0 8px; }
.contact-list a,
.contact-list span { display: flex; align-items: center; min-height: 42px; padding: 0 14px; border-radius: 12px; background: rgba(3, 27, 49, 0.58); border: 1px solid rgba(0, 223, 242, 0.15); }

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(8px, 1.6vw, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.quote-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 15, 26, 0.82);
  backdrop-filter: blur(12px);
}

.quote-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  padding: clamp(14px, 1.8vw, 24px);
  overflow: visible;
  border: 1px solid rgba(0, 223, 242, 0.26);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 8%, rgba(92, 225, 42, 0.16), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(0, 105, 214, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(3, 27, 49, 0.98), rgba(2, 22, 40, 0.98));
  box-shadow: 0 34px 100px rgba(0, 7, 17, 0.62);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.quote-modal[aria-hidden="false"] .quote-modal__dialog { transform: translateY(0) scale(1); }

.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(0, 223, 242, 0.28);
  border-radius: 12px;
  background: rgba(3, 27, 49, 0.82);
  box-shadow: 0 12px 26px rgba(0, 7, 17, 0.38), 0 0 18px rgba(0, 223, 242, 0.1);
  color: var(--text);
  font: 700 1.3rem/1 var(--font-label);
  cursor: pointer;
}

.quote-modal__header {
  display: grid;
  gap: 6px;
  max-width: 760px;
  padding-right: 50px;
  margin-bottom: clamp(10px, 1.2vw, 14px);
}

.quote-modal__header h2 {
  margin: 0;
  font: 700 clamp(1.35rem, 2vw, 2.25rem) / 1 var(--font-display);
  letter-spacing: 0;
}

.quote-modal__header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.88rem;
}

.quote-form {
  display: grid;
  gap: 9px;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.quote-form label {
  display: grid;
  gap: 5px;
}

.quote-form label > span {
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(0, 223, 242, 0.24);
  border-radius: 10px;
  background: rgba(3, 27, 49, 0.74);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
}

.quote-form textarea {
  min-height: 58px;
  padding-top: 8px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(154, 171, 186, 0.72); }

.quote-form select option { color: #031628; }

.quote-form__wide { grid-column: 1 / -1; }

.quote-form__consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 9px !important;
  color: var(--muted);
  line-height: 1.3;
  font-size: 0.82rem;
}

.quote-form__consent input {
  width: 17px;
  height: 17px;
  min-height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.quote-form__consent span {
  color: var(--muted) !important;
  font-weight: 400 !important;
}

.quote-form__status {
  display: none;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(92, 225, 42, 0.28);
  border-radius: 12px;
  background: rgba(92, 225, 42, 0.11);
  color: var(--text);
  line-height: 1.35;
  font-size: 0.86rem;
}

.quote-form__status.visible { display: block; }

.quote-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.quote-form__actions .primary-button,
.quote-form__actions .ghost-button {
  min-height: 36px;
  padding: 0 14px;
}

.quote-form__actions button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.cta-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(22px, 2.6vw, 38px);
  margin: clamp(28px, 3.4vw, 48px) 0;
  background:
    radial-gradient(ellipse at 48% 8%, rgba(242, 251, 255, 0.34), transparent 34%),
    radial-gradient(circle at 4% 18%, rgba(0, 105, 214, 0.62), transparent 38%),
    radial-gradient(circle at 96% 18%, rgba(92, 225, 42, 0.5), transparent 38%),
    linear-gradient(135deg, rgba(0, 60, 117, 0.96), rgba(2, 25, 40, 0.92) 52%, rgba(28, 157, 50, 0.86));
  border-color: rgba(0, 223, 242, 0.32);
}
.cta-band::before {
  position: absolute;
  right: -8%;
  bottom: -58%;
  left: -8%;
  height: 82%;
  content: "";
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(90deg, rgba(0, 105, 214, 0.7), rgba(0, 223, 242, 0.36), rgba(92, 225, 42, 0.68));
  filter: blur(1px);
  opacity: 0.72;
  pointer-events: none;
}
.business-card { display: grid; place-items: center; width: clamp(88px, 9vw, 124px); height: clamp(88px, 9vw, 124px); border-radius: 22px; background: radial-gradient(circle at 32% 24%, rgba(92, 225, 42, 0.2), transparent 48%), rgba(3, 27, 49, 0.66); border: 1px solid rgba(0, 223, 242, 0.18); box-shadow: inset 0 0 0 1px rgba(242,251,255,0.03); }
.business-icon { display: block; width: clamp(56px, 5.6vw, 74px); height: clamp(56px, 5.6vw, 74px); padding: 11px; border-radius: 16px; background: rgba(4, 35, 62, 0.78); box-shadow: 0 14px 28px rgba(0, 7, 17, 0.3); }
.cta-copy { max-width: 760px; }
.cta-band span { display: block; margin-bottom: 6px; font: 700 clamp(1.22rem, 2vw, 2rem) / 1.08 var(--font-display); }
.cta-band p { margin: 0; color: var(--muted); line-height: 1.5; }

.quote-toast {
  position: fixed;
  left: 50%;
  bottom: clamp(14px, 2.2vw, 28px);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, calc(100% - 28px));
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 223, 242, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 223, 242, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(3, 27, 49, 0.98), rgba(2, 22, 40, 0.98));
  box-shadow: 0 18px 48px rgba(0, 7, 17, 0.46);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.quote-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quote-toast__dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 223, 242, 0.12);
}

.quote-toast[data-state="success"] {
  border-color: rgba(92, 225, 42, 0.42);
}

.quote-toast[data-state="success"] .quote-toast__dot {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(92, 225, 42, 0.14);
}

.quote-toast[data-state="error"] {
  border-color: rgba(255, 107, 107, 0.46);
}

.quote-toast[data-state="error"] .quote-toast__dot {
  background: #ff8a8a;
  box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.14);
}

.footer { grid-template-columns: minmax(280px, 1.35fr) minmax(160px, 0.7fr) minmax(190px, 0.9fr) minmax(190px, 0.9fr); padding: clamp(24px, 3vw, 42px); }
.footer > div { display: grid; align-content: start; gap: 10px; }
.footer .brand-logo { width: clamp(180px, 15vw, 260px); }
.footer-brand p { max-width: 42ch; }
.footer-credit {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 223, 242, 0.16);
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.socials span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(0, 105, 214, 0.18); color: var(--text); font: 700 0.74rem/1 var(--font-label); }

.reveal { opacity: 0; transform: translateY(28px); transition: transform 700ms ease, opacity 700ms ease; }
.reveal-delay { transition-delay: 140ms; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1320px) {
  .topbar { grid-template-columns: auto 1fr; }
  .topbar > .primary-button.compact { grid-column: 1 / -1; justify-self: end; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { max-width: 18ch; }
  .dashboard-window { min-height: 420px; }
  .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  html { scroll-padding-top: 24px; }
  .topbar,
  .benefits-layout,
  .about-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: auto 1fr; }
  .topbar { position: relative; top: 0; }
  .topbar > .primary-button.compact { justify-self: stretch; }
  .metrics-grid,
  .activity-grid,
  .contact-page-grid { grid-template-columns: 1fr; }
  .stats-row,
  .info-strip,
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --page-pad: clamp(10px, 4vw, 22px); }
  .brand-logo { width: clamp(142px, 48vw, 210px); }
  .topbar { display: grid; grid-template-columns: 1fr auto; align-items: center; border-radius: 20px; }
  .menu-toggle { display: grid; gap: 5px; }
  .nav { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; width: 100%; max-height: 0; overflow: hidden; gap: 8px; opacity: 0; transition: max-height 240ms ease, opacity 180ms ease, padding 180ms ease; }
  .nav a { display: flex; align-items: center; min-height: 44px; padding: 0 14px; border-radius: 14px; background: rgba(4, 35, 62, 0.74); border: 1px solid rgba(0, 223, 242, 0.16); }
  .topbar.nav-open .nav { max-height: 440px; padding-top: 10px; opacity: 1; }
  .topbar > .primary-button.compact { grid-column: 1 / -1; display: none; }
  .topbar.nav-open > .primary-button.compact { display: inline-flex; }
  .hero-copy,
  .hero-panel,
  .info-strip,
  .feature-card,
  .about-card,
  .contact-card,
  .cta-band,
  .footer { border-radius: 22px; }
  .hero-points,
  .services-grid,
  .projects-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; justify-items: start; }
  .hero h1 { max-width: none; font-size: clamp(1.6rem, 8.5vw, 2.85rem); }
  .dashboard-window { display: grid; grid-template-columns: 1fr; min-height: auto; }
  .dashboard-sidebar { display: flex; gap: 8px; overflow-x: auto; padding: 12px; border-right: 0; border-bottom: 1px solid rgba(0, 223, 242, 0.18); scrollbar-width: thin; }
  .mini-brand { display: none; }
  .menu-item { flex: 0 0 auto; white-space: nowrap; }
  .feature-stats { grid-template-columns: 1fr; }
  .quote-form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-showcase { min-height: 150px; }
  .device.laptop { width: calc(100% - 64px); }
}

@media (max-width: 560px) {
  .page-shell { padding-top: 8px; }
  .topbar { padding: 10px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { gap: 14px; }
  .hero-copy,
  .dashboard-main,
  .info-strip,
  .feature-card,
  .about-card,
  .contact-card,
  .cta-band,
  .footer { padding: 18px; }
  .hero-actions,
  .cta-band { align-items: stretch; }
  .hero-actions,
  .cta-band,
  .footer { display: grid; grid-template-columns: 1fr; }
  .primary-button,
  .ghost-button,
  .project-card a { width: 100%; }
  .stats-row,
  .info-strip,
  .benefit-grid,
  .footer { grid-template-columns: 1fr; }
  .stat-card,
  .chart-card,
  .donut-card,
  .activity-card,
  .service-card,
  .project-card,
  .benefit-card { padding: 16px; border-radius: 18px; }
  .line-chart { height: 110px; }
  .donut-ring { width: 100px; height: 100px; }
  .project-card ul { min-height: auto; }
  .section-heading { justify-items: start; text-align: left; }
  .section-heading h2 { font-size: clamp(1.55rem, 8vw, 2.45rem); }
  .quote-modal { padding: 8px; }
  .quote-modal__dialog { padding: 14px; border-radius: 20px; }
  .quote-modal__header { gap: 6px; padding-right: 42px; margin-bottom: 10px; }
  .quote-modal__header h2 { font-size: clamp(1.45rem, 7vw, 2.15rem); }
  .quote-modal__header p { font-size: 0.88rem; line-height: 1.35; }
  .quote-modal__close { top: 10px; right: 10px; width: 36px; height: 36px; }
  .quote-form { gap: 9px; }
  .quote-form__grid { gap: 8px; }
  .quote-form input,
  .quote-form select,
  .quote-form textarea { min-height: 36px; padding: 0 10px; font-size: 0.86rem; }
  .quote-form textarea { min-height: 56px; padding-top: 8px; }
  .quote-form__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .business-card { width: 68px; height: 68px; }
  .business-icon { width: 48px; height: 48px; padding: 8px; }
  .project-showcase { padding: 10px 8px 8px; }
  .device.laptop { width: calc(100% - 58px); height: 78px; }
  .device.phone { width: 46px; height: 86px; }
}

@media (max-height: 720px) {
  .quote-modal { padding: 8px; }
  .quote-modal__dialog { padding: 14px; }
  .quote-modal__header { margin-bottom: 8px; }
  .quote-modal__header p { display: none; }
  .quote-form { gap: 8px; }
  .quote-form__grid { gap: 8px; }
  .quote-form input,
  .quote-form select,
  .quote-form textarea { min-height: 36px; }
  .quote-form textarea { min-height: 52px; }
  .quote-form__actions .primary-button,
  .quote-form__actions .ghost-button { min-height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
