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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray: #6b7280;
  --light: #f5f5f7;
  --border: #e5e7eb;
  --accent: #111827;
  --green: #16a34a;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

/* ── LANDING (one-page) ── */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
}

.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.8; }

/* HERO */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 72px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

h1 em {
  font-style: normal;
  color: var(--gray);
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 400px;
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badges a {
  display: block;
  transition: opacity 0.2s, transform 0.2s;
}

.store-badges a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.store-badges img {
  height: 48px;
  width: auto;
}

/* PHONES */
.hero-right {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.phone {
  background: var(--black);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  position: relative;
}

.phone img {
  display: block;
  border-radius: 32px;
  width: 200px;
  height: auto;
}

.phone.large img { width: 230px; }

.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 100px;
  z-index: 1;
}

/* FEATURES ROW */
.features {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--light);
}

.feature {
  flex: 1;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border);
}

.feature:last-child { border-right: none; }

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 12px;
  color: var(--gray);
}

/* FOOTER */
footer {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--black); }

/* ── LEGAL / SUPPORT PAGES ── */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-nav {
  display: flex;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.legal-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.legal-nav img { height: 30px; width: auto; }

.legal-nav span {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.legal-content {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  width: 100%;
}

.legal-content h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 6px;
}

.legal-meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin: 32px 0 10px;
}

.legal-content p, .legal-content li {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.legal-content a {
  color: var(--black);
  font-weight: 500;
}

/* Support contact card */
.contact-card {
  margin-top: 32px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.contact-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

.contact-card a.email-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-card a.email-btn:hover { opacity: 0.8; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 36px 24px 24px;
  }

  .hero-left { max-width: 100%; }

  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }

  .store-badges { justify-content: center; }

  .hero-right { justify-content: center; }

  .phone img { width: 150px; }
  .phone.large img { width: 170px; }

  .features { flex-wrap: wrap; }

  .feature {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
  }

  .feature:last-child { border-bottom: none; }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
  }

  .legal-nav { padding: 16px 24px; }
  .legal-content { padding: 40px 24px 60px; }
}

@media (max-width: 480px) {
  .hero-right { gap: 10px; }
  .phone img { width: 120px; }
  .phone.large img { width: 140px; }
  .store-badges img { height: 42px; }
}
