/*
Theme Name: SimplyCompare Landing
Theme URI: https://simplycompare.app
Author: DKB Media
Author URI: https://simplycompare.app
Description: Landing page theme for SimplyCompare — beautiful product comparison tables for Shopify.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simplycompare
*/

/* ─── Reset + Variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a1a2e;
  --navy-light: #252542;
  --green:  #34c759;
  --green-dark: #28a847;
  --red:    #ff3b30;
  --white:  #ffffff;
  --grey-bg: #f5f7fa;
  --grey-border: #e4e7ec;
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────────── */
.sc-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  padding: 0 24px;
}
.sc-nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.sc-nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
}
.sc-nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.sc-nav-logo-icon svg { width: 18px; height: 18px; }
.sc-nav-logo-text { font-weight: 700; font-size: 18px; letter-spacing: -.3px; }
.sc-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.sc-nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.sc-nav-links a:hover { color: var(--navy); }
.sc-btn-nav {
  background: var(--green); color: var(--white);
  padding: 8px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.sc-btn-nav:hover { background: var(--green-dark); color: var(--white); }

/* ─── UTILITY ─────────────────────────────────────────── */
.sc-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sc-section { padding: 96px 0; }
.sc-section-sm { padding: 64px 0; }
.sc-section-grey { background: var(--grey-bg); }

.sc-section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.sc-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -.5px;
  color: var(--navy); line-height: 1.2;
  margin-bottom: 16px;
}
.sc-section-sub {
  font-size: 18px; color: var(--text-muted);
  max-width: 560px; line-height: 1.65;
}
.sc-section-header { text-align: center; margin-bottom: 60px; }
.sc-section-header .sc-section-sub { margin: 0 auto; }

.sc-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 14px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(52,199,89,.35);
}
.sc-btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52,199,89,.4);
}
.sc-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 600;
  text-decoration: none; border: 2px solid var(--navy);
  transition: all .2s;
}
.sc-btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ─── HERO ────────────────────────────────────────────── */
.sc-hero {
  background: linear-gradient(160deg, #0d0d1a 0%, #1a1a2e 55%, #1e2445 100%);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.sc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 70% 50%, rgba(52,199,89,.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 20% 80%, rgba(52,199,89,.05) 0%, transparent 70%);
}
.sc-hero-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  position: relative;
}
.sc-hero-content { max-width: 620px; margin-bottom: 64px; }
.sc-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52,199,89,.12); border: 1px solid rgba(52,199,89,.25);
  color: #6ee28f; border-radius: 100px;
  padding: 6px 14px; font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
}
.sc-hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(52,199,89,.3);
  animation: sc-pulse 2s infinite;
}
@keyframes sc-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(52,199,89,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(52,199,89,.1); }
}
.sc-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900; letter-spacing: -1.5px;
  color: var(--white); line-height: 1.1;
  margin-bottom: 22px;
}
.sc-hero h1 em { font-style: normal; color: var(--green); }
.sc-hero-sub {
  font-size: 19px; color: rgba(255,255,255,.72);
  line-height: 1.65; margin-bottom: 36px;
  max-width: 560px;
}
.sc-hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sc-hero-note {
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-top: 16px;
}

/* Hero Demo Table */
.sc-hero-demo-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px 20px 0 0;
  padding: 28px 28px 0;
  overflow: hidden;
}
.sc-hero-demo-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.sc-hero-demo-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.sc-hero-demo-dot:nth-child(1) { background: #ff5f57; }
.sc-hero-demo-dot:nth-child(2) { background: #febc2e; }
.sc-hero-demo-dot:nth-child(3) { background: #28c840; }
.sc-hero-demo-url {
  flex: 1; background: rgba(255,255,255,.08); border-radius: 6px;
  padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,.4);
  font-family: monospace; margin-left: 8px;
}

.sc-demo-table-wrap {
  overflow-x: auto;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.sc-demo-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-size: 14px;
  min-width: 560px;
}
.sc-demo-table thead th {
  background: var(--navy); color: var(--white);
  padding: 16px 20px; text-align: left;
  font-size: 13px; font-weight: 700;
}
.sc-demo-table thead th:first-child {
  background: #0f0f1f; color: rgba(255,255,255,.5);
  font-size: 11px; text-transform: uppercase; letter-spacing: .8px;
  width: 160px;
}
.sc-demo-table thead th.sc-featured {
  background: #14142a;
  position: relative;
}
.sc-demo-table thead th.sc-featured::after {
  content: 'POPULAR';
  position: absolute; top: 0; right: 0;
  background: var(--green); color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 7px; border-radius: 0 0 0 6px;
}
.sc-demo-table tbody td {
  padding: 13px 20px; border-bottom: 1px solid #f0f0f0;
  color: var(--text-main);
}
.sc-demo-table tbody td:first-child {
  font-weight: 600; font-size: 13px;
  color: var(--text-muted); background: #fafafa;
}
.sc-demo-table tbody tr:hover td { background: #f9fffe; }
.sc-demo-table tbody tr:hover td:first-child { background: #f0f0f0; }

.sc-icon-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(52,199,89,.15);
}
.sc-icon-yes svg { width: 14px; height: 14px; stroke: var(--green); stroke-width: 2.5; }
.sc-icon-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,59,48,.12);
}
.sc-icon-no svg { width: 14px; height: 14px; stroke: var(--red); stroke-width: 2.5; }
.sc-icon-star { color: #f59e0b; font-size: 15px; letter-spacing: -2px; }

/* ─── SOCIAL PROOF ────────────────────────────────────── */
.sc-proof { padding: 28px 0; border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); }
.sc-proof-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 36px;
}
.sc-proof-divider { width: 1px; height: 24px; background: var(--grey-border); }
.sc-proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted); font-weight: 500;
}
.sc-proof-item svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
.sc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; position: relative;
}
.sc-steps::before {
  content: '';
  position: absolute; top: 36px; left: calc(33% - 12px);
  width: calc(34% + 24px); height: 2px;
  background: linear-gradient(90deg, var(--grey-border), var(--green), var(--grey-border));
  display: none;
}
@media (min-width: 900px) { .sc-steps::before { display: block; } }

.sc-step { text-align: center; }
.sc-step-num-wrap {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.sc-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: .5px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 8px rgba(26,26,46,.08);
}
.sc-step-num svg { width: 28px; height: 28px; }
.sc-step h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.sc-step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.sc-step-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--green); margin-bottom: 8px;
}

/* ─── FEATURES ────────────────────────────────────────── */
.sc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.sc-feature-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.sc-feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(52,199,89,.3);
}
.sc-feature-icon {
  width: 48px; height: 48px;
  background: rgba(26,26,46,.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sc-feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--navy); stroke-width: 1.75;
  fill: none;
}
.sc-feature-card h3 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.sc-feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ─── DEMO SECTION ────────────────────────────────────── */
.sc-demo-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 768px) { .sc-demo-section { grid-template-columns: 1fr; gap: 40px; } }

.sc-demo-screen {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.sc-demo-screen-bar {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.sc-dsb-dot { width: 10px; height: 10px; border-radius: 50%; }
.sc-dsb-dot:nth-child(1) { background: #ff5f57; }
.sc-dsb-dot:nth-child(2) { background: #febc2e; }
.sc-dsb-dot:nth-child(3) { background: #28c840; }
.sc-demo-screen-content {
  background: var(--white); border-radius: 8px;
  overflow: hidden; border: 1px solid var(--grey-border);
}
.sc-mini-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sc-mini-table thead th {
  background: var(--navy); color: var(--white);
  padding: 10px 14px; text-align: left;
  font-size: 12px; font-weight: 600;
}
.sc-mini-table thead th:first-child {
  background: #0f0f1f; color: rgba(255,255,255,.5);
  font-size: 11px;
}
.sc-mini-table tbody td {
  padding: 10px 14px; border-bottom: 1px solid #f0f0f0;
  font-size: 13px; color: var(--text-main);
}
.sc-mini-table tbody td:first-child {
  font-weight: 600; font-size: 12px;
  color: var(--text-muted); background: #fafafa;
}
.sc-filter-bar {
  display: flex; gap: 8px; padding: 12px 14px;
  background: #f9f9f9; border-bottom: 1px solid var(--grey-border);
  flex-wrap: wrap;
}
.sc-filter-pill {
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600; cursor: pointer;
  border: 1px solid var(--grey-border); background: var(--white);
  color: var(--text-muted);
}
.sc-filter-pill.active {
  background: var(--green); color: var(--white); border-color: var(--green);
}

.sc-demo-benefits h2 {
  font-size: clamp(24px, 3.5vw, 34px); font-weight: 800;
  letter-spacing: -.5px; color: var(--navy); margin-bottom: 24px;
}
.sc-benefit-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.sc-benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.sc-benefit-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.sc-benefit-check svg { width: 12px; height: 12px; stroke: white; stroke-width: 3; fill: none; }
.sc-benefit-item p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.sc-benefit-item strong { color: var(--text-main); }

/* ─── PRICING ─────────────────────────────────────────── */
.sc-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1020px; margin: 0 auto;
}
@media (max-width: 860px) {
  .sc-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
.sc-pricing-card {
  background: var(--white); border: 2px solid var(--grey-border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  transition: box-shadow .25s;
}
.sc-pricing-card:hover { box-shadow: var(--shadow-lg); }
.sc-pricing-card.sc-pricing-featured {
  border-color: var(--navy); background: var(--navy);
  color: var(--white);
}
.sc-pricing-card .sc-plan-name {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.sc-pricing-card.sc-pricing-featured .sc-plan-name { color: rgba(255,255,255,.6); }
.sc-pricing-card .sc-price {
  font-size: 48px; font-weight: 900; letter-spacing: -2px;
  color: var(--navy); margin-bottom: 4px; line-height: 1;
}
.sc-pricing-card.sc-pricing-featured .sc-price { color: var(--white); }
.sc-pricing-card .sc-price sup { font-size: 24px; font-weight: 700; letter-spacing: 0; vertical-align: top; margin-top: 8px; display: inline-block; }
.sc-pricing-card .sc-price-note { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.sc-pricing-card.sc-pricing-featured .sc-price-note { color: rgba(255,255,255,.55); }
.sc-pricing-divider { border: none; border-top: 1px solid var(--grey-border); margin: 24px 0; }
.sc-pricing-card.sc-pricing-featured .sc-pricing-divider { border-color: rgba(255,255,255,.15); }
.sc-pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sc-pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-muted);
}
.sc-pricing-card.sc-pricing-featured .sc-pricing-features li { color: rgba(255,255,255,.8); }
.sc-pricing-features li svg { width: 16px; height: 16px; stroke: var(--green); stroke-width: 2.5; fill: none; flex-shrink: 0; }
.sc-pricing-card.sc-pricing-featured .sc-pricing-features li svg { stroke: #6ee28f; }
.sc-pricing-badge {
  display: inline-block;
  background: var(--green); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
  margin-bottom: 16px;
}
.sc-btn-pricing-free {
  display: block; text-align: center;
  border: 2px solid var(--navy); color: var(--navy);
  padding: 13px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: all .2s;
}
.sc-btn-pricing-free:hover { background: var(--navy); color: var(--white); }
.sc-btn-pricing-pro {
  display: block; text-align: center;
  background: var(--green); color: var(--white);
  padding: 13px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: background .2s;
  box-shadow: 0 4px 14px rgba(52,199,89,.4);
}
.sc-btn-pricing-pro:hover { background: var(--green-dark); }
.sc-pricing-note {
  text-align: center; margin-top: 28px;
  font-size: 14px; color: var(--text-muted);
}

/* ─── FAQ ─────────────────────────────────────────────── */
.sc-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.sc-faq-item {
  border: 1px solid var(--grey-border); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s;
}
.sc-faq-item.open { border-color: rgba(26,26,46,.2); }
.sc-faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--navy);
  background: var(--white); border: none; width: 100%; text-align: left;
  font-family: inherit;
  transition: background .2s; gap: 16px;
}
.sc-faq-question:hover { background: var(--grey-bg); }
.sc-faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: var(--text-muted); stroke-width: 2; fill: none;
  transition: transform .3s;
}
.sc-faq-item.open .sc-faq-chevron { transform: rotate(180deg); stroke: var(--navy); }
.sc-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.sc-faq-item.open .sc-faq-answer { max-height: 200px; padding: 0 24px 20px; }
.sc-faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ─── BADGE SECTION ───────────────────────────────────── */
.sc-badge-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 768px) { .sc-badge-section { grid-template-columns: 1fr; gap: 40px; } }

.sc-badge-demo-wrap {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sc-badge-demo-header {
  background: var(--grey-bg);
  border-bottom: 1px solid var(--grey-border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
}
.sc-badge-demo-header-dot { width: 10px; height: 10px; border-radius: 50%; }
.sc-badge-demo-header-dot:nth-child(1) { background: #ff5f57; }
.sc-badge-demo-header-dot:nth-child(2) { background: #febc2e; }
.sc-badge-demo-header-dot:nth-child(3) { background: #28c840; }

.sc-badge-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sc-badge-table thead tr th {
  background: var(--navy); color: var(--white);
  padding: 0; text-align: center;
  font-size: 13px; font-weight: 700;
  vertical-align: bottom;
}
.sc-badge-table thead tr th:first-child {
  background: #0f0f1f; color: rgba(255,255,255,.45);
  font-size: 11px; text-transform: uppercase; letter-spacing: .8px;
  text-align: left; padding: 14px 18px; vertical-align: middle;
}
.sc-badge-th-inner {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 12px 14px;
}
.sc-badge-th-inner.has-badge { padding-top: 0; }
.sc-badge-pill {
  display: inline-block;
  background: var(--green); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(52,199,89,.4);
}
.sc-badge-table tbody td {
  padding: 11px 18px; border-bottom: 1px solid #f0f0f0;
  color: var(--text-main); text-align: center; font-size: 14px;
}
.sc-badge-table tbody td:first-child {
  font-weight: 600; font-size: 13px;
  color: var(--text-muted); background: #fafafa; text-align: left;
}
.sc-badge-table tbody tr td.sc-highlighted { background: rgba(52,199,89,.04); }
.sc-badge-table tbody tr:last-child td { border-bottom: none; }

.sc-badge-copy h2 {
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 800;
  letter-spacing: -.5px; color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.sc-badge-copy p {
  font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
}
.sc-badge-examples {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.sc-badge-example-pill {
  display: inline-block;
  background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 6px;
}
.sc-badge-example-pill.green { background: var(--green); }
.sc-badge-example-pill.outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--grey-border); font-weight: 600;
}

/* ─── CTA BANNER ──────────────────────────────────────── */
.sc-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #252560 100%);
  padding: 96px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.sc-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(52,199,89,.1) 0%, transparent 70%);
}
.sc-cta-banner > * { position: relative; }
.sc-cta-banner h2 {
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 900;
  letter-spacing: -1px; color: var(--white); margin-bottom: 16px;
}
.sc-cta-banner p {
  font-size: 18px; color: rgba(255,255,255,.65); margin-bottom: 36px;
}
.sc-cta-banner .sc-btn-primary { font-size: 17px; padding: 16px 32px; }
.sc-cta-banner-note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px; }

/* ─── FOOTER ──────────────────────────────────────────── */
.sc-footer {
  background: #0d0d18; padding: 40px 24px;
  text-align: center;
}
.sc-footer-inner { max-width: 1120px; margin: 0 auto; }
.sc-footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.sc-footer-logo-icon {
  width: 28px; height: 28px; background: rgba(255,255,255,.1);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
}
.sc-footer-logo-icon svg { width: 16px; height: 16px; }
.sc-footer-logo-text { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8); }
.sc-footer-tagline { font-size: 13px; color: rgba(255,255,255,.3); margin-bottom: 24px; }
.sc-footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.sc-footer-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.sc-footer-links a:hover { color: rgba(255,255,255,.75); }
.sc-footer-help { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 20px; margin-bottom: 16px; }
.sc-footer-help a { color: rgba(255,255,255,.7); text-decoration: underline; }
.sc-footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }

/* ─── LEGAL PAGES (Privacy, Terms) ────────────────────── */
.sc-legal-page {
  padding: 48px 24px 96px;
  background: var(--white);
}
.sc-legal-container {
  max-width: 720px;
  margin: 0 auto;
}
.sc-legal-back {
  display: inline-block;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  margin-bottom: 32px;
  transition: color .2s;
}
.sc-legal-back:hover { color: var(--navy); }
.sc-legal-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -.5px;
  color: var(--navy); line-height: 1.2;
  margin-bottom: 8px;
}
.sc-legal-updated {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 36px;
}
.sc-legal-page h2 {
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-top: 36px; margin-bottom: 12px;
}
.sc-legal-page p {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 16px;
}
.sc-legal-page ul {
  list-style: none; padding: 0;
  margin-bottom: 16px;
}
.sc-legal-page ul li {
  position: relative;
  padding-left: 20px;
  font-size: 16px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 8px;
}
.sc-legal-page ul li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.sc-legal-page a {
  color: var(--green); text-decoration: none;
  font-weight: 500;
}
.sc-legal-page a:hover { text-decoration: underline; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .sc-nav-links { display: none; }
  .sc-section { padding: 64px 0; }
  .sc-hero { padding: 60px 0 0; }
  .sc-hero-demo-wrap { padding: 20px 16px 0; }
  .sc-features-grid { grid-template-columns: 1fr; }
  .sc-pricing-grid { grid-template-columns: 1fr; }
  .sc-proof-inner { gap: 20px; }
  .sc-proof-divider { display: none; }
}
