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

:root {
  --primary: #c2410c;
  --primary-mid: #e05a1a;
  --primary-light: #f97316;
  --primary-dark: #9a3412;
  --bg: #fdfbf7;
  --surface: #ffffff;
  --surface-muted: #f7f3ec;
  --surface-warm: #fef3e8;
  --border: #e7ddd0;
  --border-light: #f0ebe4;
  --text: #1c1410;
  --text-muted: #57493d;
  --text-faint: #a89a8a;
  --success: #16a34a;
  --success-bg: #ecfdf3;
  --warning: #ca8a04;
  --warning-bg: #fefaec;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --category: #d97706;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(28, 20, 16, 0.06), 0 1px 2px rgba(28, 20, 16, 0.04);
  --shadow-md: 0 4px 16px rgba(28, 20, 16, 0.08), 0 2px 6px rgba(28, 20, 16, 0.05);
  --shadow-lg: 0 12px 40px rgba(28, 20, 16, 0.1), 0 4px 12px rgba(28, 20, 16, 0.06);
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}
.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  transition:
    background 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(194, 65, 12, 0.35);
}
.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.4);
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  background: var(--bg);
  padding: 80px 32px 68px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, #fff3ec, #ffe8d5);
  border: 1px solid rgba(194, 65, 12, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 22px;
}
.hero h1 em {
  color: var(--primary);
  font-style: normal;
  position: relative;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 38px;
  line-height: 1.7;
}
.store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.store-badge {
  display: inline-block;
  transition:
    opacity 0.15s,
    transform 0.15s;
  border-radius: 10px;
  overflow: hidden;
}
.store-badge:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.store-badge svg {
  display: block;
}
.hero-note {
  font-size: 13px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-note::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--border);
}

/* ── IPHONE MOCKUP ── */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes phone-float {
  0% {
    transform: perspective(900px) rotateY(-12deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: perspective(900px) rotateY(-12deg) rotateX(4deg) translateY(-16px);
  }
  100% {
    transform: perspective(900px) rotateY(-12deg) rotateX(4deg) translateY(0);
  }
}
.phone-float {
  animation: phone-float 4.5s ease-in-out infinite;
  will-change: transform;
  transform-style: preserve-3d;
  filter: drop-shadow(0 32px 48px rgba(28, 20, 16, 0.22))
    drop-shadow(0 8px 16px rgba(28, 20, 16, 0.12));
}

.iphone {
  width: 260px;
  background: #0a0a0a;
  border-radius: 44px;
  padding: 14px 8px;
  box-shadow:
    0 0 0 1px #3a3a3a,
    0 0 0 3px #1a1a1a,
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}
.iphone::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 80px;
  width: 3px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 42px 0 #2a2a2a,
    0 84px 0 #2a2a2a;
}
.iphone::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 110px;
  width: 3px;
  height: 52px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
}
.iphone-screen {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}
.iphone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 10;
}
.iphone-content {
  padding-top: 52px;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid #f0ebe4;
}
.app-bar img {
  border-radius: 5px;
}

.product-image-area {
  background: linear-gradient(135deg, #fde8d2 0%, #f8c89a 100%);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.product-info {
  padding: 12px 14px;
}
.product-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.product-brand {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 8px 10px;
  background: var(--surface-muted);
  border-radius: var(--radius-sm);
}
.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.badge-good {
  background: var(--success-bg);
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.product-unit {
  font-size: 11px;
  color: var(--text-faint);
}

.scan-hint {
  padding: 10px 14px 14px;
  text-align: center;
  border-top: 1px solid #f0ebe4;
}
.scan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 6px;
}
.scan-label {
  font-size: 11px;
  color: var(--text-faint);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface-muted);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0 32px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 24px 40px;
}
.stat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 500;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SHARED SECTION BASE ── */
section {
  padding: 96px 32px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.08;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--bg);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.step {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(249, 115, 22, 0.04));
  pointer-events: none;
}
.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.28);
}
.step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── VERDICT ── */
.verdict-section {
  background: linear-gradient(180deg, var(--surface-muted) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.verdict-cards {
  display: flex;
  gap: 20px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.verdict-card {
  flex: 1;
  min-width: 180px;
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.verdict-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.verdict-card.good {
  background: var(--success-bg);
  border-color: #bbf7d0;
}
.verdict-card.avg {
  background: var(--warning-bg);
  border-color: #fde68a;
}
.verdict-card.exp {
  background: var(--danger-bg);
  border-color: #fecaca;
}
.verdict-value {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.verdict-card.good .verdict-value {
  color: var(--success);
}
.verdict-card.avg .verdict-value {
  color: var(--warning);
}
.verdict-card.exp .verdict-value {
  color: var(--danger);
}
.verdict-label-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.verdict-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
}
.verdict-card.good .verdict-badge {
  background: var(--success);
  color: #fff;
}
.verdict-card.avg .verdict-badge {
  background: var(--warning);
  color: #fff;
}
.verdict-card.exp .verdict-badge {
  background: var(--danger);
  color: #fff;
}

/* ── FEATURES ── */
.features-section {
  background: var(--bg);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(194, 65, 12, 0.15);
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA ── */
.cta-section {
  background: var(--bg);
  padding: 48px 32px 80px;
  text-align: center;
}
.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(251, 146, 60, 0.55) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 80%, rgba(194, 65, 12, 0.45) 0%, transparent 50%),
    linear-gradient(145deg, #b83a0a 0%, #c2450c 35%, #7c1d06 100%);
  border-radius: 28px;
  padding: 72px 48px;
  box-shadow:
    0 24px 64px rgba(140, 30, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  position: relative;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--text);
  text-decoration: none;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-faint);
}

/* ── INNER PAGES ── */
.page-hero {
  background: var(--bg);
  padding: 72px 32px 56px;
  border-bottom: 1px solid var(--border-light);
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 14px;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px 88px;
}
.page-content h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 48px 0 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.page-content p,
.page-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.page-content ul {
  padding-left: 20px;
  margin: 14px 0;
}
.page-content li {
  margin-bottom: 8px;
}
.page-content strong {
  color: var(--text);
}
.page-content a {
  color: var(--primary);
}

/* SUPPORT */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 52px 0;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.support-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.support-card .s-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}
.support-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}
.support-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

details {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s;
}
details:hover {
  box-shadow: var(--shadow-md);
}
summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
  letter-spacing: -0.01em;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '+';
  font-size: 18px;
  color: var(--text-faint);
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.still-stuck {
  background: var(--surface-warm);
  border: 1px solid rgba(194, 65, 12, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-top: 52px;
}
.still-stuck h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.still-stuck p {
  font-size: 15px;
  color: var(--text-muted);
}

/* PRIVACY TABLE */
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.privacy-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--surface-muted);
  color: var(--text-muted);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.privacy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  vertical-align: top;
}
.privacy-table tr:last-child td {
  border-bottom: none;
}
.privacy-table tbody tr:hover td {
  background: rgba(247, 243, 236, 0.5);
}
.privacy-table .badge-private {
  background: var(--surface-muted);
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.privacy-table .badge-shared {
  background: #fff7ed;
  color: var(--category);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.provider-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.provider-card:hover {
  box-shadow: var(--shadow-md);
}
.provider-name {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}
.provider-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.provider-link {
  font-size: 12px;
  color: var(--primary);
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .phone-wrap {
    display: none;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .verdict-cards {
    flex-direction: column;
  }
  .support-cards {
    grid-template-columns: 1fr;
  }
  .provider-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat {
    padding: 20px 24px;
  }
  .stat-num {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .nav-links .btn-nav {
    display: none;
  }
  section {
    padding: 64px 20px;
  }
  .hero {
    padding: 56px 20px 44px;
  }
  .cta-inner {
    padding: 52px 28px;
  }
  .stats-bar {
    padding: 0 20px;
  }
  .stat {
    padding: 18px 16px;
  }
  .stat-divider {
    display: none;
  }
}
