:root {
  --accent-color: #16c8f7;
  --heading-color: #061a30;
  --nav-color: #17324a;
  --nav-hover-color: #07bfe8;
  --nav-mobile-background-color: #071a2f;
  --nav-dropdown-hover-color: #07bfe8;
}

.novawatt-page {
  --nw-navy-950: #04111f;
  --nw-navy-900: #071a2f;
  --nw-navy-800: #0b243d;
  --nw-navy-700: #123554;
  --nw-cyan: #16c8f7;
  --nw-cyan-soft: #dff8ff;
  --nw-green: #41d79b;
  --nw-green-soft: #e5f9f1;
  --nw-white: #ffffff;
  --nw-ice: #f4f9fc;
  --nw-line: #d9e6ef;
  --nw-muted: #52667a;

  /* Spacing scale */
  --nw-space-1: 4px;
  --nw-space-2: 8px;
  --nw-space-3: 12px;
  --nw-space-4: 16px;
  --nw-space-5: 24px;
  --nw-space-6: 32px;
  --nw-space-7: 48px;
  --nw-space-8: 64px;
  --nw-space-9: 96px;
  --nw-space-10: 128px;

  /* Radius scale */
  --nw-radius-sm: 8px;
  --nw-radius-md: 10px;
  --nw-radius-lg: 14px;
  --nw-radius-pill: 999px;

  /* Shadows: used sparingly, only where they signal elevation */
  --nw-shadow-sm: 0 6px 18px rgba(4, 17, 31, 0.06);
  --nw-shadow-md: 0 16px 40px rgba(4, 17, 31, 0.1);
  --nw-shadow-lg: 0 24px 70px rgba(4, 17, 31, 0.16);
  --nw-shadow: var(--nw-shadow-md);

  background: var(--nw-ice);
  color: #132f46;
}

.novawatt-page *,
.novawatt-page *::before,
.novawatt-page *::after {
  letter-spacing: 0;
  box-sizing: border-box;
}

.novawatt-page a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .novawatt-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.novawatt-page h1,
.novawatt-page h2,
.novawatt-page h3,
.novawatt-page h4,
.novawatt-page h5,
.novawatt-page h6 {
  color: var(--nw-navy-950);
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.novawatt-page :focus-visible {
  outline: 2px solid var(--nw-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .novawatt-page *,
  .novawatt-page *::before,
  .novawatt-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.nova-header {
  --background-color: transparent;
  padding: 12px 0;
}

.nova-header .header-container {
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(12, 42, 68, 0.08);
  border-radius: var(--nw-radius-sm);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--nw-shadow-sm);
  backdrop-filter: blur(12px);
}

.logo {
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-950);
  background: linear-gradient(135deg, var(--nw-cyan), var(--nw-green));
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nova-header .logo .sitename,
.footer .logo .sitename {
  margin: 0;
  color: var(--nw-navy-950);
  font-size: 22px;
  font-weight: 800;
}

.brand-tagline {
  color: var(--nw-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nova-header .navmenu a {
  position: relative;
  color: #17324a;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.15s ease;
}

.nova-header .navmenu a:hover,
.nova-header .navmenu a.active {
  color: var(--nw-cyan);
}

.nova-header .navmenu a.active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -6px;
  height: 2px;
  border-radius: var(--nw-radius-pill);
  background: var(--nw-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 2;
}

/* Button system: one primary, one secondary (with a light-background
   variant for use on white surfaces like the header), one text-link. */
.btn-nova-primary,
.btn-nova-primary:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--nw-cyan);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-950);
  background: var(--nw-cyan);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  box-shadow: 0 14px 34px rgba(22, 200, 247, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-nova-primary:hover {
  color: var(--nw-navy-950);
  background: #48d9ff;
  border-color: #48d9ff;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(22, 200, 247, 0.3);
}

.btn-nova-secondary,
.btn-nova-secondary:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(22, 200, 247, 0.32);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-cyan);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-nova-secondary--onlight {
  color: var(--nw-navy-800);
  background: var(--nw-white);
  border-color: var(--nw-line);
}

.btn-nova-secondary:hover {
  color: var(--nw-navy-950);
  border-color: var(--nw-cyan);
  background: var(--nw-cyan-soft);
}

.nova-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 60px + 5vw, 96px) 0 clamp(40px, 32px + 3vw, 52px);
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 200, 247, 0.22), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(65, 215, 155, 0.2), transparent 24%),
    linear-gradient(145deg, #04111f 0%, #071a2f 52%, #0b243d 100%);
}

.nova-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(22, 200, 247, 0.24);
  border-radius: 999px;
  color: var(--nw-cyan);
  background: rgba(22, 200, 247, 0.09);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--nw-white);
  font-size: clamp(2.2rem, 1.4rem + 3.5vw, 4.25rem);
  line-height: 1.05;
  font-weight: 800;
}

.hero-copy p {
  max-width: 700px;
  margin: 0;
  color: #c8d8e5;
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.125rem);
  line-height: 1.65;
}

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

.hero-route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-route-pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nw-radius-sm);
  color: #dbeaf4;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-height: 440px;
  padding: 22px;
  border: 1px solid rgba(22, 200, 247, 0.2);
  border-radius: var(--nw-radius-lg);
  background: rgba(7, 26, 47, 0.74);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-topline,
.dashboard-header,
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-topline {
  color: #dbeaf4;
  font-size: 13px;
  font-weight: 700;
}

.panel-topline strong,
.dashboard-header em,
.route-status,
.product-topline span,
.insight-card > span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--nw-navy-950);
  background: var(--nw-green);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--nw-green);
  box-shadow: 0 0 0 7px rgba(65, 215, 155, 0.15);
}

.scan-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  margin: 36px auto 28px;
  border-radius: 999px;
  background: conic-gradient(var(--nw-cyan) 0 82%, rgba(255, 255, 255, 0.08) 82% 100%);
}

.scan-ring-core {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  color: var(--nw-white);
  background: var(--nw-navy-950);
  box-shadow: inset 0 0 34px rgba(22, 200, 247, 0.18);
}

.scan-ring-core span {
  color: var(--nw-cyan);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}

.scan-ring-core small {
  color: #a9bed1;
  font-size: 12px;
  font-weight: 700;
}

.hero-stat-list {
  display: grid;
  gap: 10px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--nw-radius-sm);
  color: #dbeaf4;
  background: rgba(255, 255, 255, 0.055);
}

.hero-stat-row span,
.hero-stat-row em {
  color: #a9bed1;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.hero-stat-row strong {
  color: var(--nw-white);
  font-size: 14px;
}

.energy-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.energy-flow span {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nw-cyan), var(--nw-green));
}

.route-selector {
  position: relative;
  z-index: 2;
  margin-top: -20px;
  padding-bottom: 36px;
}

.route-grid {
  display: grid;
  gap: 14px;
}

.route-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  color: #17324a;
  background: var(--nw-white);
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: var(--nw-cyan);
  box-shadow: var(--nw-shadow-md);
}

.route-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--nw-radius-sm);
  color: var(--nw-cyan);
  background: #ecfbff;
  font-size: 22px;
}

.route-card strong {
  color: var(--nw-navy-950);
  font-size: 19px;
  line-height: 1.28;
}

.route-card p {
  margin: 0;
  color: var(--nw-muted);
  line-height: 1.6;
}

.route-arrow {
  color: var(--nw-cyan);
  font-size: 20px;
}

.nova-section {
  padding: clamp(56px, 40px + 5vw, 92px) 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--nw-navy-800);
  background: var(--nw-cyan-soft);
}

.section-heading-row {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading-row h2,
.scan-copy h2,
.profile-card h2,
.advisor-copy h2,
.cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 1.35rem + 1.2vw, 2.35rem);
  line-height: 1.15;
  font-weight: 800;
}

.section-heading-row p,
.scan-copy p,
.profile-card > p,
.advisor-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--nw-muted);
  font-size: 16px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nw-navy-900);
  font-weight: 800;
}

.text-link:hover {
  color: var(--nw-cyan);
}

.scan-section {
  background: var(--nw-white);
}

.scan-layout,
.profile-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.scan-copy .btn-nova-primary {
  margin-top: 26px;
}

.scan-dashboard,
.profile-card,
.advisor-shell,
.cta-band {
  border: 1px solid rgba(12, 42, 68, 0.1);
  border-radius: var(--nw-radius-lg);
  box-shadow: var(--nw-shadow);
}

.scan-dashboard {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(22, 200, 247, 0.08), rgba(65, 215, 155, 0.04)),
    var(--nw-ice);
}

.dashboard-header {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: var(--nw-radius-sm);
  background: var(--nw-navy-900);
}

.dashboard-header span {
  display: block;
  margin-bottom: 4px;
  color: #9db4c8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-header strong {
  color: var(--nw-white);
  font-size: 18px;
}

.dashboard-header em {
  color: var(--nw-navy-950);
  background: var(--nw-cyan);
}

.scan-check-grid,
.product-grid,
.insight-grid {
  display: grid;
  gap: 14px;
}

.scan-check,
.product-module,
.insight-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  background: var(--nw-white);
}

.scan-check {
  display: grid;
  gap: 10px;
}

.scan-check .check-number {
  color: var(--nw-cyan);
  font-size: 12px;
  font-weight: 900;
}

.scan-check i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-950);
  background: var(--nw-green-soft);
  font-size: 20px;
}

.scan-check h3,
.product-module h3,
.insight-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.scan-check p,
.product-module p,
.insight-card p {
  margin: 0;
  color: var(--nw-muted);
  line-height: 1.62;
}

.solutions-section {
  position: relative;
  background: linear-gradient(180deg, #eef6fb 0%, #e7f3fa 100%);
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(220px, 60%);
  height: 2px;
  border-radius: var(--nw-radius-pill);
  background: linear-gradient(90deg, transparent, var(--nw-cyan), var(--nw-green), transparent);
  opacity: 0.55;
  transform: translateX(-50%);
}

.product-module {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-topline i {
  color: var(--nw-cyan);
  font-size: 24px;
}

.product-module ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.product-module li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #28465f;
  font-size: 14px;
  font-weight: 700;
}

.product-module li i {
  color: var(--nw-green);
}

.product-module > a,
.insight-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--nw-navy-900);
  font-weight: 800;
}

.product-module > a i,
.insight-card > a i {
  transition: transform 0.15s ease;
}

.product-module > a:hover,
.insight-card > a:hover {
  color: var(--nw-cyan);
}

.product-module > a:hover i,
.insight-card > a:hover i {
  transform: translateX(3px);
}

.product-module,
.insight-card,
.scan-check {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-module:hover,
.insight-card:hover {
  border-color: rgba(22, 200, 247, 0.4);
  box-shadow: var(--nw-shadow-sm);
}

.profile-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(22, 200, 247, 0.12), transparent 24%),
    var(--nw-white);
}

.profile-card {
  padding: 24px;
  background: var(--nw-navy-900);
}

.profile-card h2,
.profile-card > p {
  color: var(--nw-white);
}

.profile-card > p {
  color: #c8d8e5;
}

.profile-card-header {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.profile-card .section-kicker {
  color: var(--nw-cyan);
  background: rgba(22, 200, 247, 0.1);
}

.profile-score {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(22, 200, 247, 0.28);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-white);
  background: rgba(255, 255, 255, 0.06);
}

.profile-score strong {
  color: var(--nw-cyan);
  font-size: 46px;
  line-height: 1;
}

.profile-score span {
  margin-bottom: 9px;
  color: #9db4c8;
  font-weight: 800;
}

.profile-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  padding: 10px 12px;
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-950);
  background: var(--nw-green);
  font-weight: 800;
}

.profile-module-grid {
  display: grid;
  gap: 12px;
}

.profile-module {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--nw-radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.profile-module span {
  display: block;
  margin-bottom: 8px;
  color: #9db4c8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-module strong {
  color: var(--nw-white);
  font-size: 18px;
}

.profile-module.is-strong {
  border-color: rgba(65, 215, 155, 0.42);
}

.profile-module.is-watch {
  border-color: rgba(22, 200, 247, 0.42);
}

.profile-steps {
  display: grid;
  gap: 14px;
}

.profile-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  background: var(--nw-ice);
}

.profile-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-950);
  background: var(--nw-cyan);
  font-weight: 900;
}

.profile-step p {
  margin: 0;
  color: #23445e;
  font-weight: 800;
}

.advisor-section {
  color: var(--nw-white);
  background:
    linear-gradient(145deg, var(--nw-navy-950), var(--nw-navy-800));
}

.advisor-shell {
  display: grid;
  gap: 26px;
  padding: 24px;
  border-color: rgba(22, 200, 247, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.advisor-copy h2,
.advisor-copy p {
  color: var(--nw-white);
}

.advisor-copy p {
  color: #c8d8e5;
}

.advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.advisor-points {
  display: grid;
  gap: 12px;
}

.advisor-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--nw-radius-sm);
  background: rgba(255, 255, 255, 0.055);
}

.advisor-point i {
  color: var(--nw-green);
  font-size: 20px;
}

.advisor-point span {
  color: #dcebf5;
  font-weight: 700;
  line-height: 1.5;
}

.insights-section {
  background: var(--nw-ice);
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insight-card > span {
  align-self: flex-start;
  background: var(--nw-cyan-soft);
}

.insight-grid > .insight-card:first-child {
  border-color: rgba(22, 200, 247, 0.3);
  background:
    linear-gradient(160deg, rgba(22, 200, 247, 0.06), transparent 55%),
    var(--nw-white);
}

.insight-grid > .insight-card:first-child > span {
  color: var(--nw-navy-950);
  background: var(--nw-cyan);
}

.faq-section {
  position: relative;
  background: var(--nw-white);
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(220px, 60%);
  height: 2px;
  border-radius: var(--nw-radius-pill);
  background: linear-gradient(90deg, transparent, var(--nw-cyan), var(--nw-green), transparent);
  opacity: 0.55;
  transform: translateX(-50%);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  background: var(--nw-ice);
  transition: border-color 0.15s ease;
}

.faq-item[open] {
  border-color: rgba(22, 200, 247, 0.35);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px;
  color: var(--nw-navy-950);
  cursor: pointer;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--nw-cyan);
  transition: transform 0.15s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--nw-muted);
  line-height: 1.7;
}

.final-cta-section {
  padding-top: 40px;
  background: var(--nw-white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 68px + 6vw, 104px) 0 clamp(54px, 44px + 4vw, 72px);
  background:
    radial-gradient(circle at 16% 20%, rgba(22, 200, 247, 0.18), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(65, 215, 155, 0.14), transparent 24%),
    linear-gradient(145deg, var(--nw-navy-950), var(--nw-navy-800));
}

.compact-page-hero {
  padding-bottom: 64px;
}

.error-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding-top: clamp(96px, 80px + 6vw, 140px);
}

.error-hero .page-hero-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.error-hero .eyebrow {
  justify-content: center;
}

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

.page-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-hero-copy {
  max-width: 780px;
}

.page-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--nw-white);
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.3rem);
  line-height: 1.1;
  font-weight: 800;
}

.page-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: #c8d8e5;
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.0625rem);
  line-height: 1.7;
}

.page-visual-card {
  padding: 18px;
  border: 1px solid rgba(22, 200, 247, 0.22);
  border-radius: var(--nw-radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.visual-row-list {
  display: grid;
  gap: 10px;
}

.visual-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--nw-radius-sm);
  background: rgba(255, 255, 255, 0.055);
}

.visual-row span {
  color: #a9bed1;
  font-size: 13px;
  font-weight: 800;
}

.visual-row strong {
  color: var(--nw-white);
  text-align: right;
}

.page-content-section,
.contact-page-section,
.legal-section {
  background: var(--nw-white);
}

.page-content-grid,
.contact-page-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.page-main-content {
  display: grid;
  gap: 22px;
}

.content-section {
  padding: 26px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-md);
  background: var(--nw-ice);
}

.content-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.75rem);
  line-height: 1.2;
  font-weight: 800;
}

.content-section p {
  margin: 0;
  color: var(--nw-muted);
  line-height: 1.7;
}

.content-check-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.content-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(22, 200, 247, 0.16);
  border-radius: var(--nw-radius-sm);
  background: var(--nw-white);
}

.content-check i {
  color: var(--nw-green);
  font-size: 20px;
}

.content-check span {
  color: #23445e;
  font-weight: 700;
  line-height: 1.5;
}

.page-side-panel {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid rgba(12, 42, 68, 0.1);
  border-radius: var(--nw-radius-md);
  background: var(--nw-navy-900);
  box-shadow: var(--nw-shadow);
}

.page-side-panel > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--nw-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-side-panel h2 {
  margin: 0 0 16px;
  color: var(--nw-white);
  font-size: 24px;
}

.related-list {
  display: grid;
  gap: 10px;
}

.related-card {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-white);
  background: rgba(255, 255, 255, 0.055);
}

.related-card:hover {
  color: var(--nw-white);
  border-color: rgba(22, 200, 247, 0.45);
  background: rgba(22, 200, 247, 0.12);
}

.related-card i {
  color: var(--nw-cyan);
  font-size: 20px;
}

.related-card span {
  font-weight: 800;
}

.related-card em {
  color: var(--nw-green);
  font-style: normal;
}

.contact-page-section .form-card {
  padding: 24px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-md);
  background: var(--nw-white);
  box-shadow: var(--nw-shadow);
}

.contact-page-section .form-label {
  color: var(--nw-navy-900);
  font-weight: 800;
}

.contact-page-section .form-control,
.contact-page-section .form-select {
  min-height: 48px;
  border-color: var(--nw-line);
  border-radius: var(--nw-radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-page-section .form-control:focus,
.contact-page-section .form-select:focus {
  border-color: var(--nw-cyan);
  box-shadow: 0 0 0 4px rgba(22, 200, 247, 0.12);
}

.contact-page-section textarea.form-control {
  min-height: 150px;
}

.contact-page-section .btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 12px 18px;
  border: 1px solid var(--nw-cyan);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-950);
  background: var(--nw-cyan);
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-page-section .btn-send:hover {
  background: #48d9ff;
  transform: translateY(-1px);
}

.legal-card {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.legal-card article {
  padding: 24px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-md);
  background: var(--nw-ice);
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.5rem);
}

.legal-card p {
  margin: 0;
  color: var(--nw-muted);
  line-height: 1.75;
}

.novascan-form-section {
  background: var(--nw-white);
}

.novascan-form-shell {
  display: grid;
  gap: 24px;
  align-items: start;
}

.scan-progress-card,
.novascan-form {
  border: 1px solid rgba(12, 42, 68, 0.1);
  border-radius: var(--nw-radius-md);
  background: var(--nw-white);
  box-shadow: var(--nw-shadow);
}

.scan-progress-card {
  padding: 22px;
}

.scan-progress-card > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--nw-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scan-progress-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.5rem);
}

.scan-progress-card p {
  margin: 18px 0 0;
  color: var(--nw-muted);
  font-size: 14px;
  line-height: 1.6;
}

.scan-progress-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scan-progress-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--nw-muted);
  font-weight: 800;
}

.scan-progress-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-pill);
  color: var(--nw-navy-900);
  background: var(--nw-ice);
  font-weight: 900;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.scan-progress-list li.active {
  color: var(--nw-navy-950);
}

.scan-progress-list li.active span {
  border-color: var(--nw-cyan);
  background: var(--nw-cyan);
}

.scan-progress-list li.complete span {
  border-color: var(--nw-green);
  background: var(--nw-green);
  color: var(--nw-navy-950);
}

.novascan-form {
  overflow: hidden;
}

.form-error-summary {
  display: none;
  margin: 22px 22px 0;
  padding: 16px;
  border: 1px solid rgba(220, 53, 69, 0.28);
  border-radius: var(--nw-radius-sm);
  color: #7d1d2a;
  background: #fff2f4;
}

.form-error-summary.is-visible {
  display: block;
}

.form-error-summary strong {
  display: block;
  margin-bottom: 8px;
}

.form-error-summary ul {
  margin: 0;
  padding-left: 18px;
}

.scan-step {
  padding: 22px;
}

.scan-step-header {
  margin-bottom: 22px;
}

.scan-step-header > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--nw-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scan-step-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 1.3rem + 0.9vw, 1.9rem);
}

.scan-step-header p {
  max-width: 720px;
  margin: 0;
  color: var(--nw-muted);
  line-height: 1.65;
}

.option-grid {
  display: grid;
  gap: 12px;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-900);
  background: var(--nw-ice);
  cursor: pointer;
  font-weight: 800;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.choice-card:hover {
  border-color: rgba(22, 200, 247, 0.55);
  background: #ecfbff;
}

.choice-card input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--nw-cyan);
}

.choice-card:has(input:checked) {
  border-color: var(--nw-cyan);
  background: var(--nw-cyan-soft);
}

.choice-card:has(input:focus-visible) {
  outline: 2px solid var(--nw-cyan);
  outline-offset: 2px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.radio-block > span {
  color: var(--nw-navy-900);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-900);
  background: var(--nw-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field textarea {
  resize: vertical;
  line-height: 1.55;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(22, 200, 247, 0.5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--nw-cyan);
  box-shadow: 0 0 0 4px rgba(22, 200, 247, 0.12);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.radio-block {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.field-error {
  min-height: 20px;
  margin: 0;
  color: #b4233a;
  font-size: 13px;
  font-weight: 800;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: #d92d4b;
}

.upload-disabled-note,
.advisor-honesty-note {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(22, 200, 247, 0.18);
  border-radius: var(--nw-radius-sm);
  background: var(--nw-cyan-soft);
}

.upload-disabled-note i,
.advisor-honesty-note i {
  color: var(--nw-navy-900);
  font-size: 24px;
}

.upload-disabled-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--nw-navy-950);
}

.upload-disabled-note p,
.advisor-honesty-note p {
  margin: 0;
  color: var(--nw-muted);
  line-height: 1.55;
}

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

.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  background: var(--nw-ice);
  color: var(--nw-navy-900);
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--nw-cyan);
}

.consent-row:has(input:checked) {
  border-color: var(--nw-cyan);
  background: var(--nw-cyan-soft);
}

.consent-row:has(input:focus-visible) {
  outline: 2px solid var(--nw-cyan);
  outline-offset: 2px;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.step-actions .btn-nova-primary,
.step-actions .btn-nova-secondary {
  border: 0;
}

.step-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.admin-shell {
  padding: 72px 0;
  background: var(--nw-white);
}

.admin-topbar {
  display: grid;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.admin-section-heading span,
.admin-panel-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--nw-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-section-heading h1,
.admin-panel-heading h2 {
  margin: 0;
  color: var(--nw-navy-950);
  font-weight: 800;
}

.admin-section-heading h1 {
  font-size: clamp(1.8rem, 1.5rem + 1.3vw, 2.6rem);
}

.admin-section-heading p,
.admin-muted {
  margin: 8px 0 0;
  color: var(--nw-muted);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions form {
  margin: 0;
}

.admin-login-panel,
.admin-panel,
.admin-filter-bar,
.admin-table-wrap {
  border: 1px solid rgba(12, 42, 68, 0.1);
  border-radius: var(--nw-radius-md);
  background: var(--nw-white);
  box-shadow: var(--nw-shadow-sm);
}

.admin-login-panel {
  max-width: 460px;
  margin: 0 auto;
  padding: 26px;
}

.admin-filter-bar {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form.compact {
  margin-top: 20px;
}

.admin-form label,
.admin-filter-bar label {
  display: grid;
  gap: 7px;
  color: var(--nw-navy-900);
  font-size: 13px;
  font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-filter-bar input,
.admin-filter-bar select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-900);
  background: var(--nw-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-filter-bar input:focus,
.admin-filter-bar select:focus {
  outline: none;
  border-color: var(--nw-cyan);
  box-shadow: 0 0 0 4px rgba(22, 200, 247, 0.12);
}

.admin-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.admin-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--nw-line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--nw-muted);
  background: var(--nw-ice);
  font-size: 12px;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--nw-navy-900);
  font-weight: 700;
}

.admin-table tbody tr {
  transition: background 0.15s ease;
}

.admin-table tbody tr:hover {
  background: var(--nw-ice);
}

.admin-table a {
  color: var(--nw-navy-950);
  text-decoration: underline;
  text-decoration-color: rgba(22, 200, 247, 0.45);
}

.admin-score,
.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: var(--nw-radius-pill);
  font-size: 12px;
  font-weight: 900;
}

.admin-score {
  color: var(--nw-navy-950);
  background: var(--nw-cyan);
}

.admin-badge {
  color: var(--nw-navy-900);
  background: var(--nw-cyan-soft);
}

.admin-table td.admin-empty {
  padding: 40px 14px;
  color: var(--nw-muted);
  text-align: center;
  font-weight: 700;
}

.admin-alert {
  margin: 0 0 18px;
  padding: 14px;
  border-radius: var(--nw-radius-sm);
  font-weight: 800;
}

.admin-alert.danger {
  border: 1px solid rgba(220, 53, 69, 0.28);
  color: #7d1d2a;
  background: #fff2f4;
}

.admin-alert.success {
  border: 1px solid rgba(65, 215, 155, 0.28);
  color: #08563a;
  background: #effcf7;
}

.admin-detail-grid {
  display: grid;
  gap: 18px;
}

.admin-panel {
  padding: 22px;
}

.admin-panel.full {
  grid-column: 1 / -1;
}

.admin-definition-list {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  gap: 0;
  margin: 18px 0 0;
  border: 1px solid var(--nw-line);
  border-bottom: 0;
  border-radius: var(--nw-radius-sm);
  overflow: hidden;
}

.admin-definition-list dt,
.admin-definition-list dd {
  min-width: 0;
  margin: 0;
  padding: 11px 12px;
  border-bottom: 1px solid var(--nw-line);
}

.admin-definition-list dt {
  color: var(--nw-muted);
  background: var(--nw-ice);
  font-weight: 900;
}

.admin-definition-list dd {
  color: var(--nw-navy-900);
  overflow-wrap: anywhere;
}

.admin-summary-list,
.admin-note-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.admin-summary-list li,
.admin-note-list li {
  padding: 12px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-sm);
  color: var(--nw-navy-900);
  background: var(--nw-ice);
  line-height: 1.55;
}

.cta-band {
  display: grid;
  gap: 22px;
  padding: 26px;
  color: var(--nw-white);
  background:
    radial-gradient(circle at 88% 10%, rgba(22, 200, 247, 0.22), transparent 28%),
    var(--nw-navy-900);
}

.cta-band > div:first-child > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--nw-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band h2 {
  margin: 0;
  color: var(--nw-white);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  position: relative;
  background: var(--nw-navy-950);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 200, 247, 0.5), rgba(65, 215, 155, 0.4), transparent);
}

.footer,
.footer .footer-info p,
.footer .footer-links ul a,
.footer .copyright p,
.footer .legal-links a,
.footer .footer-newsletter p {
  color: #a9bed1;
}

.footer .footer-info p {
  max-width: 320px;
  line-height: 1.65;
}

.footer h4,
.footer .logo .sitename {
  color: var(--nw-white);
}

.footer .footer-links ul a {
  display: inline-block;
  padding: 2px 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.footer .footer-links ul a:hover {
  color: var(--nw-cyan);
  transform: translateX(2px);
}

.footer .legal-links a {
  transition: color 0.15s ease;
}

.footer .legal-links a:hover,
.footer .legal-links a.active {
  color: var(--nw-cyan);
}

.footer h4::after {
  background: var(--nw-cyan);
}

.footer .social-links a {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.footer .social-links a:hover {
  color: var(--nw-navy-950);
  border-color: var(--nw-cyan);
  background: var(--nw-cyan);
}

.footer .footer-newsletter form input[type=email] {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--nw-radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.footer .footer-newsletter form input[type=email]:focus {
  border-color: var(--nw-cyan);
  box-shadow: 0 0 0 3px rgba(22, 200, 247, 0.18);
}

.footer .footer-newsletter form .btn-subscribe {
  border-radius: var(--nw-radius-sm);
  background: var(--nw-cyan);
}

.footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1199px) {
  .nova-header .header-container {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }

  .nova-header .navmenu {
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .btn-nova-secondary {
    display: none;
  }

  .mobile-nav-active .nova-header .header-container {
    backdrop-filter: none;
  }

  .mobile-nav-active .nova-header .navmenu {
    position: fixed;
    inset: 0;
    z-index: 9997;
    overflow: hidden;
    background: rgba(4, 17, 31, 0.82);
  }

  .mobile-nav-active .nova-header .navmenu > ul {
    display: block;
    position: fixed;
    top: 88px;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    height: auto;
    padding: 12px;
    border: 1px solid rgba(22, 200, 247, 0.24);
    border-radius: var(--nw-radius-sm);
    background: #071a2f;
    box-shadow: 0 24px 80px rgba(4, 17, 31, 0.36);
  }

  .mobile-nav-active .nova-header .navmenu a,
  .mobile-nav-active .nova-header .navmenu a:focus {
    color: #dbeaf4;
    padding: 13px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 800;
  }

  .mobile-nav-active .nova-header .navmenu a.active,
  .mobile-nav-active .nova-header .navmenu a:hover {
    color: var(--nw-cyan);
    background: rgba(22, 200, 247, 0.08);
  }

  .mobile-nav-active .nova-header .mobile-nav-toggle {
    position: fixed;
    top: 32px;
    right: 28px;
    z-index: 9999;
    color: var(--nw-white);
  }
}

@media (max-width: 575px) {
  .nova-header .header-container {
    min-height: 64px;
    padding: 10px;
    gap: 8px;
  }

  .nova-header .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nova-header .logo .sitename {
    font-size: 20px;
  }

  .brand-tagline {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .header-actions .btn-nova-primary {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .nova-header .mobile-nav-toggle {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .btn-nova-primary,
  .btn-nova-secondary {
    width: 100%;
  }

  .hero-panel {
    min-height: 398px;
    padding: 16px;
  }

  .scan-ring {
    width: 190px;
    height: 190px;
  }

  .scan-ring-core {
    width: 138px;
    height: 138px;
  }

  .scan-ring-core span {
    font-size: 48px;
  }

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

  .content-section,
  .page-side-panel,
  .contact-page-section .form-card,
  .legal-card article,
  .scan-step,
  .scan-progress-card {
    padding: 18px;
  }

  .step-actions .btn-nova-primary,
  .step-actions .btn-nova-secondary {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .route-grid,
  .scan-check-grid,
  .product-grid,
  .insight-grid,
  .profile-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card-header,
  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .compact-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .admin-topbar {
    grid-template-columns: 1fr auto;
  }

  .admin-filter-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 992px) {
  .hero-shell,
  .scan-layout,
  .profile-layout,
  .advisor-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  }

  .section-heading-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

  .page-hero-grid,
  .page-content-grid,
  .contact-page-grid,
  .novascan-form-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  }

  .novascan-form-shell {
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  }
}
