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

:root {
  --teal: #18B19C;
  --teal-dark: #0a7f70;
  --ink: #111;
  --text: #242424;
  --muted: #646b73;
  --line: rgba(17, 17, 17, 0.12);
  --dark: #0d0f10;
  --dark-2: #171a1c;
  --white: #fff;
  --soft: #f4f7f6;
  --mint: #e9f8f5;
  --gold: #f3bd3f;
  --radius: 8px;
  --max: 1180px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
}

body {
  line-height: 1.6;
}

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

a {
  color: inherit;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  background-color: rgba(0, 0, 0, 0.72);
  height: 40px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
  margin: 0 5px;
  line-height: 1;
}

.nav-links a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--teal);
}

header nav .nav-links .buy-now-button {
  display: inline-block;
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 25px;
  background-color: var(--teal-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 30px;
  color: #fff;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.container.narrow {
  width: min(calc(100% - 32px), 850px);
}

.comparison-page {
  background: var(--white);
}

.comparison-page h1,
.comparison-page h2,
.comparison-page h3 {
  margin: 0;
  color: inherit;
  line-height: 1.05;
  letter-spacing: 0;
}

.comparison-page h1 {
  max-width: 920px;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  font-weight: 900;
}

.comparison-page h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 850;
}

.comparison-page h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 750;
}

.comparison-page p,
.comparison-page li,
.comparison-page td,
.comparison-page th {
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(24, 177, 156, 0.3);
  border-radius: 999px;
  background: rgba(24, 177, 156, 0.11);
  color: #064f46;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.section-dark .kicker,
.comparison-hero .kicker,
.final-cta .kicker {
  color: #bff5ec;
  background: rgba(24, 177, 156, 0.13);
  border-color: rgba(191, 245, 236, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 177, 156, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.section-light .btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.comparison-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: end;
  padding: 110px 0 76px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.64) 45%, rgba(0, 0, 0, 0.26) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-answer {
  max-width: 770px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 500;
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-row li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 650;
}

.answer-band {
  padding: 34px 0;
  background: var(--teal);
  color: #fff;
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: center;
}

.answer-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.answer-grid p {
  margin: 0;
  font-weight: 550;
}

.section {
  padding: clamp(62px, 8vw, 108px) 0;
}

.section-light {
  background: #fff;
  color: var(--ink);
}

.section-light:nth-of-type(odd) {
  background: var(--soft);
}

.section-dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}

.section-visual {
  background: #f1f5f4;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 32px;
}

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

.section-heading p {
  max-width: 800px;
  margin: 14px 0 0;
  color: var(--muted);
}

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 38, 42, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

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

.comparison-table th {
  background: #101315;
  color: #fff;
  font-weight: 850;
}

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

.winner-row td {
  background: var(--mint);
}

.verdict {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.verdict.best {
  color: #063f37;
  background: #baf4ea;
}

.verdict.mid {
  color: #4a3a07;
  background: #fff0b8;
}

.verdict.support {
  color: #0e4662;
  background: #d9effa;
}

.verdict.low {
  color: #622018;
  background: #ffe0dc;
}

.split,
.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.visual-grid {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.copy-block p {
  margin: 18px 0 0;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce3e1;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.17);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel.tall img {
  aspect-ratio: 4 / 5;
}

.image-panel.full-image {
  background: #eef4f2;
  padding: 12px;
}

.image-panel.full-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.feature-list a {
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.option-grid,
.vs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.option-card,
.vs-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 38, 42, 0.06);
}

.option-card,
.vs-grid article {
  padding: 22px;
}

.option-card.is-winner {
  border-color: rgba(24, 177, 156, 0.45);
  background: var(--mint);
}

.option-rank {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-card p:not(.option-rank),
.vs-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.option-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.price-block {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.price-block span {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.price-block p {
  margin-top: 4px;
}

.faq-section {
  border-top: 1px solid var(--line);
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-list a {
  color: var(--teal-dark);
  font-weight: 800;
}

.final-cta {
  padding: clamp(58px, 7vw, 92px) 0;
  background: #101315;
  color: #fff;
}

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

.final-inner p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  position: relative;
  padding: 40px 20px;
  background-color: #333;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav,
.footer-social,
.footer-info {
  flex: 1 1 calc(33.33% - 20px);
  min-width: 200px;
}

.footer-nav h3,
.footer-social h3,
.footer-info h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-nav ul,
.footer-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav ul li,
.footer-social ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
  color: var(--teal);
}

.footer-info {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-info p {
  margin: 10px 0;
}

.footer-info a {
  color: var(--teal);
  text-decoration: none;
}

.footer-bottom {
  width: 100%;
  margin-top: 40px;
  color: #bbb;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.footer-year {
  color: #ccc;
  font-weight: 500;
}

.footer-rights {
  color: #bbb;
  font-weight: 300;
}

.footer-divider {
  margin: 0 0.3rem;
  color: #999;
}

.footer-chat {
  margin-top: 14px;
}

.rf-chatbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #0c2b27;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(2, 24, 43, 0.18);
}

.rf-chatbtn-chat {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: #09443c;
  font-weight: 800;
}

@media (min-width: 768px) {
  .footer-chat {
    position: absolute;
    right: 18px;
    bottom: 18px;
    margin-top: 0;
    text-align: right;
  }
}

@media (max-width: 980px) {
  .answer-grid,
  .split,
  .visual-grid,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .final-inner {
    display: grid;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 2000;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1500;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.92);
    transform: translateY(-100%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .nav-links li a {
    font-size: 2rem;
    font-weight: 800;
  }

  header nav .nav-links .buy-now-button {
    margin: 10px auto;
    padding: 14px 32px;
    font-size: 1.1rem;
  }

  .comparison-hero {
    min-height: 640px;
    padding-top: 92px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.63) 100%);
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .option-grid,
  .vs-grid {
    grid-template-columns: 1fr;
  }

  .comparison-page h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .proof-row li {
    width: calc(50% - 4px);
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
