:root {
  --navy-950: #081426;
  --navy-900: #0b1d37;
  --navy-800: #132b4b;
  --navy-700: #21406a;
  --gold-500: #c89a4d;
  --gold-400: #d8af6a;
  --gold-100: #faf1df;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --line: #e6ebf2;
  --ink: #10233e;
  --ink-soft: #5a6f8f;
  --success: #0f8a55;
  --shadow-lg: 0 28px 60px rgba(11, 29, 55, 0.08);
  --shadow-md: 0 18px 34px rgba(11, 29, 55, 0.08);
  --shadow-sm: 0 10px 18px rgba(11, 29, 55, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 154, 77, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 45%, #f7f9fc 100%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 3.4rem 0;
}

.section-tight {
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.75rem;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.68;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.92rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(11, 29, 55, 0.16);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(11, 29, 55, 0.2);
}

.button-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--gold-100);
  border-color: rgba(200, 154, 77, 0.46);
  color: var(--navy-900);
  box-shadow: 0 18px 30px rgba(200, 154, 77, 0.14);
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 18px 30px rgba(200, 154, 77, 0.24);
}

.button-gold:hover {
  background: linear-gradient(135deg, #ddb46d, #ebc98d);
  color: var(--navy-950);
  box-shadow: 0 24px 38px rgba(200, 154, 77, 0.3);
}

.button-link {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-700);
  box-shadow: none;
}

.button-link:hover {
  background: transparent;
  color: var(--gold-500);
  box-shadow: none;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(216, 175, 106, 0.22);
  background:
    linear-gradient(180deg, rgba(8, 20, 38, 0.96) 0%, rgba(11, 29, 55, 0.94) 100%);
  box-shadow: 0 14px 34px rgba(8, 20, 38, 0.2);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  padding: 0.3rem 0;
  background: transparent;
  box-shadow: none;
}

.brand-badge img {
    content: url('https://www.housave.com/wp-content/uploads/2026/05/WhatsApp-Image-2026-05-13-at-05.32.40.jpeg');
    width: 160px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.16));
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.94rem;
  font-weight: 800;
}

.brand-tagline {
  color: rgba(232, 238, 247, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.footer-link:hover,
.text-link:hover {
  color: var(--gold-500);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 2.8rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button:hover:not(.is-active) {
  background: rgba(200, 154, 77, 0.16);
  color: var(--white);
}

.language-switcher button.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.hero {
  padding: 3.3rem 0 1.6rem;
}

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

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

.hero-copy h1 {
  font-size: clamp(1.55rem, 3.1vw, 2.95rem);
}

.hero-subtitle {
  max-width: 62ch;
  font-size: 1rem;
}

.hero-small-text {
  margin-top: 0.5rem;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.1rem;
  padding: 0;
  list-style: none;
}

.benefit-card,
.action-card,
.report-card,
.step-card,
.trust-card,
.sidebar-card,
.analysis-form-card,
.progress-shell,
.why-card,
.faq-item,
.footer-card,
.advisor-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.benefit-icon,
.trust-icon,
.step-number,
.sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-500);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.benefit-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.benefit-inline-dot {
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.6rem;
  border-radius: 50%;
  background: var(--gold-500);
}

.benefit-inline-copy {
  display: grid;
  gap: 0.18rem;
}

.benefit-inline-kicker {
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benefit-inline h3 {
  margin: 0;
}

.benefit-inline p {
  margin: 0;
}

.benefit-card p:last-child,
.report-card ul,
.step-card p:last-child,
.trust-card p:last-child,
.sidebar-card p:last-child,
.why-card p:last-child {
  margin-bottom: 0;
}

.home-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.action-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

.action-card-button {
  width: 50%;
  min-width: 190px;
}

.action-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.action-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.action-card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.75rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(11, 29, 55, 0.06);
  color: var(--navy-700);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-note {
  margin-top: 0.55rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.05rem;
}

.report-grid,
.steps-grid,
.trust-grid {
  display: grid;
  gap: 0.9rem;
}

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

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

.report-card,
.trust-card {
  padding: 1.6rem;
}

.report-card {
  position: relative;
  padding-top: 3.2rem;
}

.report-card ul,
.faq-answer,
.simple-list {
  padding-left: 1rem;
  color: var(--ink-soft);
}

.simple-list {
  margin: 0;
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(200, 154, 77, 0.35);
  border-radius: 999px;
  background: rgba(200, 154, 77, 0.12);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.coming-soon-copy {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.sidebar-card .coming-soon-badge {
  position: static;
  width: fit-content;
  margin-bottom: 0.75rem;
}

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

.blog-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.blog-card h3,
.blog-card p {
  margin-bottom: 0;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(11, 29, 55, 0.06);
  color: var(--navy-700);
}

.blog-card-button {
  width: fit-content;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.report-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(200, 154, 77, 0.35);
  border-radius: 999px;
  background: rgba(200, 154, 77, 0.12);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
}

.report-badge:hover {
  background: rgba(200, 154, 77, 0.22);
  border-color: rgba(200, 154, 77, 0.52);
  color: var(--navy-950);
  transform: translateY(-1px);
}

.report-badge span:first-child {
  color: var(--gold-500);
  font-size: 0.82rem;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0.9rem;
  align-items: stretch;
}

.why-card {
  padding: 1.9rem;
}

.why-card h3 {
  margin: 0.65rem 0 0.35rem;
  color: var(--navy-900);
}

.why-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.why-qr-box {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.why-qr-box img {
  width: 104px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.why-qr-box span {
  max-width: 140px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.why-contact-meta {
  display: grid;
  gap: 0.22rem;
  margin-top: 1rem;
}

.why-contact-meta strong {
  color: var(--navy-900);
  font-size: 0.96rem;
}

.why-contact-meta span,
.why-contact-meta a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-decoration: none;
}

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

.advisor-card img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.advisor-card-meta {
  display: grid;
  gap: 0.2rem;
}

.advisor-card-meta strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

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

.faq-item {
  overflow: hidden;
}

.article-shell {
  max-width: 900px;
}

.article-header {
  margin-bottom: 1.2rem;
}

.article-content {
  max-width: 760px;
}

.article-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.78;
}

.article-list {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  color: var(--ink-soft);
}

.article-list li + li {
  margin-top: 0.42rem;
}

.article-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.article-inline-links a {
  color: var(--navy-700);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.author-box,
.article-cta-box {
  margin-top: 1.3rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.author-box {
  display: grid;
  gap: 0.3rem;
}

.author-box strong {
  color: var(--navy-900);
}

.author-box span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.related-articles {
  margin-top: 1.5rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:last-child {
  color: var(--gold-500);
  font-size: 1.2rem;
}

.faq-answer {
  display: none;
  padding: 0 1.35rem 1.35rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.page-hero {
  padding: 2.4rem 0 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.1rem;
  color: var(--navy-700);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.progress-shell {
  padding: 1rem;
  margin-bottom: 1rem;
}

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

.progress-step {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.7rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  padding: 0.5rem 0.75rem;
}

.progress-step.is-active {
  background: var(--navy-900);
  color: var(--white);
}

.analysis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: 0.95rem;
  align-items: start;
}

.analysis-form-card {
  padding: 1.5rem;
}

.analysis-form {
  display: grid;
  gap: 1rem;
}

.form-section {
  display: grid;
  gap: 0.7rem;
}

.form-section-title {
  display: grid;
  gap: 0.35rem;
}

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

.field-span-2 {
  grid-column: 1 / -1;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 6.8rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(200, 154, 77, 0.18);
  border-color: rgba(200, 154, 77, 0.48);
}

.range-shell {
  display: grid;
  gap: 0.75rem;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.range-value {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 800;
}

input[type="range"] {
  min-height: auto;
  padding: 0;
  accent-color: var(--gold-500);
}

.helper-text,
.privacy-note,
.field-note,
.submit-error {
  font-size: 0.82rem;
}

.helper-text,
.privacy-note,
.field-note {
  color: var(--ink-soft);
}

.submit-error {
  color: #bc3a2f;
  font-weight: 700;
}

.sidebar-stack {
  display: grid;
  gap: 0.8rem;
}

.sidebar-card {
  position: relative;
  padding: 1.35rem;
}

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

.sidebar-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.sidebar-list-item h4 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
}

.contact-section {
  padding-top: 1rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-copy {
  max-width: 700px;
}

.sample-report-button {
  width: 100%;
}

.footer {
  padding: 2.8rem 0 2.1rem;
}

.footer-card {
  padding: 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(0, 0.8fr)) minmax(180px, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

.footer-title {
  margin-bottom: 0.8rem;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-list {
  display: grid;
  gap: 0.6rem;
}

.footer-list a,
.footer-link,
.text-link {
  color: var(--navy-700);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
}

.footer-legal-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.qr-box {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.qr-box img {
  width: 122px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: start center;
  padding: 0.4rem;
  overflow-y: auto;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 38, 0.56);
}

.modal-card {
  position: relative;
  width: min(100%, 640px);
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(8, 20, 38, 0.28);
}

.modal-card.modal-card-wide {
  width: min(98vw, 1700px);
  max-height: calc(100vh - 0.8rem);
  padding: 0.95rem;
  overflow-y: auto;
}

.modal-card.modal-card-wide .button {
  min-height: 2.85rem;
  padding: 0.72rem 1.1rem;
  font-size: 0.72rem;
}

.modal-card.modal-card-wide .modal-body {
  gap: 0.7rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy-900);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.modal-body {
  display: grid;
  gap: 1rem;
}

.report-modal-copy .eyebrow {
  margin-bottom: 0.55rem;
  font-size: 0.48rem;
}

.report-modal-copy h2 {
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  margin-bottom: 0;
}

.report-preview-image {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

@media (max-width: 1100px) {
  .hero-benefits,
  .steps-grid,
  .footer-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analysis-layout,
  .why-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-actions,
  .report-grid,
  .trust-grid,
  .blog-grid,
  .hero-benefits,
  .steps-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .action-card-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.1rem, var(--content-width));
  }

  .section {
    padding: 2.8rem 0;
  }

  .site-header {
    position: static;
  }

  .brand {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .brand-badge {
    min-width: 168px;
  }

  .nav {
    min-height: auto;
    padding: 1rem 0;
  }

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

  .modal-card {
    padding: 1.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
