:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --accent: #0d9488;
  --accent-2: #10b981;
  --accent-soft: #ccfbf1;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --header-bg: rgba(255, 255, 255, 0.82);
  --text-color: #0f172a;
  --text-muted: #64748b;
  --accent-color: #0d9488;
  --accent-light: #ccfbf1;
  --card-border: rgba(0, 0, 0, 0.06);
  --footer-bg: #0f172a;
  --footer-text: #94a3b8;
  --footer-heading: #f1f5f9;
  --tier-full: #059669;
  --tier-partial: #d97706;
  --tier-none: #94a3b8;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0f14;
    --surface: #141a22;
    --text: #e6edf3;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #2dd4bf;
    --accent-2: #34d399;
    --accent-soft: rgba(45, 212, 191, 0.14);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --header-bg: rgba(15, 23, 42, 0.88);
    --card-border: rgba(255, 255, 255, 0.06);
    --accent-light: rgba(13, 148, 136, 0.15);
    --footer-bg: #020617;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 1.1rem 3rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Header */
.home-logo-wrapper {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; min-width: 38px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(240,253,244,0.95));
  border: 1px solid rgba(52,211,153,0.25);
  box-shadow: 0 2px 10px rgba(52,211,153,0.15);
  flex-shrink: 0; margin-inline-end: 10px;
}
.home-logo-wrapper img { width: 28px; height: 28px; object-fit: contain; }
.smarteat-gradient {
  font-weight: 800; letter-spacing: 0.5px;
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 40%, #f9a8d4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.header {
  position: sticky; top: 0; width: 100%; height: 70px; z-index: 1000;
  background: var(--header-bg); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { display: inline-flex; align-items: center; text-decoration: none; }
.header-logo:hover, .footer-logo:hover { text-decoration: none; }
.header-logo .smarteat-gradient { font-size: 1.25rem; }
.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
  padding: 0.4rem 0.8rem; border-radius: 8px; text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--accent-color); background: var(--accent-light); text-decoration: none; }
.mobile-menu-toggle {
  display: none; cursor: pointer; padding: 0.5rem; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  background: none; border: none;
}
.hamburger { width: 22px; height: 16px; position: relative; }
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text-color);
  position: absolute; left: 0; transition: all 0.3s; border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 60px; left: 0; width: 100%;
  height: calc(100vh - 60px); background: var(--header-bg); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem; gap: 0.5rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 1.2rem; font-weight: 600; color: var(--text-color);
  padding: 0.8rem 1.5rem; border-radius: 12px; text-decoration: none;
}
@media (max-width: 768px) {
  .header { height: 60px; }
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* Hero */
.crumb { font-size: 0.82rem; color: var(--muted); padding: 1rem 0 0; }
.crumb a { color: var(--muted); }
.hero { padding: 1.6rem 0 0.4rem; text-align: center; }
.hero:has(.benefits) { padding-bottom: 0.25rem; }
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); background: var(--accent-soft);
  padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 0.85rem;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.55rem); line-height: 1.12; margin: 0 0 0.65rem; font-weight: 800; }
.lead { color: var(--muted); max-width: 680px; margin: 0 auto; font-size: 1.05rem; }
.benefits {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem;
  margin: 1.35rem 0 2rem;
}
.benefit {
  display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.84rem; font-weight: 600;
  color: var(--muted); background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.42rem 0.85rem;
}
.benefit i { color: var(--accent); }

/* Honesty disclosure */
.honesty-notice {
  display: flex; align-items: flex-start; justify-content: center; gap: 0.55rem;
  max-width: 720px; margin: 1.1rem auto 2rem; padding: 0.85rem 1.1rem;
  font-size: 0.86rem; line-height: 1.5; color: var(--muted); text-align: left;
  background: color-mix(in srgb, var(--accent-soft) 35%, var(--surface));
  border: 1px solid rgba(13, 148, 136, 0.18); border-radius: var(--radius);
}
.honesty-notice i { color: var(--accent); margin-top: 0.15rem; flex-shrink: 0; }

/* VS hero (detail pages) - text only */
.vs-hero {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center;
  margin: 1.75rem 0 1.25rem; padding: 1.5rem; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface) 0%, color-mix(in srgb, var(--accent-soft) 35%, var(--surface)) 100%);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.vs-hero-text .vs-app { padding: 1.25rem 0.85rem; }
.vs-app {
  text-align: center; padding: 1rem 0.75rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.vs-app.smarteat-side { border-color: rgba(13, 148, 136, 0.28); box-shadow: 0 0 0 1px rgba(13,148,136,0.06); }
.vs-app h2 { margin: 0 0 0.35rem; font-size: 1.15rem; font-weight: 800; }
.vs-app p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.45; }
.vs-badge {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.95rem; color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 8px 24px rgba(13,148,136,0.35); flex-shrink: 0;
}
@media (max-width: 640px) {
  .vs-hero { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.15rem; }
  .vs-badge { margin: 0 auto; order: -1; width: 44px; height: 44px; font-size: 0.85rem; }
}

/* Verdict */
.verdict {
  padding: 1.25rem 1.35rem; margin: 1.25rem 0 1.75rem;
  border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0;
  background: color-mix(in srgb, var(--accent-soft) 40%, var(--surface));
}
.verdict-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.4rem;
}
.verdict p { margin: 0; color: var(--text); font-size: 1.02rem; line-height: 1.55; }

/* Highlights */
.highlights {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem; margin: 0 0 1.75rem;
}
.highlight {
  padding: 1.1rem 1.15rem; display: flex; gap: 0.85rem; align-items: flex-start;
}
.highlight-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); font-size: 1rem;
}
.highlight h3 { margin: 0 0 0.25rem; font-size: 0.95rem; font-weight: 700; }
.highlight p { margin: 0; font-size: 0.86rem; color: var(--muted); line-height: 1.45; }

/* App insights (long-form sections) */
.insights-section { display: flex; flex-direction: column; gap: 0.85rem; margin: 0 0 1.75rem; }
.insights-block { padding: 1.25rem 1.35rem; }
.insights-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.65rem; margin-bottom: 0.75rem;
}
.insights-block h3 { margin: 0; font-size: 1.05rem; font-weight: 800; }
.insights-block p { margin: 0 0 0.75rem; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.insights-block p:last-child { margin-bottom: 0; }
.insights-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent); background: var(--accent-soft);
  padding: 0.18rem 0.45rem; border-radius: 999px; vertical-align: middle; margin-left: 0.35rem;
}

/* Score summary */
.score-summary { padding: 1rem 1.2rem; margin: 0 0 1rem; }
.score-summary-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.65rem; text-align: center;
}
.score-summary-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem;
}
.score-item {
  text-align: center; padding: 0.65rem 0.5rem; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700; border: 1px solid var(--border);
}
.score-item .score-num {
  display: block; font-size: 1.35rem; font-weight: 900; line-height: 1.2; margin-bottom: 0.15rem;
}
.score-item.winner-smarteat { background: color-mix(in srgb, var(--accent-soft) 50%, var(--surface)); color: var(--accent); }
.score-item.winner-competitor { background: color-mix(in srgb, var(--muted) 8%, var(--surface)); color: var(--text); }
.score-item.winner-tie { background: var(--bg); color: var(--muted); }
@media (max-width: 480px) {
  .score-summary-grid { grid-template-columns: 1fr; }
}

/* Winner badges */
.winner-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 0.28rem 0.55rem; border-radius: 999px; white-space: nowrap;
}
.winner-smarteat { background: color-mix(in srgb, var(--accent-soft) 70%, var(--surface)); color: #0f766e; border: 1px solid rgba(13,148,136,0.25); }
.winner-competitor { background: color-mix(in srgb, var(--muted) 12%, var(--surface)); color: var(--text); border: 1px solid var(--border); }
.winner-tie { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
@media (prefers-color-scheme: dark) {
  .winner-smarteat { color: var(--accent); }
}

/* Section headings */
.section-head { margin: 2rem 0 1rem; text-align: center; }
.section-head h2 { margin: 0 0 0.35rem; font-size: 1.35rem; font-weight: 800; }
.section-head p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Comparison table */
.table-wrap {
  overflow-x: auto; margin: 0 0 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
.cmp-table { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 0.9rem; }
.cmp-table thead th {
  position: sticky; top: 0; z-index: 2;
  padding: 0.95rem 1rem; text-align: left; font-weight: 800; font-size: 0.88rem;
  background: var(--surface); border-bottom: 2px solid var(--border);
}
.cmp-table thead th.col-smarteat {
  background: color-mix(in srgb, var(--accent-soft) 55%, var(--surface));
  color: var(--accent);
}
.cmp-table thead th.col-winner { width: 12%; text-align: center; }
.cmp-table tbody td.col-winner { text-align: center; vertical-align: middle; }
.th-brand {
  display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 800;
}
.cmp-table tbody th {
  padding: 0.85rem 1rem; text-align: left; font-weight: 600; width: 26%;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.cmp-table tbody td {
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top;
}
.cmp-table tbody tr:last-child th,
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td,
.cmp-table tbody tr:hover th { background: color-mix(in srgb, var(--accent-soft) 12%, transparent); }
.cmp-table .col-smarteat { background: rgba(13, 148, 136, 0.03); }
.feature-label { display: flex; align-items: center; gap: 0.5rem; }
.feature-label i { color: var(--accent); font-size: 0.85rem; width: 1rem; text-align: center; opacity: 0.85; }
.cell-inner { display: flex; align-items: flex-start; gap: 0.55rem; }
.tier-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: #fff;
}
.tier-dot.full { background: var(--tier-full); }
.tier-dot.partial { background: var(--tier-partial); }
.tier-dot.none { background: var(--tier-none); }
.cell-text { line-height: 1.45; }

/* Mobile feature cards (hidden on desktop) */
.cmp-cards { display: none; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
.cmp-card { padding: 1rem 1.1rem; }
.cmp-card-head { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.cmp-card-winner { margin-bottom: 0.65rem; }
.cmp-card-head i { color: var(--accent); }
.cmp-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.cmp-card-col { padding: 0.65rem 0.7rem; border-radius: 10px; background: var(--bg); border: 1px solid var(--border); }
.cmp-card-col.smarteat { border-color: rgba(13,148,136,0.22); }
.cmp-card-col-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.35rem; }
@media (max-width: 720px) {
  .table-wrap { display: none; }
  .cmp-cards { display: flex; }
}

/* Best for */
.best-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin: 0 0 1.75rem; }
.best-card { padding: 1.35rem 1.4rem; }
.best-card-head { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.85rem; }
.best-card-head .ico {
  width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; overflow: hidden;
}
.best-ico { background: var(--bg); border: 1px solid var(--border); color: var(--muted); }
.best-ico.smarteat { background: var(--accent-soft); border-color: rgba(13,148,136,0.22); color: var(--accent); }
.best-card h2 { margin: 0; font-size: 1.05rem; font-weight: 800; }
.best-list { list-style: none; margin: 0; padding: 0; }
.best-list li {
  position: relative; padding-left: 1.35rem; margin-bottom: 0.6rem;
  color: var(--muted); font-size: 0.92rem; line-height: 1.45;
}
.best-list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 0.15rem; font-size: 0.72rem; color: var(--accent);
}
.best-card.competitor .best-list li::before { color: var(--muted); content: "\f061"; }
.best-card.smarteat { border-color: rgba(13, 148, 136, 0.28); }

/* Index grid */
.compare-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem; margin: 2rem 0 1.5rem;
}
.compare-link {
  padding: 0; display: flex; flex-direction: column; color: var(--text);
  text-decoration: none; overflow: hidden; transition: transform .15s ease, box-shadow .15s ease;
}
.compare-link:hover { transform: translateY(-4px); text-decoration: none; box-shadow: 0 16px 40px rgba(15,23,42,0.12); }
.compare-link-top {
  padding: 1.35rem 1.35rem 1rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 30%, var(--surface)), var(--surface));
  border-bottom: 1px solid var(--border);
}
.compare-vs-row { display: flex; align-items: center; justify-content: center; gap: 0.65rem; margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.compare-vs-text .compare-name {
  font-size: 0.88rem; font-weight: 800; padding: 0.35rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface);
}
.compare-vs-text .compare-name.se { color: var(--accent); border-color: rgba(13,148,136,0.25); }
.compare-vs-text .compare-name.other { color: var(--text); }
.compare-vs-pill {
  font-size: 0.68rem; font-weight: 900; color: #fff; background: linear-gradient(135deg, #0f766e, #14b8a6);
  padding: 0.2rem 0.45rem; border-radius: 999px;
}
.compare-link h2 { margin: 0 0 0.4rem; font-size: 1.12rem; font-weight: 800; }
.compare-link-top:has(.compare-vs-row) { padding-bottom: 1.15rem; }
.compare-link-body { padding: 1rem 1.35rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.compare-link p { margin: 0 0 0.75rem; color: var(--muted); font-size: 0.92rem; flex: 1; }
.compare-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.85rem; }
.compare-tag {
  font-size: 0.72rem; font-weight: 600; padding: 0.22rem 0.55rem; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--border); color: var(--muted);
}
.compare-tag-insights {
  color: var(--accent); background: var(--accent-soft); border-color: rgba(13, 148, 136, 0.22); font-weight: 800;
}
.go { font-weight: 700; color: var(--accent); font-size: 0.88rem; }

.index-note {
  text-align: center; padding: 1.25rem 1.5rem; margin: 0 0 1.5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--muted); font-size: 0.92rem;
}

/* Share */
.share-row {
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
  margin: 1.25rem 0 0.5rem; flex-wrap: wrap;
}
.share-label { font-size: 0.82rem; font-weight: 600; color: var(--muted); margin: 0; }
.share-buttons { display: flex; gap: 0.45rem; }
.share-btn {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); color: var(--muted); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.95rem;
  transition: color .15s, border-color .15s, background .15s;
}
.share-btn:hover { color: var(--accent); border-color: var(--accent); }
.share-btn.is-copied { color: var(--tier-full); border-color: var(--tier-full); }

/* App download CTA - matches blog posts and recipes */
.app-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 2rem 0 1rem;
  padding: 2.8rem 1.6rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 45%, #2dd4bf 100%);
  color: #fff;
  box-shadow: 0 18px 50px rgba(13, 148, 136, 0.30);
}
.app-cta-content { position: relative; z-index: 1; }
.app-cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 0;
}
.app-cta-circle.c1 { width: 220px; height: 220px; top: -90px; right: -60px; animation: appCtaFloat 9s ease-in-out infinite; }
.app-cta-circle.c2 { width: 150px; height: 150px; bottom: -70px; left: -40px; animation: appCtaFloat 11s ease-in-out infinite reverse; }
.app-cta-circle.c3 { width: 90px; height: 90px; top: 30%; left: 12%; background: rgba(255, 255, 255, 0.07); animation: appCtaFloat 7s ease-in-out infinite; }
@keyframes appCtaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .app-cta-circle { animation: none; } }
.app-cta-logo {
  width: 84px; height: 84px; border-radius: 20px; margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.app-cta-logo img { width: 64px; height: 64px; object-fit: contain; }
.app-cta-trial {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin: 0 0 0.65rem; padding: 0.3rem 0.75rem; border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.app-cta h2 {
  margin: 0 0 0.5rem; font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.02em; color: #fff;
}
.app-cta p {
  margin: 0 auto 1.5rem; max-width: 540px; font-size: 1rem;
  line-height: 1.6; opacity: 0.95; color: #fff;
}
.store-badges {
  display: flex; gap: 0.9rem; justify-content: center;
  align-items: center; flex-wrap: wrap;
}
.store-badges a {
  display: inline-flex; line-height: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.store-badges a:hover {
  transform: translateY(-2px); opacity: 0.94; text-decoration: none;
}
.store-badges img { height: 54px; width: auto; display: block; }
.app-cta-rating {
  margin-top: 1.1rem; display: flex; gap: 1.2rem;
  justify-content: center; flex-wrap: wrap;
  font-size: 0.85rem; font-weight: 600; opacity: 0.95; color: #fff;
}
.app-cta-rating span { display: inline-flex; align-items: center; gap: 0.4rem; }
.app-cta-rating i { color: #fde68a; }
@media (max-width: 767px) {
  .app-cta { padding: 2rem 1.15rem; }
  .app-cta h2 { font-size: 1.35rem; }
  .store-badges img { height: 46px; }
  .app-cta-rating { gap: 0.75rem; font-size: 0.8rem; }
}

/* FAQ */
.faq-section { margin: 2.25rem 0 0.5rem; }
.faq-section .section-head { text-align: left; margin-bottom: 1rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px; background: var(--surface);
  margin-bottom: 0.6rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.15rem; font-weight: 600; list-style: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  margin-left: auto; font-size: 0.75rem; color: var(--muted); transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 1.15rem 1rem; color: var(--muted); font-size: 0.94rem; line-height: 1.55; }

/* Related + disclaimer */
.related { margin: 1.75rem 0 0.5rem; }
.related h2 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.65rem; }
.related-links { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.related-links a {
  display: inline-block; padding: 0.42rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  font-size: 0.86rem; font-weight: 600; text-decoration: none;
}
.related-links a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.disclaimer {
  font-size: 0.8rem; color: var(--muted); text-align: center; margin: 1.5rem auto 0;
  max-width: 640px; line-height: 1.5;
}

/* Trademark notice */
.trademark-notice {
  margin: 1.75rem 0 0.5rem; padding: 1.25rem 1.35rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: color-mix(in srgb, var(--muted) 6%, var(--surface));
}
.trademark-heading {
  margin: 0 0 0.65rem; font-size: 0.88rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.45rem; color: var(--text);
}
.trademark-heading i { color: var(--muted); font-size: 0.85rem; }
.trademark-text {
  margin: 0; font-size: 0.78rem; line-height: 1.55; color: var(--muted);
}

.updated-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; }

/* Footer */
.footer { background: var(--footer-bg); color: var(--footer-text); padding: 3rem 1.25rem 1.5rem; margin-top: 2rem; }
.footer-wrap { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; }
.footer-heading {
  color: var(--footer-heading); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 0.75rem;
}
.footer-link { display: block; color: var(--footer-text); font-size: 0.9rem; margin-bottom: 0.45rem; text-decoration: none; }
.footer-link:hover { color: #fff; text-decoration: none; }
.footer-about { font-size: 0.88rem; line-height: 1.55; max-width: 260px; margin: 0.5rem 0 0; }
.footer-logo { display: inline-flex; align-items: center; text-decoration: none; }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.08); margin: 2rem 0 1rem; }
.footer-bottom { text-align: center; }
.footer-copyright { font-size: 0.82rem; margin: 0; }
.social-icons { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.social-icons a {
  color: var(--footer-text); font-size: 1rem; width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(148,163,184,0.1); text-decoration: none;
}
.social-icons a:hover { color: #fff; background: var(--accent-color); }

/* Reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
  .compare-link:hover { transform: none; }
}
