@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --forest: #243a2c;
  --forest-dark: #18271e;
  --pine: #3f6249;
  --sage: #9dad91;
  --mist: #eef2e8;
  --cream: #f8f5ec;
  --paper: #fffdf7;
  --sand: #ded7c6;
  --ink: #273029;
  --muted: #677068;
  --line: rgba(36, 58, 44, 0.14);
  --shadow: 0 24px 70px rgba(36, 58, 44, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}

button,
select,
input {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: white;
  background: var(--forest-dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  background: var(--forest);
  border-radius: 9px;
  font-size: 0.82rem;
  transform: rotate(45deg);
}

.brand-mark::first-letter {
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
}

.menu-button {
  display: none;
  padding: 8px 12px;
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
  background:
    radial-gradient(circle at 85% 5%, rgba(157, 173, 145, 0.35), transparent 34%),
    linear-gradient(135deg, var(--cream), var(--mist));
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(36, 58, 44, 0.13);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--forest-dark);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

h1 span {
  color: var(--pine);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

.hero-text {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(63, 98, 73, 0.35);
  outline-offset: 3px;
}

.button-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 12px 30px rgba(36, 58, 44, 0.18);
}

.button-primary:hover {
  background: var(--forest-dark);
}

.button-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.52);
  border-color: var(--line);
}

.button-light {
  color: var(--forest-dark);
  background: var(--paper);
}

.trust-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--pine);
  content: "✓";
  font-weight: 700;
}

.hero-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sand);
}

.guide-preview {
  padding: 34px;
}

.preview-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 10px;
  color: var(--pine);
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-preview h2 {
  max-width: 390px;
  margin-bottom: 28px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-row strong {
  color: var(--forest-dark);
  text-align: right;
}

.progress-track {
  height: 8px;
  margin: 28px 0 14px;
  overflow: hidden;
  background: var(--mist);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--pine);
  border-radius: inherit;
}

.preview-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.checker-section {
  background: var(--forest-dark);
}

.checker-section .section-heading h2,
.checker-section .section-heading p {
  color: white;
}

.checker-section .eyebrow {
  color: #bed0b5;
}

.checker-card {
  padding: 34px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

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

.form-grid label > span {
  color: var(--forest-dark);
  font-weight: 700;
}

.full-width {
  grid-column: 1 / -1;
}

select {
  width: 100%;
  min-height: 52px;
  padding: 0 44px 0 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}

select:focus {
  border-color: var(--pine);
  outline: 3px solid rgba(63, 98, 73, 0.13);
}

.checker-button {
  width: 100%;
  margin-top: 24px;
}

.checker-result {
  margin-top: 22px;
  padding: 28px;
  color: var(--ink);
  background: #dfe8d8;
  border-radius: var(--radius-md);
}

.checker-result h3 {
  margin-bottom: 9px;
}

.checker-result p:last-child {
  margin-bottom: 0;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.result-meta span {
  padding: 5px 9px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.checker-disclaimer {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  text-align: center;
}

.products-section {
  background: var(--paper);
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.product-copy {
  padding: clamp(32px, 5vw, 64px);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.status-badge,
.small-badge {
  display: inline-block;
  padding: 7px 10px;
  color: var(--pine);
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  color: var(--forest-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.product-copy > h3 {
  max-width: 630px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.product-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.product-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 14px;
}

.product-facts span,
.product-facts strong {
  display: block;
}

.product-facts span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.product-facts strong {
  color: var(--forest-dark);
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  gap: 9px;
  margin-bottom: 32px;
}

.product-visual {
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: 40px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.75), transparent 24%),
    var(--sage);
}

.file-stack {
  position: relative;
  width: min(300px, 85%);
  height: 330px;
}

.file-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 230px;
  min-height: 270px;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 28px 55px rgba(24, 39, 30, 0.19);
}

.file-card span {
  align-self: flex-start;
  margin-bottom: 70px;
  padding: 6px 9px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.file-card strong {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.2;
}

.file-back {
  top: 25px;
  right: 0;
  color: var(--forest-dark);
  background: var(--mist);
  transform: rotate(8deg);
}

.file-back span {
  background: white;
}

.file-front {
  left: 0;
  bottom: 0;
  color: white;
  background: var(--forest);
  transform: rotate(-4deg);
}

.file-front span {
  color: var(--forest);
  background: var(--paper);
}

.mini-lines {
  display: grid;
  gap: 7px;
  margin-top: 26px;
}

.mini-lines i {
  display: block;
  height: 5px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 99px;
}

.mini-lines i:nth-child(2) {
  width: 76%;
}

.mini-lines i:nth-child(3) {
  width: 56%;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.coming-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.coming-card h3 {
  margin-top: 22px;
}

.coming-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-section {
  background: var(--mist);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 90px;
}

.about-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.brand-statement {
  margin-top: 28px;
  padding-left: 22px;
  color: var(--forest-dark);
  border-left: 3px solid var(--pine);
  font-weight: 700;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.process-grid article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 32px;
  color: var(--paper);
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--cream);
}

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

details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

summary {
  position: relative;
  padding: 22px 36px 22px 0;
  color: var(--forest-dark);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "+";
  color: var(--pine);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.final-cta {
  padding: 70px 0;
  color: white;
  background: var(--forest);
}

.final-cta .eyebrow,
.final-cta h2 {
  color: white;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-footer {
  padding: 36px 0;
  background: var(--forest-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-brand {
  color: white;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .featured-product,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

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

  .product-visual {
    min-height: 430px;
  }

  .about-grid {
    gap: 30px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner p:last-child {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    padding: 70px 0 82px;
  }

  .section {
    padding: 80px 0;
  }

  .form-grid,
  .product-facts,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .product-topline,
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    justify-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  h1 {
    font-size: 3.05rem;
  }

  .checker-card,
  .guide-preview,
  .product-copy {
    padding: 24px;
  }

  .trust-list {
    display: grid;
  }

  .product-visual {
    min-height: 380px;
    padding: 24px;
  }

  .file-stack {
    transform: scale(0.88);
  }
}

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

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


/* Multi-page additions */
.page-hero {
  padding: 88px 0 70px;
  background:
    radial-gradient(circle at 88% 0%, rgba(157, 173, 145, 0.35), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--mist));
}

.page-hero .section-heading {
  margin-bottom: 0;
}

.page-hero .section-heading p:last-child {
  max-width: 720px;
}

.page-content {
  padding: 86px 0 110px;
}

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

.result-summary-list li {
  position: relative;
  padding-left: 24px;
}

.result-summary-list li::before {
  position: absolute;
  left: 0;
  color: var(--pine);
  content: "✓";
  font-weight: 700;
}

.result-warning {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.62);
  border-radius: 12px;
}

.result-warning strong {
  color: var(--forest-dark);
}

.plain-language-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  color: var(--muted);
  background: var(--cream);
  border-left: 3px solid var(--pine);
  border-radius: 0 12px 12px 0;
}

.simple-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.simple-steps article {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.simple-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-weight: 700;
}

.simple-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .simple-steps {
    grid-template-columns: 1fr;
  }
}


/* Exact model recommendation */
.model-recommendation {
  margin-top: 22px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(36, 58, 44, 0.14);
  border-radius: 16px;
}

.model-recommendation > p {
  margin: 0 0 12px;
  color: var(--forest-dark);
  font-weight: 700;
}

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

.model-list li {
  padding: 13px 15px;
  background: var(--mist);
  border-radius: 11px;
}

.model-list strong {
  display: block;
}

.model-list small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.model-date {
  margin: 12px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.78rem;
  font-weight: 400 !important;
}
