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

:root {
  --primary: #0f8b8d;
  --primary-50: #e6f5f5;
  --primary-100: #cdebec;
  --primary-700: #0b6f71;
  --navy: #143642;
  --accent: #ec9a29;
  --gray-50: #fbfafb;
  --gray-100: #f3f0f2;
  --gray-200: #e8e3e6;
  --gray-500: #a59ea4;
  --gray-600: #7c767b;
  --gray-700: #5a5559;
  --gray-900: #1f1a1e;
  --error: #a8201a;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
  color: var(--gray-900);
}

.nav-logo span {
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--gray-700);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--primary-700) !important;
}

/* ── SECTIONS ── */
section {
  padding: 80px 24px;
}
.container {
  max-width: 960px;
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #fff 0%, var(--primary-50) 100%);
  padding: 100px 24px 80px;
  text-align: center;
}

.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 24px rgba(15, 139, 141, 0.15);
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  color: var(--gray-700);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gray-900);
  color: #fff;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--gray-900);
  color: #fff;
}

.btn-secondary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background: var(--primary-50);
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 20px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.btn-text small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

/* ── SCREENSHOTS ── */
.screenshots {
  background: var(--primary-50);
  padding: 60px 24px;
  overflow: hidden;
}

.screenshots-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
}

.phone-frame {
  width: 200px;
  flex-shrink: 0;
  background: var(--gray-900);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(20, 54, 66, 0.25);
}

.phone-frame.featured {
  width: 240px;
  transform: translateY(-20px);
}

.phone-screen {
  background: var(--gray-50);
  border-radius: 20px;
  aspect-ratio: 9/19;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.phone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray-500);
  font-size: 12px;
  text-align: center;
}

.phone-placeholder span {
  font-size: 28px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── VERSE ── */
.verse-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.verse-text {
  font-size: clamp(18px, 3vw, 26px);
  font-style: italic;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 20px;
  opacity: 0.95;
}

.verse-ref {
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 15px;
  color: var(--gray-700);
}

/* ── SECTION HEADINGS ── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-700);
  max-width: 540px;
}

/* ── FINAL CTA ── */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-700) 100%
  );
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  color: var(--gray-500);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.5;
}

/* ── SUPPORT & POLICY PAGES ── */
.page-hero {
  background: linear-gradient(160deg, #fff 0%, var(--primary-50) 100%);
  padding: 80px 24px 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 12px;
}

.page-hero p {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 500px;
  margin: 12px auto 0;
}

.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--gray-900);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 12px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.page-content li {
  margin-bottom: 6px;
}

.page-content a {
  color: var(--primary);
  text-decoration: underline;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  background: var(--gray-50);
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--gray-700);
  margin: 0;
}

.contact-card {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.contact-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.contact-card a.btn {
  display: inline-flex;
  margin-top: 16px;
  background: var(--primary);
  color: #fff;
}

.contact-card a.btn:hover {
  background: var(--primary-700);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .screenshots-inner {
    gap: 12px;
    padding: 0 16px;
  }

  .phone-frame {
    width: 140px;
  }
  .phone-frame.featured {
    width: 170px;
  }

  .step {
    flex-direction: column;
    gap: 10px;
  }
}
