
:root {
  --bg: #f4f8f8;
  --bg-soft: #eef5f1;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #08151a;
  --surface-dark-2: #0d2228;
  --text: #12242b;
  --muted: #55727d;
  --line: rgba(18, 36, 43, 0.12);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #0f766e;
  --primary-strong: #0b5e58;
  --primary-soft: rgba(15, 118, 110, 0.12);
  --accent: #f4b942;
  --accent-soft: rgba(244, 185, 66, 0.18);
  --success: #0f9d58;
  --warning: #f59e0b;
  --danger: #dc2626;
  --shadow: 0 20px 60px rgba(9, 30, 36, 0.12);
  --shadow-soft: 0 14px 36px rgba(9, 30, 36, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 2rem));
  --narrow: min(860px, calc(100% - 2rem));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 185, 66, 0.16), transparent 24rem),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.14), transparent 30rem),
    var(--bg);
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button { cursor: pointer; }

code {
  padding: 0.15rem 0.45rem;
  border-radius: 0.5rem;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary-strong);
  font-size: 0.95em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(244, 248, 248, 0.72);
  border-bottom: 1px solid rgba(18, 36, 43, 0.06);
}

.site-header.is-scrolled {
  background: rgba(244, 248, 248, 0.9);
  box-shadow: 0 10px 30px rgba(9, 30, 36, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 12px 30px rgba(9, 30, 36, 0.14);
  overflow: hidden;
  background: linear-gradient(135deg, #0a1c21, #102f37);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo.small {
  width: 42px;
  height: 42px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.72);
}

.nav-link.active {
  color: var(--surface-strong);
  background: linear-gradient(135deg, var(--primary), #158f87);
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.28);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 15px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: clip;
  padding: 4rem 0 2rem;
}

.hero-home {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 185, 66, 0.22), transparent 22rem),
    radial-gradient(circle at 85% 15%, rgba(15, 118, 110, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-grid,
.split-layout,
.contact-layout,
.survey-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(18,36,43,0.08);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 12px 25px rgba(9, 30, 36, 0.06);
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 0.85rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #17313a;
}

.hero-text,
.page-hero p,
.section-heading p,
.info-card p,
.story-card p,
.highlight-panel span,
.glass-panel p,
.callout-box p,
.form-message,
.sidebar-note p {
  color: var(--muted);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 54ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #159388);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(15, 118, 110, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(18,36,43,0.08);
  box-shadow: 0 16px 30px rgba(9, 30, 36, 0.08);
}

.btn-secondary:hover {
  background: #ffffff;
}

.chip-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip-list li {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(8, 21, 26, 0.06);
  color: var(--text);
  font-weight: 700;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.visual-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68));
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.4);
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.16), transparent 40%),
    linear-gradient(180deg, transparent 60%, rgba(244, 185, 66, 0.1));
  pointer-events: none;
}

.visual-card img {
  border-radius: calc(var(--radius-xl) - 12px);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.visual-note {
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  bottom: 1.7rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(8, 21, 26, 0.72);
  color: #f8fcfd;
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.section,
.page-hero {
  padding: 5rem 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(244, 185, 66, 0.22), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0));
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.page-hero p {
  max-width: 68ch;
  margin: 0.8rem auto 0;
  font-size: 1.06rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.35));
}

.section-dark {
  color: #edf7f8;
  background:
    radial-gradient(circle at top right, rgba(244, 185, 66, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--surface-dark), var(--surface-dark-2));
}

.section-dark .eyebrow {
  background: rgba(255,255,255,0.06);
  border-color: var(--line-strong);
  color: #dff8f6;
}

.section-dark p,
.section-dark .mini-card p {
  color: rgba(237, 247, 248, 0.76);
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-layout h2,
.contact-layout h2,
.form-card h2,
.story-card h2,
.callout-box h2 {
  margin: 0.95rem 0 0.7rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

.info-card,
.story-card,
.highlight-panel,
.glass-panel,
.image-panel,
.sticky-card,
.form-card,
.result-panel,
.callout-box {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.info-card,
.form-card,
.callout-box,
.result-panel,
.story-card,
.highlight-panel,
.glass-panel,
.sticky-card {
  padding: 1.45rem;
}

.info-card h3,
.info-card h2,
.result-card h3,
.sticky-card h2 {
  margin: 1rem 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.18;
}

.info-card .text-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--primary-strong);
  font-weight: 800;
}

.icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background:
    linear-gradient(135deg, rgba(15,118,110,0.12), rgba(244,185,66,0.1));
  box-shadow: inset 0 0 0 1px rgba(15,118,110,0.08);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-layout {
  grid-template-columns: 1fr 1fr;
}

.align-center {
  align-items: center;
}

.feature-list,
.footer-links,
.result-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.feature-list li,
.footer-links li,
.result-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.feature-list li + li,
.footer-links li + li,
.result-list li + li {
  margin-top: 0.8rem;
}

.feature-list .icon,
.mini-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex: 0 0 auto;
}

.highlight-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.metric {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(18, 36, 43, 0.07);
}

.metric strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.lead-quote {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.4;
  font-weight: 700;
  color: #15333b;
}

.space-top {
  margin-top: 1.4rem;
}

.glass-panel {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  display: grid;
  gap: 0.95rem;
}

.mini-card {
  display: flex;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.image-panel {
  overflow: hidden;
  padding: 0.8rem;
}

.image-panel img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(18,36,43,0.08);
  box-shadow: 0 10px 25px rgba(9, 30, 36, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.1rem;
  font-size: 1.4rem;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.cta-strip {
  padding-top: 0;
}

.cta-inner {
  padding: 1.7rem 1.8rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(244,185,66,0.18), transparent 15rem),
    linear-gradient(135deg, rgba(15,118,110,0.12), rgba(255,255,255,0.85));
  border: 1px solid rgba(15,118,110,0.1);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.survey-layout {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
}

.survey-sidebar {
  position: relative;
}

.sticky-card {
  position: sticky;
  top: 110px;
}

.answer-progress {
  margin: 1.3rem 0 1.1rem;
}

.answer-progress-top,
.result-legend {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.progress-track {
  position: relative;
  height: 12px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: rgba(18, 36, 43, 0.08);
  overflow: hidden;
}

.progress-track.large {
  height: 14px;
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transition: width 0.35s ease;
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 1rem;
  background: rgba(255,255,255,0.72);
}

.score-table.compact {
  margin-top: 0;
}

.score-table th,
.score-table td {
  padding: 0.9rem 0.95rem;
  text-align: left;
  border-bottom: 1px solid rgba(18,36,43,0.08);
}

.score-table thead th {
  background: rgba(15,118,110,0.08);
  font-size: 0.95rem;
}

.score-table tbody tr:last-child td {
  border-bottom: 0;
}

.sidebar-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.08);
}

.sidebar-note strong {
  color: var(--primary-strong);
}

.question-card {
  padding: 1.35rem;
  margin: 0;
  border: 1px solid rgba(18,36,43,0.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 10px 24px rgba(9, 30, 36, 0.06);
}

.question-card + .question-card {
  margin-top: 1rem;
}

.question-card legend {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  font-weight: 800;
  font-size: 1.12rem;
  padding: 0;
}

.question-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--primary), #1a9d95);
  color: #fff;
  font-size: 1rem;
}

.question-tip {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.option-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.option-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(18,36,43,0.08);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.option-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(9, 30, 36, 0.05);
}

.option-pill input {
  margin: 0;
  accent-color: var(--primary);
  transform: scale(1.15);
  flex: 0 0 auto;
}

.option-pill span {
  font-weight: 600;
}

.option-pill.is-selected {
  border-color: rgba(15,118,110,0.32);
  background: linear-gradient(135deg, rgba(15,118,110,0.08), rgba(255,255,255,0.95));
  box-shadow: 0 12px 22px rgba(15,118,110,0.08);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.form-message {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  font-weight: 700;
}

.form-message.is-error {
  color: var(--danger);
}

.result-panel {
  margin-top: 1.5rem;
}

.result-panel.is-hidden {
  display: none;
}

.result-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.result-header h2 {
  margin: 0.6rem 0 0.5rem;
  font-size: 2rem;
}

.score-badge {
  min-width: 120px;
  padding: 1rem;
  border-radius: 22px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1a9d95);
  box-shadow: 0 18px 36px rgba(15,118,110,0.28);
}

.score-badge span {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}

.result-progress {
  margin: 1.25rem 0 1.3rem;
}

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

.result-card {
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(18,36,43,0.08);
}

.result-list {
  margin-top: 0.9rem;
}

.result-list li {
  align-items: flex-start;
  color: var(--muted);
}

.result-list li::before {
  content: "•";
  color: var(--primary);
  font-weight: 900;
  margin-right: 0.5rem;
}

.result-actions {
  margin-top: 1.2rem;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18,36,43,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  padding: 0.9rem 1rem;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(15,118,110,0.18);
  border-color: rgba(15,118,110,0.25);
}

.status-message {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.status-message.is-hidden {
  display: none;
}

.status-message.is-success {
  color: #0b6b3c;
  background: rgba(15,157,88,0.12);
}

.status-message.is-error {
  color: #9f1f1f;
  background: rgba(220,38,38,0.12);
}

.callout-box {
  text-align: center;
  padding: 2rem;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: rgba(8, 21, 26, 0.96);
  color: #edf7f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-text small,
.footer-text,
.footer-links a {
  color: rgba(237, 247, 248, 0.7);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(237,247,248,0.72);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.45rem;
    padding: 0.85rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-link {
    justify-content: center;
    text-align: center;
  }

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

  .hero-grid,
  .split-layout,
  .survey-layout,
  .contact-layout,
  .footer-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: unset;
    padding-top: 2.2rem;
  }

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

  .hero-media {
    justify-content: center;
  }

  .sticky-card {
    position: static;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 76px;
  }

  .section,
  .page-hero {
    padding: 4rem 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .card-grid-3,
  .field-row {
    grid-template-columns: 1fr;
  }

  .question-card legend {
    font-size: 1rem;
  }

  .question-number {
    width: 34px;
    height: 34px;
  }

  .result-header {
    flex-direction: column;
  }

  .score-badge {
    min-width: 0;
    width: 100%;
  }

  .brand-text small {
    display: none;
  }

  .visual-note {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
  }
}

@media print {
  .site-header,
  .site-footer,
  .page-hero,
  .survey-sidebar,
  .form-actions,
  .result-actions {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .section {
    padding: 1rem 0;
  }

  .result-panel {
    margin-top: 0;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

.score-badge.low {
  background: linear-gradient(135deg, #0f9d58, #34d399);
  box-shadow: 0 18px 36px rgba(15,157,88,0.28);
}
.score-badge.medium {
  background: linear-gradient(135deg, #d97706, #f4b942);
  box-shadow: 0 18px 36px rgba(217,119,6,0.26);
}
.score-badge.high {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  box-shadow: 0 18px 36px rgba(185,28,28,0.26);
}
