/* ======================================================
   Priqo — Design System
   Brand palette derived from logo (April 2026)
   Font: Plus Jakarta Sans
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  /* ── Logo-derived brand colors (source of truth) ── */
  --brand-green:      #00DC96;   /* top of logo gradient    */
  --brand-cyan:       #00C4D4;   /* mid transition           */
  --brand-blue:       #0096D6;   /* base of logo gradient    */
  --brand-navy:       #0F2150;   /* wordmark "priqo" color   */
  --brand-gradient:   linear-gradient(135deg, #00DC96 0%, #0096D6 100%);
  --brand-gradient-h: linear-gradient(135deg, #00C4D4 0%, #0075A8 100%); /* hover */

  /* ── Design tokens ── */
  --primary:          #0096D6;
  --primary-dark:     #0075A8;
  --primary-light:    #E6F6FE;
  --primary-mid:      #00C4D4;
  --accent:           #00DC96;
  --accent-dark:      #00A872;
  --accent-light:     #E3FAF3;
  --warn:             #DC2626;
  --warn-light:       #FEF2F2;
  --dark:             #0F2150;   /* = brand navy, headings & footer */
  --text:             #1E3A5F;
  --text-muted:       #6B8CAE;
  --text-light:       #94A8C0;
  --border:           #D0E4F0;
  --border-dark:      #A8C8E0;
  --bg:               #FFFFFF;
  --bg-alt:           #F5FAFF;   /* sections alternadas              */
  --bg-alt2:          #EBF5FF;   /* hover states, inputs             */
  --radius-sm:        8px;
  --radius:           12px;
  --radius-lg:        20px;
  --shadow-sm:        0 1px 3px rgba(15,33,80,.08), 0 1px 2px rgba(15,33,80,.04);
  --shadow:           0 4px 24px rgba(15,33,80,.10);
  --shadow-lg:        0 12px 48px rgba(15,33,80,.14);
  --transition:       0.2s ease;
  --max-w:            1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -.01em;
}
.btn:hover { text-decoration: none; }

/* Primary — brand gradient */
.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,150,214,.25);
}
.btn-primary:hover {
  background: var(--brand-gradient-h);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,150,214,.35);
  transform: translateY(-1px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
}

/* Accent */
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
}
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

.btn-lg  { padding: 14px 28px; font-size: 1rem;    border-radius: var(--radius); }
.btn-full{ width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   SECTION TYPOGRAPHY
   ════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.section-center { text-align: center; }

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.nav-logo:hover { text-decoration: none; color: var(--dark); }

/* Logo image sizing — the actual logo.png */
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--dark); background: var(--bg-alt); }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-alt2);
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 9px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: .02em;
}
.lang-btn:hover { color: var(--dark); }
.lang-btn.active {
  background: var(--bg);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  overflow: hidden;
  position: relative;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0,220,150,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,150,214,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,168,114,.2);
}

/* Title */
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.025em;
}

/* Gradient span — mirrors the logo gradient */
.hero-title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Trust pills */
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-trust span::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  font-size: .9rem;
}

/* ════════════════════════════════════════
   EXTENSION MOCKUP
   ════════════════════════════════════════ */
.extension-mockup {
  background: var(--bg);
  border-radius: 18px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  max-width: 340px;
  margin-left: auto;
  font-size: .875rem;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.extension-mockup:hover {
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 24px 64px rgba(15,33,80,.18), 0 0 0 1px var(--border);
}

.mockup-header {
  background: var(--brand-gradient);   /* ← matches actual logo gradient */
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.mockup-logo { font-weight: 800; font-size: 1rem; letter-spacing: -.02em; }
.mockup-badge {
  font-size: .65rem;
  background: rgba(255,255,255,.22);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: .02em;
}

.mockup-section {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.mockup-section:last-child { border-bottom: none; }

.mockup-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mockup-pros .tag  { font-size: .75rem; font-weight: 700; color: var(--accent-dark); margin-bottom: 4px; }
.mockup-cons .tag  { font-size: .75rem; font-weight: 700; color: var(--warn);        margin-bottom: 4px; }

.mockup-list { list-style: none; }
.mockup-list li {
  font-size: .78rem;
  color: var(--text);
  padding: 1px 0 1px 12px;
  position: relative;
}
.mockup-list li::before { content: '•'; position: absolute; left: 0; color: var(--text-muted); }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  font-size: .8125rem;
}
.price-row .retailer { color: var(--text-muted); font-weight: 500; }
.price-row .price    { font-weight: 600; color: var(--text); }
.price-row.best .price    { color: var(--accent-dark); font-weight: 800; }
.price-row.best .retailer { color: var(--dark);        font-weight: 700; }

.best-badge {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: .65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: .03em;
}

.mockup-cta {
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  margin-bottom: 8px;
  font-family: inherit;
  letter-spacing: -.01em;
}

.mockup-disclosure {
  font-size: .65rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ════════════════════════════════════════
   STORES STRIP
   ════════════════════════════════════════ */
.stores-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.stores-inner {
  display: flex;
  align-items: center;
  gap: 12px 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.stores-label {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  flex-shrink: 0;
}

.store-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.store-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════ */
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.features-bg { background: var(--bg-alt); }

/* ════════════════════════════════════════
   HOW IT WORKS — STEPS
   ════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Step number pill — brand gradient */
.step-number {
  width: 44px;
  height: 44px;
  background: var(--brand-gradient);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,150,214,.25);
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* No connector line — step numbers carry the visual flow */

/* ════════════════════════════════════════
   FEATURES GRID
   ════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-icon.green  { background: var(--accent-light); }
.feature-icon.blue   { background: var(--primary-light); }
.feature-icon.cyan   { background: #E0F7FA; }
.feature-icon.yellow { background: #FFFBEB; }
.feature-icon.red    { background: var(--warn-light); }
.feature-icon.slate  { background: var(--bg-alt2); }

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════ */
.compare-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--dark);
  background: var(--bg-alt);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table th.col-priqo {
  color: var(--primary);
  background: var(--primary-light);
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: var(--bg-alt); }

.check   { color: var(--accent-dark); font-size: 1.125rem; font-weight: 800; }
.cross   { color: var(--warn);        font-size: 1rem;     font-weight: 700; }
.partial { color: var(--text-muted);  font-size: .875rem; }

.honey-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--warn-light);
  border: 1px solid rgba(220,38,38,.18);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--warn);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow); }

/* Featured plan — brand navy background */
.plan-card.featured {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* Badge — gradient pill */
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .03em;
  box-shadow: 0 4px 12px rgba(0,150,214,.30);
}

.plan-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.03em;
}
.plan-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-annual {
  font-size: .875rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 24px;
  min-height: 20px;
}

.plan-divider { height: 1px; background: var(--border); margin: 24px 0; }

.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: .9375rem;
  color: var(--text);
}
.plan-features li .fi        { flex-shrink: 0; margin-top: 2px; }
.plan-features li .fi.yes    { color: var(--accent-dark); font-weight: 800; }
.plan-features li .fi.no     { color: var(--border-dark); }

.plan-guarantee {
  text-align: center;
  margin-top: 28px;
  font-size: .875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
}

/* ════════════════════════════════════════
   HOW WE MAKE MONEY (dark section)
   ════════════════════════════════════════ */
.hwmm-bg {
  background: var(--dark);   /* brand navy */
  color: #fff;
}
.hwmm-bg .section-label {
  background: rgba(0,150,214,.2);
  color: #7DD3F8;
}
.hwmm-bg .section-title { color: #fff; }
.hwmm-bg .section-sub   { color: #94A8C0; }

.hwmm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.hwmm-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background var(--transition);
}
.hwmm-card:hover { background: rgba(255,255,255,.09); }

.hwmm-card-icon { font-size: 2rem; margin-bottom: 16px; }

.hwmm-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.hwmm-card p {
  font-size: .9375rem;
  color: #94A8C0;
  line-height: 1.75;
}

.hwmm-notdoing {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.hwmm-notdoing h3 {
  font-size: .8125rem;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

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

.ndoing-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: #94A8C0;
  font-weight: 500;
}
.ndoing-item .x-icon {
  color: var(--warn);
  font-weight: 800;
  font-size: 1rem;
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-alt2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--primary);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-light);
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--dark);   /* brand navy */
  color: #94A8C0;
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo  { color: #fff; margin-bottom: 12px; }
.footer-brand .nav-logo:hover { color: #fff; }

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  color: #64748B;
}

.footer-brand .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--brand-cyan);
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-brand .contact-link:hover { color: #fff; text-decoration: none; }

.footer-col h4 {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #E2E8F0;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .9rem;
  color: #64748B;
  transition: color var(--transition);
  text-decoration: none;
  font-weight: 500;
}
.footer-col ul li a:hover { color: #fff; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 24px;
}

.footer-affiliate {
  font-size: .8125rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: .8125rem; color: #475569; }

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: .8125rem;
  color: #475569;
  transition: color var(--transition);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { color: #fff; }

/* ════════════════════════════════════════
   POLICY PAGES
   ════════════════════════════════════════ */
.policy-hero {
  background: var(--bg-alt);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.policy-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.policy-meta {
  font-size: .9rem;
  color: var(--text-muted);
}

.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}

.policy-body h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--dark);
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  letter-spacing: -.015em;
}
.policy-body h2:first-child { margin-top: 0; }

.policy-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}

.policy-body p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.policy-body ul, .policy-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-body li {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.policy-body a { color: var(--primary); }
.policy-body a:hover { text-decoration: underline; }

.policy-body .highlight-box {
  background: var(--primary-light);
  border: 1px solid rgba(0,150,214,.2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
}
.policy-body .highlight-box p {
  color: var(--primary-dark);
  margin: 0;
  font-weight: 600;
  line-height: 1.65;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ndoing-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links      { display: none; }
  .nav-toggle     { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 99;
  }

  .hero-inner     { grid-template-columns: 1fr; gap: 48px; }
  .extension-mockup { transform: none; margin: 0 auto; }

  .steps-grid     { grid-template-columns: 1fr; }
  .steps-grid .step-card::after { display: none; }
  .features-grid  { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .hwmm-grid      { grid-template-columns: 1fr; }
  .ndoing-grid    { grid-template-columns: 1fr 1fr; }

  .footer-top     { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }

  .compare-table  { min-width: 480px; }
}

@media (max-width: 480px) {
  .hero-ctas      { flex-direction: column; }
  .btn-lg         { text-align: center; justify-content: center; }
  .nav-right .btn { display: none; }
  .ndoing-grid    { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   EFFECTS & ENHANCEMENTS  —  ui-ux-pro-max recommendations
   ══════════════════════════════════════════════════════════ */

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.68,0,1.2),
              transform .65s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: none; }

/* Stagger delays for grid children */
.reveal-stagger > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger > *:nth-child(6) { transition-delay: .40s; }

/* Respect user motion preference (ui-ux-pro-max: CRITICAL) */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Glassmorphism extension mockup ──
   Requires vibrant background behind it (hero orbs)          */
.extension-mockup {
  background: rgba(255,255,255,.82) !important;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.55) !important;
}

/* ── Hero background orbs (make glassmorphism pop) ── */
.hero { overflow: hidden; }
.hero::before {
  width: 680px;
  height: 680px;
  top: -200px;
  right: -160px;
  background: radial-gradient(circle,
    rgba(0,220,150,.18) 0%,
    rgba(0,196,212,.12) 40%,
    transparent 70%);
}
.hero::after {
  width: 520px;
  height: 520px;
  bottom: -120px;
  left: -100px;
  background: radial-gradient(circle,
    rgba(0,150,214,.14) 0%,
    rgba(0,220,150,.06) 50%,
    transparent 70%);
}
.hero-orb-mid {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: radial-gradient(circle,
    rgba(0,196,212,.10) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero stats row ── */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat {}
.hero-stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num .suffix {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── SVG feature icons ── */
.feature-icon svg { width: 22px; height: 22px; }
.feature-icon.green svg  { color: var(--accent-dark); }
.feature-icon.blue  svg  { color: var(--primary); }
.feature-icon.cyan  svg  { color: #0891B2; }
.feature-icon.yellow svg { color: #D97706; }
.feature-icon.red   svg  { color: var(--warn); }
.feature-icon.slate svg  { color: var(--text-muted); }

/* ── cursor-pointer on all interactive cards (CRITICAL) ── */
.feature-card, .step-card, .plan-card,
.store-chip, .faq-question { cursor: pointer; }

/* ── Animated gradient CTA button ── */
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-primary {
  background-size: 200% 200%;
  background-image: linear-gradient(135deg,
    #00DC96 0%, #00C4D4 35%, #0096D6 65%, #00DC96 100%);
  animation: gradient-shift 4s ease infinite;
}
.btn-primary:hover {
  background-image: linear-gradient(135deg,
    #00C4D4 0%, #0075A8 50%, #00C4D4 100%);
  animation: none;
}

/* ── hwmm SVG icon styling ── */
.hwmm-card-icon svg { width: 32px; height: 32px; }
.hwmm-card-icon     { color: var(--brand-cyan); }

/* ── ndoing SVG icon ── */
.ndoing-item svg { flex-shrink: 0; width: 16px; height: 16px; }

/* ── Trust badge in hero ── */
.hero-trust span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-trust span:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

/* ── Store chips — brand SVG logos in greyscale ── */
.store-chip {
  transition: all .2s ease;
  gap: 7px;
}
.store-chip svg {
  width: auto;
  flex-shrink: 0;
  fill: var(--text-muted);
  filter: grayscale(1);
  transition: filter .2s ease;
}
.store-chip:hover svg { filter: grayscale(0); }
/* Brand hover colors per store */
.store-chip:nth-child(2):hover svg { fill: #FF9900; } /* Amazon  */
.store-chip:nth-child(3):hover svg { fill: #FFC220; } /* Walmart */
.store-chip:nth-child(4):hover svg { fill: #CC0000; } /* Target  */
.store-chip:nth-child(5):hover svg { fill: #003B64; } /* BestBuy */
.store-chip:nth-child(6):hover svg { fill: #E53238; } /* eBay    */

/* ── Feature card hover — no layout shift (ui-ux-pro-max rule) ── */
.feature-card:hover {
  transform: none;
  box-shadow: 0 8px 32px rgba(0,150,214,.14);
  border-color: var(--primary);
}

/* ── Step card hover ── */
.step-card:hover {
  transform: none;
  box-shadow: 0 8px 32px rgba(0,150,214,.12);
  border-color: var(--brand-cyan);
}

/* ── Plan card hover ── */
.plan-card:hover { box-shadow: var(--shadow-lg); }

/* ── Focus visible rings (CRITICAL a11y) ── */
:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Pricing toggle label ── */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-muted);
}
.billing-toggle .save-badge {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0,168,114,.2);
}

/* ── Trademark disclaimer under stores strip ── */
.stores-trademark {
  width: 100%;
  text-align: center;
  font-size: .7rem;
  color: var(--text-light);
  margin-top: 12px;
  letter-spacing: .01em;
}

/* ── Policy links row under pricing ── */
.policy-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.policy-links-row a {
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.policy-links-row a:hover { color: var(--primary); }
.policy-dot { color: var(--border-dark); font-size: .75rem; }

/* ── Guarantee icon alignment ── */
.plan-guarantee svg { color: var(--accent-dark); flex-shrink: 0; }
