:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: rgba(26, 26, 26, 0.68);
  --border: #e4e8eb;
  --teal: #4a908f;
  --teal-deep: #2d5a5a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow { width: min(760px, 100%); margin: 0 auto; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav { display: flex; gap: 16px; }
.nav a { font-weight: 600; }

.hero { padding: 56px 0 36px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

h1, h2, h3 { margin: 0 0 12px; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }

.lead { color: var(--muted); font-size: 1.1rem; margin: 0 0 22px; }
.confidence-line {
  font-weight: 700;
  color: var(--teal-deep);
  margin: -6px 0 16px;
}
.meta-note { color: var(--muted); font-size: 0.95rem; margin-top: 10px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

.btn, .app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 700;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.app-store-badge {
  background: #111;
  color: #fff;
  border-color: #111;
}

.phone-mockup {
  background: linear-gradient(150deg, #e9f3f3, #f5f9f9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.mockup-icon { width: 92px; height: 92px; border-radius: 20px; margin-bottom: 12px; }

.strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.section { padding: 52px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.steps article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

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

.shot-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.shot-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  background: #edf4f4;
  border-radius: 10px;
}

.shot-card figcaption {
  margin-top: 10px;
  font-weight: 600;
  color: var(--text);
}

.audience-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.trust-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.final-cta { padding-bottom: 68px; }

.legal h2 { margin-top: 28px; }
.legal ul { padding-left: 20px; }

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 8px; }
.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .shots-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .footer-links { text-align: left; }
}
