:root {
  --green: #0f6b4f;
  --white: #ffffff;
  --black: #1e2421;
  --muted: #65706b;
  --line: rgba(30, 36, 33, 0.13);
  --soft: #f6f8f7;
  --deep: #0d1512;
  --shadow: 0 24px 80px rgba(15, 107, 79, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(30, 36, 33, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 36, 33, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 70px rgba(30, 36, 33, 0.08);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: min-height 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 52px rgba(30, 36, 33, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 50px;
  overflow: hidden;
}

.brand img {
  width: 145px;
  height: 145px;
  object-fit: contain;
  transform: scale(1.65);
  transform-origin: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(30, 36, 33, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.primary-action,
.secondary-action,
.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.header-cta,
.primary-action {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(15, 107, 79, 0.22);
}

.header-cta:hover,
.primary-action:hover {
  box-shadow: 0 22px 46px rgba(15, 107, 79, 0.28);
  transform: translateY(-2px);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
}

.secondary-action:hover {
  border-color: rgba(15, 107, 79, 0.35);
  transform: translateY(-2px);
}

.outline-action {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.outline-action:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.section,
.section-bleed {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  min-height: 100vh;
  padding: 122px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

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

.hero p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 620px;
  margin-top: 38px;
  color: rgba(30, 36, 33, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.trust-line span {
  position: relative;
  padding-left: 18px;
}

.trust-line span::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-media {
  position: relative;
  height: min(70vh, 650px);
  min-height: 450px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  clip-path: inset(0 round 8px);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.08) 42%, transparent 62%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  top: -10%;
  bottom: -10%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(transparent, rgba(15, 107, 79, 0.72), transparent);
  animation: scan 4.8s ease-in-out infinite;
}

.thread {
  position: absolute;
  pointer-events: none;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 1.2;
  opacity: 0.18;
}

.thread path {
  stroke-dasharray: 12 12;
  animation: threadMove 22s linear infinite;
}

.thread-hero {
  right: -90px;
  bottom: 32px;
  width: 58vw;
}

.result-section {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 50px;
  align-items: center;
  padding: 88px max(40px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--deep);
  overflow: hidden;
}

.result-copy h2,
.section-heading h2,
.warranty h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  font-weight: 850;
}

.result-copy p,
.section-heading p,
.warranty p,
.final-cta p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.comparison {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #0b100e;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.comparison img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.comparison-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(13, 21, 18, 0.33), transparent 50%);
  clip-path: inset(0 50% 0 0);
}

.comparison input {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
}

.divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.divider span::before,
.divider span::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
}

.divider span::before {
  left: 14px;
  transform: translateY(-50%) rotate(-45deg);
}

.divider span::after {
  right: 14px;
  transform: translateY(-50%) rotate(135deg);
}

.labels {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.labels strong {
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(13, 21, 18, 0.78);
}

.section {
  padding: 108px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading p {
  color: var(--muted);
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  min-height: 220px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}

.service-item:last-child {
  border-right: 0;
}

.service-item span {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.service-item p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.section-dark {
  position: relative;
  padding: 112px max(40px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--deep);
  overflow: hidden;
}

.section-dark .section-heading {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto 64px;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.thread-dark {
  right: -120px;
  bottom: 20px;
  width: 70vw;
  stroke: rgba(255, 255, 255, 0.9);
  opacity: 0.12;
}

.benefit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.13);
}

.benefit {
  min-height: 230px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.035);
}

.benefit h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.15;
}

.benefit p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.warranty {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 92px auto;
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--green), #073f30);
  box-shadow: var(--shadow);
}

.warranty-mark {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
}

.warranty-mark strong {
  font-size: 72px;
  line-height: 0.85;
}

.warranty-mark span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.warranty-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
}

.process-list span {
  color: rgba(15, 107, 79, 0.34);
  font-size: 36px;
  font-weight: 900;
}

.process-list h3 {
  margin: 42px 0 0;
  font-size: 20px;
}

.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq {
  padding-top: 72px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(15, 107, 79, 0.35);
  box-shadow: 0 20px 48px rgba(30, 36, 33, 0.08);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  color: var(--green);
  font-size: 24px;
  content: "+";
}

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

details p {
  margin: -4px 22px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 38px auto 0;
  padding: 58px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
}

.final-cta > img {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 360px;
  opacity: 0.12;
  transform: translateY(-50%);
}

.final-cta h2,
.final-cta p,
.final-cta a {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 160px 1fr auto auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-footer img {
  width: 140px;
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  0%,
  100% {
    left: 8%;
    opacity: 0;
  }
  18%,
  78% {
    opacity: 1;
  }
  50% {
    left: 92%;
  }
}

@keyframes threadMove {
  to {
    stroke-dashoffset: -240;
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 150px 1fr 44px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-header.menu-active .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 22px 62px rgba(30, 36, 33, 0.16);
  }

  .site-header.menu-active .nav a {
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-active .nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .result-section,
  .section-heading,
  .warranty,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-media {
    min-height: 390px;
    height: 48vh;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 46%);
  }

  .result-section {
    padding: 72px 20px;
  }

  .service-rail,
  .benefit-grid,
  .process-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .warranty {
    align-items: start;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .section,
  .section-bleed,
  .warranty,
  .final-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p,
  .result-copy p,
  .section-heading p,
  .warranty p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .comparison,
  .comparison img {
    min-height: 310px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .result-copy h2,
  .warranty h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .warranty,
  .final-cta {
    padding: 30px;
  }

  .warranty-mark {
    width: 126px;
    height: 126px;
  }
}

/* Fidelity pass: match the provided desktop reference */
body {
  background: #fff;
}

.page-noise {
  display: none;
}

.site-header {
  top: 24px;
  width: min(1380px, calc(100% - 72px));
  min-height: 68px;
  grid-template-columns: 200px 1fr 262px;
  padding: 0 18px 0 22px;
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 18px 55px rgba(30, 36, 33, 0.09);
}

.brand {
  width: 184px;
  height: 58px;
  overflow: visible;
}

.brand img {
  width: 172px;
  height: auto;
  transform: none;
}

.nav {
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
  color: #303936;
}

.nav a {
  padding: 22px 0 18px;
}

.nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 52px;
  padding: 0 22px;
  justify-self: end;
  border-radius: 5px;
  font-size: 14px;
}

.wa-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  flex: 0 0 auto;
  background-color: currentColor;
  mask: url("./assets/whatsapp.svg") center / contain no-repeat;
  -webkit-mask: url("./assets/whatsapp.svg") center / contain no-repeat;
}

.hero {
  width: min(1380px, calc(100% - 72px));
  min-height: 690px;
  margin: 0 auto;
  grid-template-columns: 610px 1fr;
  gap: 42px;
  padding: 126px 0 58px;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.kicker {
  margin: 0 0 32px;
  color: var(--green) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 600px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 860;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-subcopy,
.hero p.hero-subcopy {
  max-width: 535px;
  margin-top: 24px;
  color: #5f6965;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  text-wrap: pretty;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin-top: 30px;
}

.hero-proof span {
  position: relative;
  min-height: 48px;
  padding-left: 42px;
  color: #27312d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-proof span::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 26px;
  height: 26px;
  border: 2px solid var(--green);
  border-radius: 7px;
  content: "";
  transform: rotate(45deg);
}

.hero-proof span::after {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.hero-actions {
  align-items: center;
  gap: 28px;
  margin-top: 22px;
}

.primary-action {
  min-height: 56px;
  border-radius: 5px;
  font-size: 14px;
}

.trust-line {
  display: none;
}

.hero-media {
  height: 548px;
  min-height: 548px;
  align-self: end;
  border-radius: 0 0 0 92px;
  box-shadow: none;
  clip-path: none;
}

.hero-media::before,
.scan-line {
  display: none;
}

.hero-media img {
  object-fit: cover;
  object-position: 53% 50%;
}

.thread {
  display: none;
}

.result-section {
  grid-template-columns: 350px 1fr;
  gap: 54px;
  min-height: 294px;
  padding: 52px max(66px, calc((100vw - 1380px) / 2));
  background: #101918;
}

.result-copy h2 {
  max-width: 325px;
  font-size: 33px;
  line-height: 1.12;
}

.result-copy p {
  max-width: 320px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.comparison {
  min-height: 254px;
  height: 254px;
  border: 0;
  border-radius: 6px;
}

.comparison img,
.comparison-shade {
  display: none;
}

.comparison-layer {
  position: absolute;
  inset: 0;
  background-image: url("./assets/before-after-sofa.png");
  background-size: 200% 100%;
  background-repeat: no-repeat;
}

.before-layer {
  background-position: left center;
}

.after-layer {
  background-position: right center;
  clip-path: inset(0 0 0 50%);
}

.comparison input {
  opacity: 0;
  cursor: grab;
  pointer-events: auto;
}

.comparison input:active {
  cursor: grabbing;
}

.divider {
  background: rgba(255, 255, 255, 0.86);
}

.divider span {
  width: 42px;
  height: 42px;
  background: #172424;
}

.labels strong {
  border-radius: 4px;
  background: #132120;
  font-size: 10px;
}

.labels strong:last-child {
  background: var(--green);
}

.section {
  width: min(1380px, calc(100% - 72px));
  padding: 92px 0;
}

.section-heading {
  display: block;
  margin-bottom: 54px;
  text-align: center;
}

.section-heading .kicker {
  width: fit-content;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: 36px;
  line-height: 1.18;
  text-wrap: balance;
}

.service-rail {
  grid-template-columns: repeat(6, 1fr);
  border: 0;
}

.service-item {
  min-height: 172px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.service-item:last-child {
  border-right: 0;
}

.service-icon {
  display: block;
  width: 68px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3,
.benefit h3,
.process-list h3 {
  margin: 0;
  color: #1b2420;
  font-size: 17px;
  font-weight: 900;
}

.service-item p,
.benefit p,
.process-list p {
  margin-top: 9px;
  color: #5f6965;
  font-size: 13px;
  line-height: 1.65;
}

.benefits {
  padding-top: 48px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 66px;
  width: 100%;
  background: transparent;
}

.benefit {
  position: relative;
  min-height: 0;
  padding: 0 0 0 38px;
  background: transparent;
}

.benefit::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--green);
  border-radius: 7px;
  content: "";
  transform: rotate(45deg);
}

.benefit::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.info-section,
.treatment-section,
.know-section,
.guarantee-details {
  padding-top: 48px;
}

.info-grid,
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.info-card,
.treatment-card,
.know-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.info-card {
  padding: 30px;
}

.info-card h3,
.treatment-card h3,
.service-item h3,
.benefit h3,
.process-list h3,
.know-card h2 {
  text-wrap: balance;
}

.info-card p,
.treatment-card li,
.know-card p,
.service-item p,
.benefit p,
.process-list p,
details p {
  text-wrap: pretty;
}

.info-card h3,
.treatment-card h3,
.know-card h2 {
  margin: 0;
  color: #1b2420;
  font-weight: 900;
}

.info-card h3,
.treatment-card h3 {
  font-size: 18px;
}

.info-card p,
.treatment-card li,
.know-card p {
  color: #5f6965;
  font-size: 14px;
  line-height: 1.7;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
}

.treatment-card {
  padding: 34px;
}

.treatment-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.treatment-card li {
  position: relative;
  padding-left: 24px;
}

.treatment-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.muted-card {
  background: #f7f9f8;
}

.know-card {
  padding: 46px;
  color: #fff;
  background: #101918;
}

.know-card .kicker,
.know-card h2,
.know-card p {
  max-width: 980px;
}

.know-card .kicker {
  color: #8ed5bd !important;
}

.know-card h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.16;
}

.know-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.warranty {
  width: min(1380px, calc(100% - 72px));
  grid-template-columns: 184px 1fr 315px;
  min-height: 170px;
  margin: 20px auto 72px;
  padding: 34px 58px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(15, 107, 79, 0.96), rgba(15, 107, 79, 0.9)),
    url("./assets/hero-sofa-rio.png") center/cover;
}

.warranty-mark {
  width: 106px;
  height: 106px;
  border-radius: 12px;
}

.warranty-mark strong {
  font-size: 58px;
}

.warranty h2 {
  font-size: 34px;
  line-height: 1.15;
  text-wrap: balance;
}

.warranty p {
  font-size: 14px;
}

.outline-action {
  min-height: 58px;
  border-radius: 5px;
  font-size: 14px;
}

.process {
  padding-top: 30px;
}

.process-list {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: transparent;
}

.process-list li {
  min-height: 238px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 30px;
  color: rgba(15, 107, 79, 0.26);
  font-size: 22px;
}

.faq {
  width: min(1380px, calc(100% - 72px));
  padding: 52px 60px;
  background: #f7f9f8;
}

.faq .section-heading {
  position: relative;
  display: block;
  margin-bottom: 34px;
  text-align: center;
}

.faq .section-heading h2 {
  margin: 0 auto;
  font-size: 28px;
}

.faq .section-heading a {
  position: absolute;
  right: 0;
  bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
}

details {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

details[open] {
  box-shadow: none;
}

summary {
  min-height: 54px;
  padding: 0;
  font-size: 15px;
}

details p {
  margin: 0 0 18px;
  font-size: 14px;
}

.final-cta {
  width: min(1380px, calc(100% - 72px));
  grid-template-columns: 145px 1fr 450px;
  min-height: 190px;
  margin-top: 36px;
  padding: 38px 64px;
  border-radius: 4px;
}

.final-cta > img {
  display: none;
}

.big-whatsapp {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
}

.big-whatsapp .wa-icon {
  width: 42px;
  height: 42px;
  margin: 0;
}

.final-cta h2 {
  max-width: 590px;
  font-size: 39px;
  text-wrap: balance;
}

.final-cta p {
  max-width: 550px;
  font-size: 16px;
}

.final-actions .primary-action {
  width: 100%;
}

.final-actions p {
  display: flex;
  gap: 34px;
  justify-content: center;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.site-footer {
  width: min(1380px, calc(100% - 72px));
  grid-template-columns: minmax(360px, 1fr) auto auto;
  gap: 54px;
  padding: 38px 0 44px;
  border-top: 1px solid rgba(30, 36, 33, 0.1);
}

.footer-brand {
  display: grid;
  grid-template-columns: 150px minmax(260px, 440px);
  gap: 34px;
  align-items: center;
}

.footer-brand img {
  width: 156px;
}

.footer-brand p,
.footer-copy {
  margin: 0;
  line-height: 1.45;
}

.footer-contact {
  display: flex;
  gap: 38px;
  align-items: center;
  white-space: nowrap;
}

.footer-copy {
  justify-self: end;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 20px 50px rgba(15, 107, 79, 0.35);
}

.floating-whatsapp .wa-icon {
  width: 30px;
  height: 30px;
  margin: 0;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section,
  .warranty,
  .faq,
  .final-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .site-header {
    top: 10px;
    grid-template-columns: 140px 1fr 44px;
  }

  .brand img {
    width: 118px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero h1 {
    margin-right: auto;
    margin-left: auto;
    font-size: 40px;
  }

  .hero-subcopy,
  .hero p.hero-subcopy {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-media {
    height: 360px;
    min-height: 360px;
    border-radius: 0 0 0 48px;
  }

  .hero-proof,
  .service-rail,
  .benefit-grid,
  .info-grid,
  .treatment-grid,
  .guarantee-grid,
  .process-list,
  .faq-grid,
  .result-section,
  .warranty,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .result-section {
    padding: 46px 20px;
    text-align: center;
  }

  .result-copy h2,
  .result-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-proof {
    justify-items: center;
  }

  .hero-proof span {
    width: min(260px, 100%);
    padding: 38px 0 0;
    text-align: center;
  }

  .hero-proof span::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .hero-proof span::after {
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }

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

  .service-item,
  .info-card,
  .treatment-card,
  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    text-align: center;
  }

  .info-card,
  .treatment-card {
    padding: 22px;
  }

  .service-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .benefit {
    padding: 38px 0 0;
    text-align: center;
  }

  .benefit::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .benefit::after {
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }

  .warranty {
    justify-items: center;
    text-align: center;
  }

  .warranty-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .process-list li {
    display: grid;
    justify-items: center;
  }

  .faq {
    width: calc(100% - 20px);
    padding: 34px 16px;
  }

  .faq .section-heading {
    margin-bottom: 24px;
    padding: 0 8px;
  }

  .faq .section-heading a {
    position: static;
    display: inline-block;
    margin-top: 14px;
  }

  .faq-grid {
    gap: 0;
  }

  summary {
    justify-content: center;
    min-height: 52px;
    text-align: center;
    line-height: 1.35;
  }

  summary::after {
    margin-left: 12px;
  }

  .final-cta .reveal,
  .faq .reveal {
    opacity: 1;
    transform: none;
  }

  .site-footer {
    gap: 24px;
    padding: 34px 0 44px;
    text-align: center;
  }

  .final-cta {
    justify-items: center;
    text-align: center;
  }

  .final-cta h2,
  .final-cta p {
    margin-right: auto;
    margin-left: auto;
  }

  .final-actions {
    width: 100%;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .footer-brand img {
    width: 154px;
  }

  .footer-brand p {
    max-width: 310px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }

  .footer-copy {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.12;
  }

  .section-heading h2,
  .result-copy h2,
  .warranty h2,
  .final-cta h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .faq .section-heading h2 {
    font-size: 26px;
  }

  .kicker {
    font-size: 11px !important;
    margin-bottom: 16px;
  }

  .warranty {
    gap: 22px;
    justify-items: center;
    padding: 34px 18px;
    overflow: hidden;
    text-align: center;
  }

  .warranty-mark {
    width: 104px;
    height: 104px;
    margin: 0 auto;
  }

  .warranty-mark strong {
    font-size: 52px;
  }

  .warranty h2 {
    max-width: 310px;
    margin: 0 auto;
    overflow-wrap: break-word;
  }

  .warranty-copy p {
    max-width: 310px;
  }

  .outline-action {
    width: min(100%, 300px);
    padding: 0 18px;
    text-align: center;
  }

  .final-cta h2 {
    max-width: 320px;
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .site-header.menu-active .nav {
    justify-items: start;
    text-align: left;
  }

  .site-header.menu-active .nav a {
    width: 100%;
    text-align: left;
  }

  .hero,
  .result-section,
  .service-item,
  .info-card,
  .treatment-card,
  .know-card,
  .benefit,
  .process-list li {
    text-align: left;
  }

  .hero h1,
  .hero-subcopy,
  .hero p.hero-subcopy,
  .result-copy h2,
  .result-copy p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-proof {
    justify-items: start;
  }

  .hero-proof span {
    width: 100%;
    padding: 0 0 0 42px;
    text-align: left;
  }

  .hero-proof span::before {
    left: 0;
    transform: rotate(45deg);
  }

  .hero-proof span::after {
    left: 9px;
    transform: rotate(-45deg);
  }

  .hero-actions {
    justify-content: start;
  }

  .service-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .benefit {
    padding: 0 0 0 38px;
  }

  .benefit::before {
    left: 0;
    transform: rotate(45deg);
  }

  .benefit::after {
    left: 8px;
    transform: rotate(-45deg);
  }

  .process-list li {
    justify-items: start;
  }

  .info-section,
  .treatment-section,
  .know-section,
  .guarantee-details {
    padding-top: 38px;
  }

  .info-card,
  .treatment-card {
    padding: 22px;
  }

  .info-card p,
  .treatment-card li,
  .know-card p {
    font-size: 14px;
  }

  .treatment-card ul {
    gap: 10px;
  }

  .know-card {
    padding: 30px 22px;
  }

  .know-card h2 {
    font-size: 26px;
  }

  .guarantee-grid .info-card {
    border-bottom: 1px solid var(--line);
  }
}

.warranty-mark {
  align-content: center;
  gap: 0;
}

.warranty-mark strong {
  line-height: 0.86;
}

.warranty-mark span {
  margin-top: 1px;
  line-height: 1;
}

@media (max-width: 640px) {
  .warranty-mark strong {
    line-height: 0.82;
  }

  .warranty-mark span {
    margin-top: 0;
  }
}
