:root {
  --brand: #002e59;
  --brand-dark: #001c3d;
  --brand-light: #eaf2fb;
  --text: #16324a;
  --muted: #5f7285;
  --bg: #f7fbff;
  --white: #ffffff;
  --border: #d9e5f0;
  --shadow: 0 10px 30px rgba(0, 46, 89, 0.08);
  --radius: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

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

section {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.btn-primary {
  background: #ffffff;
  color: var(--brand);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.hero-more-btn {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.store-badge {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge:hover {
  transform: scale(1.03);
  opacity: 0.96;
}

@media (max-width: 680px) {
  section {
    padding: 56px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-more-btn {
    max-width: 100%;
  }

  .store-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .store-badge {
    height: 48px;
  }
}