/* ═══════════════════════════════════
   SearchCompared — style.css
   ═══════════════════════════════════ */

/* ── RESET & BASE ── */
section {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
}

footer,
header,
nav,
section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background-color: #fff;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: var(--text-color);
  line-height: 1.65;
}

:focus {
  outline: none;
}

:root {
  --text-color: #1a1a2e;
  --title-color: #0f172a;
  --main-color: #3b82f6;
  --green: #10b981;
  --border: #e5e5ea;
  --muted: #64748b;
  --light: #94a3b8;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover,
a:active {
  outline: 0;
}

p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--text-color);
  font-weight: 400;
}

h1 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--title-color);
}

h2,
h2 a {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--title-color);
}

h3,
h3 a {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--title-color);
}

h4,
h4 a {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--title-color);
}

h5,
h5 a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--title-color);
}

h6,
h6 a {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
  color: var(--title-color);
}

h1,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  font-family: "Poppins", system-ui, sans-serif;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal inside;
}

li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-color);
  list-style: none;
  font-family: "Poppins", system-ui, sans-serif;
}

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

/* ── LAYOUT ── */
.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── NAV ── */
.topnav {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topnav-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

.nav-links a:hover {
  color: var(--title-color);
}

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  margin-top: 36px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: #aaa;

}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.footer-links a {
  color: #888;
}

.footer-links a:hover {
  color: var(--title-color);
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 {
  transition-delay: .1s;
}

.fade-up-d2 {
  transition-delay: .2s;
}

.fade-up-d3 {
  transition-delay: .3s;
}

/* ── BG COLORS (shared) ── */
.bg-blue {
  background: linear-gradient(135deg, #1e3a5f, #1e293b);
}

.bg-green {
  background: linear-gradient(135deg, #064e3b, #1e293b);
}

.bg-amber {
  background: linear-gradient(135deg, #78350f, #1e293b);
}

.bg-purple {
  background: linear-gradient(135deg, #3b0764, #1e293b);
}

.bg-pink {
  background: linear-gradient(135deg, #831843, #1e293b);
}

.bg-red {
  background: linear-gradient(135deg, #7f1d1d, #1e293b);
}


/* ═══════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════ */

/* Hero */
.home-hero {
  background: #fff;
  border-bottom: 4px solid var(--main-color);
  position: relative;
  overflow: hidden;
}

.hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--main-color), var(--green));
}

.home-hero .hero {
  padding: 48px 0 52px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  max-width: 640px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--main-color);
  margin-bottom: 18px;
  background: #eff6ff;
  padding: 6px 14px;
  border-radius: 8px;
}

.home-hero h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--title-color);
  margin-bottom: 16px;
}

.home-hero h1 span {
  color: var(--main-color);
}

.home-hero p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.hero-stat .n {
  font-size: 28px;
  font-weight: 800;
  color: var(--title-color);
}

.hero-stat .l {
  font-size: 13px;
  color: var(--light);
  font-weight: 500;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--title-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .15);
}

.hero-cta:hover {
  background: #1e293b;
  color: #fff;
}

.hero-cta:active {
  transform: scale(.98);
}

.section-desc {
  font-size: 16px;
  color: #64748b;
  margin-top: -16px;
  margin-bottom: 28px;
  line-height: 1.6;
}


.featured-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.featured-img {
  position: relative;
  background-color: transparent;

}

.featured-img .fi-badge {
  z-index: 9;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.hv-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  margin-bottom: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.hv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.hv1 {
  border-left: 4px solid var(--main-color);
}

.hv2 {
  border-left: 4px solid #6366f1;
  margin-left: 16px;
}

.hv3 {
  border-left: 4px solid #0ea5e9;
  margin-left: 8px;
}

.hv-rank {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  background: var(--main-color);
}

.hv-rank.r2 {
  background: #6366f1;
}

.hv-rank.r3 {
  background: #0ea5e9;
}

.hv-info {
  flex: 1;
  min-width: 0;
}

.hv-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--title-color);
}

.hv-sub {
  font-size: 11px;
  color: var(--light);
  font-weight: 500;
}

.hv-score {
  font-size: 20px;
  font-weight: 800;
  color: var(--title-color);
  flex-shrink: 0;
}

.hv-score.s2 {
  color: #6366f1;
}

.hv-score.s3 {
  color: #0ea5e9;
}

.hv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 6px;
  margin-right: 6px;
}

.hv-card,
.hv-badge {
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn .5s ease forwards;
}

.hv1 {
  animation-delay: .2s;
}

.hv2 {
  animation-delay: .4s;
}

.hv3 {
  animation-delay: .6s;
}

.hv-b1 {
  animation-delay: .8s;
}

.hv-b2 {
  animation-delay: .9s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sections */
.section {
  padding: 48px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--main-color);
  margin-bottom: 8px;
}

.section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* Featured card */
.featured {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  transition: box-shadow .2s;
}

.featured:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.featured-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.featured-img .fi-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 12px;
  border-radius: 6px;
}

.featured-img .fi-title {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  padding: 0 20px;
  line-height: 1.3;
}

.featured-body {
  padding: 20px;
}

.featured-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.featured-body p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.featured-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #aaa;
  flex-wrap: wrap;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s;
  justify-content: center;
}

.featured-cta:hover {
  background: #2563eb;
  color: #fff;
}

/* Article grid */
.articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.article-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.ac-img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ac-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ac-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.ac-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  flex: 1;
}

.ac-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: #aaa;
}

.ac-read {
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
}

.ac-img-text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  text-align: center;
  padding: 0 16px;
  line-height: 1.3;
}

/* Load more */
.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: #fff;
  color: var(--title-color);
  border: 2px solid #e2e8f0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
}

.load-more-btn:hover {
  border-color: var(--light);
  background: #f8fafc;
}

.load-more-btn:active {
  transform: scale(.98);
}

/* About / Trust */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-card {
  background: #f8fafc;
  border: 1px solid #e5e5ea;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
}

.about-card .ac-icon {
  font-size: 48px;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 12px;
}

.about-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── TRUST SECTION ── */
.trust-header {
  margin-bottom: 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
}

.trust-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #10b981;
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
}

.trust-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.trust-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── STORY SECTION ── */
.story-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-facts {
  background: #f8fafc;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 28px;
}

.fact-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #3b82f6;
  margin-bottom: 20px;
}

.fact-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5ea;
  font-size: 15px;
}

.fact-row:last-child {
  border-bottom: none;
}

.fact-label {
  flex-shrink: 0;
  width: 160px;
  font-weight: 700;
  color: #0f172a;
}

.fact-value {
  color: #555;
  line-height: 1.5;
}

.ac-img {
  aspect-ratio: auto;
}

.ac-img img {
  height: auto;
}

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 768px) {
  .story-body {
    flex-direction: row;
  }

  .story-text {
    flex: 1;
  }

  .story-facts {
    flex-shrink: 0;
    width: 380px;
  }

  .trust-item {
    padding: 28px;
  }

  .trust-item h4 {
    font-size: 18px;
  }

  .about-card {
    padding: 40px 28px;
  }

  .about-card .ac-icon {
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .featured-thumb {
    object-fit: cover;
  }
}

/* Newsletter */
.newsletter {
  background: #1e293b;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
}

.newsletter h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter p {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}

.nl-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.nl-input:focus {
  border-color: rgba(255, 255, 255, .3);
}

.nl-btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: var(--main-color);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}


/* ═══════════════════════════════════
   COMPARISON PAGE
   ═══════════════════════════════════ */
.page-comparison {
  padding-bottom: 80px;
}

.page-comparison .wrap {
  max-width: 920px;
}

.page-comparison .topnav-inner {
  max-width: 920px;
}

/* Comparison hero (dark) */
.comp-hero {
  background: #1e293b;
  position: relative;

}

.comp-hero .hero {
  padding: 40px 0 52px;
  position: relative;
  z-index: 1;
}

.comp-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
}

.comp-hero .breadcrumb a {
  color: rgba(255, 255, 255, .55);
}

.comp-hero h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}

.comp-hero .subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  max-width: 640px;
}

.comp-hero .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--main-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.comp-hero .meta strong {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
}

/* Trust badges (dark hero) */
.trust-hero {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;

}

.trust-hero .th {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 10px 16px;
}

.trust-hero .th span:first-child {
  font-size: 16px;
}

/* Disclosure tooltip */
.disc-wrap {
  position: relative;
  cursor: pointer;
max-width: 1180px;
width: 100%;
margin: 0 auto;
padding-bottom: 24px;
padding-right: 16px;
text-align: right;
display: block;
}

.disc-trigger {
  color: rgba(255, 255, 255, .75);
  text-decoration-style: none!important;
  text-underline-offset: 0;
  transition: color .15s;
  font-size: 13px;
}

.disc-trigger:hover {
  color: rgba(255, 255, 255, .9);
}

.disc-popup {
  display: none;
  position: absolute;
  top: 100%;
  right: 16px;
  width: 300px;
  max-width: 85vw;
  background: #232f42;
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12.5px;
  line-height: 1.55;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
  z-index: 10;
}


.disc-wrap:hover .disc-popup,
.disc-wrap.open .disc-popup {
   display: block;
}

/* Verdict */
.verdict {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #6ee7b7;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 32px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, .08);
}

.verdict-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #047857;
  margin-bottom: 6px;
}

.verdict p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
}

.verdict strong {
  color: #047857;
}

/* Comparison cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.card.w {
  border: 3px solid var(--main-color);
  box-shadow: 0 6px 30px rgba(59, 130, 246, .1);
  padding-top: 32px;
}

.card.w::before {
  content: "Best overall";
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, .3);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-left {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rank-circle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  background: #f1f5f9;
  color: #334155;
  border: 2px solid #e2e8f0;
}

.card.w .rank-circle {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.card-logo-img {
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.card-logo-svg {
  height: 30px;
}

.card-mid {
  flex: 1;
  margin-bottom: 18px;
}

.card-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list .icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 3px;
  color: var(--green);
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid #f0f0f4;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.score-box {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  background: #fafafa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-box .num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--title-color);
}

.score-box .num .star {
  font-size: 18px;
}

.score-box .label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
}

.card.w .score-box {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.card.w .score-box .label {
  color: var(--main-color);
}

.free-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.35;
}

.visit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  transition: transform .12s, box-shadow .2s;
}

.visit-btn:active {
  transform: scale(.97);
}

.card.w .visit-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 6px 20px rgba(59, 130, 246, .3);
}

.card.w .visit-btn:hover {
  box-shadow: 0 8px 28px rgba(59, 130, 246, .4);
  color: #fff;
}

.card:not(.w) .visit-btn {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  box-shadow: 0 6px 20px rgba(99, 102, 241, .25);
}

.card:not(.w) .visit-btn:hover {
  box-shadow: 0 8px 28px rgba(99, 102, 241, .35);
  color: #fff;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: #aaa;
  margin-top: 14px;
}

.card-footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.editor-quote {
  font-size: 14px;
  color: #555;
  font-style: italic;
  line-height: 1.6;
  padding: 14px 16px;
  margin-top: 14px;
  background: #f0f9ff;
  border-left: 4px solid var(--main-color);
  border-radius: 0 10px 10px 0;
}

/* Reviews */
.reviews {
  padding-top: 40px;
  border-top: 2px solid var(--border);
}

.reviews>h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 28px;
}

.rev {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.rev:last-child {
  border-bottom: none;
}

.rev-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.rev-hd h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.rev-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  background: #eee;
  color: #666;
}

.rev-badge.gold {
  background: var(--main-color);
  color: #fff;
}

.rev-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 16px;
}

.rev-screenshot {
  width: 100%;
  aspect-ratio: 16/8;
  background: #f8fafc;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #9ca3af;
  overflow: hidden;
}

.rev-screenshot .ss-icon {
  font-size: 28px;
  opacity: .5;
}

.rev-screenshot .ss-text {
  font-size: 13px;
  font-weight: 500;
}

.rev-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.rev p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Pros/Cons */
.pc-section {
  margin: 24px 0;
}

.pc-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pc-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pc-col.pro h4 {
  color: #4ade80;
}

.pc-col.con h4 {
  color: #f87171;
}

.pc-col ul {
  list-style: none;
  padding: 0;
}

.pc-col li {
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #444;
}

.pc-col li .ico {
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 1px;
}

.pc-col.con li .ico {
  color: red;
}

/* Method / FAQ */
.method {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  margin: 40px 0;
}

.method h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.method p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.faq {
  margin: 40px 0;
}

.faq h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-i {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-weight: 600;
  font-size: 16px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  color: #bbb;
  flex-shrink: 0;
}

.faq-i.open .faq-q::after {
  content: "−";
}

.faq-a {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s, padding .3s;
}

.faq-i.open .faq-a {
  max-height: 300px;
  padding-bottom: 16px;
}

/* Sticky bar */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform .25s ease;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, .06);
}

.sticky.show {
  transform: translateY(0);
}

.sticky-in {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-info {
  flex: 1;
  min-width: 0;
}

.sticky-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-badge {
  font-size: 13px;
  font-weight: 800;
  background: var(--green);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

.sticky-name {
  font-weight: 700;
  font-size: 16px;
}

.sticky-sub {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.sticky-btn {
  flex-shrink: 0;
  background: var(--main-color);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .03em;
  -webkit-tap-highlight-color: transparent;
}

.sticky-btn:hover {
  color: #fff;
}

.rev-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 28px;
  margin-top: 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 16px rgba(59, 130, 246, .25);
  transition: box-shadow .2s, transform .12s;
  position: relative;
  z-index: 2;
}

.rev-cta:hover {
  box-shadow: 0 8px 28px rgba(59, 130, 246, .35);
  color: #fff;
}

.rev-cta:active {
  transform: scale(.98);
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

/* Shared */
@media (min-width: 640px) {
  .articles {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 700px) {

  /* Comparison page */
  .page-comparison .wrap {
    padding: 0 28px;
  }

  .comp-hero h1 {
    font-size: 38px;
  }

  .comp-hero .hero {
    padding: 52px 0 64px;
  }

  .comp-hero .subtitle {
    font-size: 18px;
  }

  .card {
    padding: 28px 24px;
  }

  .card.w {
    padding: 32px 28px;
  }

  .card-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .card-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
  }

  .rank-circle {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .card-mid {
    flex: 1;
  }

  .card-right {
    min-width: 180px;
    width: auto;
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    align-items: center;
  }

  .score-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .score-box {
    flex-direction: column;
    padding: 14px 22px;
    gap: 0;
    width: 100%;
  }

  .score-box .num {
    font-size: 38px;
  }

  .score-box .label {
    margin-top: 4px;
  }

  .visit-btn {
    width: 100%;
  }

  .pc-card {
    grid-template-columns: 1fr 1fr;
  }

  .rev-hd h3 {
    font-size: 24px;
  }
}

@media (min-width: 768px) {

  /* Shared */
  .wrap {
    padding: 0 28px;
  }

  .topnav {
    padding: 16px 28px;
  }

  .site-name {
    font-size: 20px;
  }

  .nav-links {
    font-size: 15px;
    gap: 24px;
  }

  .footer-inner {
    padding: 0 28px;
  }

  /* Homepage */
  .home-hero h1 {
    font-size: 36px;
  }

  .home-hero p {
    font-size: 18px;
  }

  .hero-stat .n {
    font-size: 30px;
  }

  .featured-img {
    width: 100%;

    height: 100%;
  }



  .home-hero .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex-shrink: 0;
    width: 340px;
    max-width: none;
  }

  .hero-stat .n {
    font-size: 34px;
  }

  .hero-stat .l {
    font-size: 14px;
  }

  .hero-cta {
    font-size: 17px;
    padding: 18px 36px;
  }

  .section h2 {
    font-size: 30px;
  }

  .featured {
    flex-direction: column;
  }


  .featured-body {
     padding: 16px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .featured-body h3 {
    font-size: 26px;
  }

  .featured-body p {
    font-size: 16px;
  }

  .featured-cta {
    font-size: 16px;
    padding: 14px 28px;
  }

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

  .ac-body {
    padding: 20px;
  }

  .about-card {
    padding: 28px;
  }

  .about-card h4 {
    font-size: 18px;
  }

  .about-card p {
    font-size: 15px;
  }

  .newsletter {
    padding: 56px 40px;
  }

  .newsletter h3 {
    font-size: 28px;
  }

  .newsletter p {
    font-size: 16px;
  }

  .nl-form {
    max-width: 480px;
    flex-direction: row;
  }

  .nl-input {
    padding: 14px 18px;
    font-size: 15px;
  }

  .nl-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (min-width: 920px) {

  /* Comparison page */
  .card-logo-img {
    height: 52px;
    max-width: 220px;
  }

  .card-logo-svg {
    height: 48px;
  }

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

  .card-name {
    font-size: 26px;
  }

  .rank-circle {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .check-list li {
    font-size: 16px;
  }

  .score-box .num {
    font-size: 42px;
  }

  .visit-btn {
    font-size: 15px;
    padding: 16px 32px;
  }

  .rev p {
    font-size: 17px;
  }

  .pc-col li {
    font-size: 16px;
  }
}

@media (min-width: 1060px) {

  /* Homepage */
  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero p {
    font-size: 18px;
  }

  .home-hero .hero {
    padding: 72px 0 80px;
  }

  .hero-stat .n {
    font-size: 38px;
  }

  .hero-visual {
    width: 360px;
  }

  .section h2 {
    font-size: 34px;
  }

  .featured-body h3 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .featured-img {
    width: 55% !important;

  }

  .featured {
    flex-direction: row !important;
  }

}

/* ── INFO PAGES (About, Methodology, Privacy, Terms, Contact) ── */
.info-hero {
  background: #1e293b;
  padding: 52px 0 60px;
  text-align: center;
}

.info-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.info-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  max-width: 600px;
  margin: 0 auto;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px;
}

.info-updated {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 32px;
}

.info-section {
  margin-bottom: 44px;
}

.info-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e5ea;
}

.info-section p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.info-section ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.info-section ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

.info-highlight {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  color: #1e40af;
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

.info-highlight-warn {
  background: #fefce8;
  border-left: 4px solid #ca8a04;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  color: #713f12;
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

/* About — Stats */
.info-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.info-stat {
  background: #f8fafc;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}

.info-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: #3b82f6;
}

.info-stat .label {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* About — Values */
.info-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.info-value {
  background: #f8fafc;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 22px;
}

.info-value h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.info-value p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* About — Team note */
.info-quote {
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  color: #1e40af;
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  margin: 28px 0;
}

/* Methodology — Criteria */
.info-criteria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.info-criterion {
  background: #f8fafc;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 20px;
}

.info-criterion .weight {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 10px;
}

.info-criterion h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.info-criterion p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Methodology — Steps */
.info-steps {
  margin: 24px 0;
}

.info-step {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.info-step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #3b82f6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.info-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.info-step p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Methodology — Score table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.info-table th {
  background: #1e293b;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}

.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5ea;
  font-size: 14px;
  color: #444;
}

.info-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* Contact — Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: #f8fafc;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
}

.contact-card .c-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

.contact-card a {
  color: #3b82f6;
}

.contact-note {
  background: #eff6ff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #1e40af;
  margin-top: 8px;
}

/* Contact — Form */
.contact-form h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a2e;
  background: #fff;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-btn {
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
  font-family: inherit;
}

.form-btn:hover {
  background: #2563eb;
}

.form-note {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 10px;
  text-align: center;
}

.form-note a {
  color: #3b82f6;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-values {
    grid-template-columns: 1fr;
  }

  .info-criteria {
    grid-template-columns: 1fr;
  }

  .info-hero h1 {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  .info-hero {
    padding: 64px 0 72px;
  }

  .info-hero h1 {
    font-size: 38px;
  }

  .info-hero p {
    font-size: 18px;
  }

  .info-content {
    padding: 60px 28px;
  }
}