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

:root {
  --yellow: #f4c400;
  --yellow-dark: #d9ae00;
  --black: #111111;
  --white: #ffffff;
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --card: rgba(255, 255, 255, 0.92);
  --border: rgba(0, 0, 0, 0.08);
  --google: #34a853;
  --apple: #000000;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.hero {
  /* min-height: 100vh; */
  background: linear-gradient(180deg, var(--yellow) 0%, #ffd84d 100%);
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 220px;
  max-width: 65vw;
  height: auto;
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--black);
}

.hero-text {
  max-width: 760px;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: var(--shadow);
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.google-play {
  background: var(--google);
}

.app-store {
  background: var(--apple);
}

.store-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.section {
  padding: 88px 0;
}

.alt-section {
  background: #fafafa;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: var(--black);
}

.grid {
  display: grid;
  gap: 24px;
}

.two-cols {
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.service-card,
.feature-card,
.contact-card,
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card p + p {
  margin-top: 14px;
}

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

.stat-card h3,
.service-card h3,
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--black);
}

.stat-card p,
.service-card p,
.feature-card p,
.contact-card p,
.card p {
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, #fff9db 0%, #ffffff 100%);
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-list {
  margin-top: 20px;
}

.contact-list p + p {
  margin-top: 8px;
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
}

.footer-content {
  padding: 22px 0;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .two-cols,
  .three-cols {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .logo {
    width: 160px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .store-btn {
    width: 100%;
    max-width: 320px;
  }

  .section {
    padding: 64px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .service-card,
  .feature-card,
  .contact-card,
  .stat-card {
    padding: 22px;
  }
}