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

:root {
  --bg: #f0f4f2;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --surface-glass: rgba(255, 255, 255, 0.55);
  --text: #1a2332;
  --text-heading: #0f1923;
  --muted: #5a6b7d;
  --tertiary: #8895a3;
  --primary: #1a6b5e;
  --primary-dark: #0d4a40;
  --primary-text: #147a6b;
  --primary-light: #d1f0e8;
  --accent: #e07a5f;
  --accent-light: #fdece7;
  --mint: #7bc4a6;
  --mint-light: #e0f5ee;
  --gold: #c29b3f;
  --gold-light: #faf3db;
  --success: #2e7d5a;
  --success-light: #e5f4ec;
  --warning: #b38b2a;
  --warning-light: #fdf6e3;
  --danger: #b85450;
  --danger-light: #fce8e7;
  --info: #3a6ea5;
  --info-light: #e8f0f9;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.1);
  --shadow-inset: inset 0 0 60px rgba(0, 0, 0, 0.02);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 999px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(123, 196, 166, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(224, 122, 95, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(123, 196, 166, 0.12) 0%, transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: var(--primary-text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

/* Shell and layout */

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 48px));
}

/* Header / Footer */

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 12px 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.site-footer {
  margin-top: 100px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--tertiary);
  font-size: 14px;
}

/* Brand */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-heading);
  font-family: "Plus Jakarta Sans", ui-rounded, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--text-heading);
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 13px;
  background: url("/assets/pawlens-logo.svg") center / cover no-repeat;
  box-shadow: 0 8px 20px rgba(26, 107, 94, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 28px rgba(26, 107, 94, 0.28);
}

/* Navigation */

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-family: "Plus Jakarta Sans", ui-rounded, system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
  text-decoration: none;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: 64px 0 96px;
}

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

/* Typography */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 16px;
  border: 1px solid rgba(26, 107, 94, 0.12);
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow svg,
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", ui-rounded, system-ui, sans-serif;
  color: var(--text-heading);
  line-height: 1.05;
}

h1 {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  font-weight: 400;
}

.section-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Buttons */

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 20px 10px 16px;
  border-radius: var(--radius-md);
  background: var(--text-heading);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 25, 35, 0.15), 0 1px 3px rgba(15, 25, 35, 0.1);
  font-family: "Plus Jakarta Sans", ui-rounded, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 25, 35, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.store-button.google {
  background: var(--primary-dark);
}

.store-button.google:hover {
  background: #0a3a32;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.store-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.store-label {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.65);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(26, 107, 94, 0.25);
  font-family: "Plus Jakarta Sans", ui-rounded, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 94, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.button.secondary {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.25);
}

.button.secondary:hover {
  background: #c96a52;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}

.button.ghost {
  background: transparent;
  color: var(--primary-text);
  border: 1.5px solid var(--border-strong);
  box-shadow: none;
}

.button.ghost:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}

/* Pills */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface-soft);
  backdrop-filter: blur(8px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.pill svg,
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

/* App Preview */

.app-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 196, 166, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(224, 122, 95, 0.12) 0%, transparent 50%),
    linear-gradient(145deg, #1a6b5e 0%, #0d4a40 50%, #0a3830 100%);
  box-shadow: 0 32px 80px rgba(13, 74, 64, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  animation: slideIn 1s ease 0.2s both;
}

.app-preview::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  pointer-events: none;
}

.app-preview::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  animation: shimmer 12s ease infinite;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 9 / 19.5;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  z-index: 1;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 32px;
  background: var(--surface);
}

.preview-note {
  position: absolute;
  left: clamp(20px, 5vw, 40px);
  right: clamp(20px, 5vw, 40px);
  bottom: clamp(20px, 4vw, 32px);
  z-index: 2;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
}

/* Sections */

.section {
  padding: 96px 0;
  position: relative;
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

/* Cards and Grid */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.legal-card,
.callout,
.faq-item,
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card,
.step-card,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.icon-bubble,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary-text);
  font-family: "Plus Jakarta Sans", ui-rounded, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(26, 107, 94, 0.12);
}

.step-number {
  background: var(--accent-light);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.12);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 32px;
  align-items: stretch;
}

.callout {
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 48px);
}

.callout.teal {
  background:
    radial-gradient(circle at 80% 20%, rgba(123, 196, 166, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #116b5c 0%, #0a4a40 50%, #073830 100%);
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.callout.teal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.callout.teal h2,
.callout.teal h3,
.callout.teal p,
.callout.teal li {
  color: #ffffff;
}

.callout.teal h2,
.callout.teal h3 {
  letter-spacing: -0.03em;
}

.callout.teal p,
.callout.teal li {
  opacity: 0.88;
}

/* Lists */

.check-list,
.plain-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: var(--mint);
  box-shadow: inset 0 0 0 5px var(--mint-light);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.75em;
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -1px;
}

.plain-list li::before {
  background: var(--accent);
  box-shadow: inset 0 0 0 5px var(--accent-light);
}

.disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid rgba(179, 139, 42, 0.15);
  border-radius: var(--radius-md);
  background: var(--warning-light);
  color: var(--warning);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.7;
}

/* Page hero */

.page-hero {
  padding: 48px 0 36px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
}

/* Legal card */

.legal-card {
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 52px);
}

.legal-card h2 {
  margin-top: 44px;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card ul,
.legal-card ol {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.legal-card ul,
.legal-card ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.legal-card li {
  margin-bottom: 10px;
}

/* Status boxes */

.muted {
  color: var(--muted);
}

.small {
  color: var(--tertiary);
  font-size: 14px;
  line-height: 1.6;
}

.status-box {
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--mint-light);
  transition: all 0.3s ease;
}

.status-box:hover {
  box-shadow: var(--shadow-sm);
}

.status-box.warning {
  background: var(--warning-light);
  color: var(--warning);
  border-color: rgba(179, 139, 42, 0.15);
}

/* Support page */

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 20px;
}

.stack .callout {
  border-radius: var(--radius-lg);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 28px 32px;
}

.faq-item:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

/* Auth page */

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-card {
  width: min(520px, 100%);
  padding: clamp(32px, 6vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: slideIn 0.6s ease forwards;
}

.auth-card .brand {
  justify-content: center;
  margin-bottom: 8px;
}

.auth-card h1 {
  font-size: clamp(32px, 6vw, 48px);
}

.auth-card .eyebrow {
  margin: 0 auto 16px;
  display: inline-flex;
}

.auth-card .button-row {
  justify-content: center;
  margin: 28px 0;
}

.hidden {
  display: none !important;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.brand-spacer {
  height: 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Stats / Metrics band */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: "Plus Jakarta Sans", ui-rounded, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* Feature logo/grid for brand mention */

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Section divider */

.section-divider {
  height: 1px;
  border: 0;
  background: var(--border);
  margin: 0;
  width: 100%;
}

/* Animations on scroll */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .hero,
  .split,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 72px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid,
  .grid.two,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .app-preview {
    min-height: 540px;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .shell,
  .narrow {
    width: min(100% - 24px, 1200px);
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .site-footer {
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .header-inner {
    flex-direction: column;
    padding: 14px 16px;
  }

  .nav-links,
  .footer-links {
    justify-content: center;
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .app-preview {
    min-height: 460px;
    border-radius: var(--radius-lg);
  }

  .phone-frame {
    border-radius: 32px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .card,
  .step-card,
  .faq-item {
    padding: 24px;
  }

  .store-button {
    flex: 1 1 auto;
    min-width: 260px;
  }
}
