@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────── */
:root {
  --purple:       #5959E4;
  --purple-dark:  #190F32;
  --white:        #FFFFFF;
  --gray-900:     #111827;
  --gray-500:     #6B7280;
  --gray-100:     #F3F4F6;
  --radius-xl:    16px;
  --radius-lg:    12px;
  --radius-full:  100px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: var(--gray-900);
  -webkit-font-smoothing: antialiased;
}

/* ─── Full-page wrapper ──────────────────────────────── */
.hero-full {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--purple) 0%, var(--purple-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Nav ────────────────────────────────────────────── */
nav {
  width: 100%;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav ul a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

nav ul a:hover { color: var(--white); }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  width: 100%;
  max-width: 560px;
  padding: 40px 24px 48px;
  text-align: center;
}

.hero__title {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  font-weight: 400;
  margin: 0 auto 32px;
  line-height: 1.65;
  max-width: 340px;
}

/* ─── Store buttons ──────────────────────────────────── */
.store-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(8px);
  transition: background 0.15s;
}

.store-btn:hover { background: rgba(255,255,255,0.20); }

.store-btn__text { text-align: left; line-height: 1.2; }
.store-btn__text small { display: block; font-size: 11px; font-weight: 400; opacity: 0.55; }

/* ─── Feature cards ──────────────────────────────────── */
.features__grid {
  width: 100%;
  max-width: 560px;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  backdrop-filter: blur(8px);
}

.feature-card__icon { font-size: 26px; margin-bottom: 10px; display: block; }

.feature-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-card__text {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}

/* ─── Footer ──────────────────────────────────────────── */
footer {
  margin-top: auto;
  width: 100%;
  max-width: 560px;
  padding: 20px 24px 28px;
  text-align: center;
}

footer nav { display: block; padding: 0; max-width: none; margin-bottom: 10px; }
footer nav ul { display: flex; justify-content: center; }
footer nav ul a { color: rgba(255,255,255,0.35); font-size: 13px; }
footer nav ul a:hover { color: rgba(255,255,255,0.65); }

.footer__copy { color: rgba(255,255,255,0.20); font-size: 12px; }

/* ─── Inner pages (support, privacy) ────────────────── */
.page-wrapper {
  background: #F8F9FA;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  background: linear-gradient(150deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 0 0 20px 20px;
}

.page-header nav { max-width: 680px; margin: 0 auto; }
.page-header nav ul a { color: rgba(255,255,255,0.60); }
.page-header nav ul a:hover { color: var(--white); }

.page-hero {
  padding: 32px 24px 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.page-hero__title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.page-hero__sub { color: rgba(255,255,255,0.55); font-size: 15px; }

.content {
  flex: 1;
  padding: 40px 0 64px;
}

.container { max-width: 680px; margin: 0 auto; padding: 0 20px; }

.content-section-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 18px;
}

.content p {
  color: var(--gray-500);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { margin-bottom: 36px; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  margin-bottom: 8px;
}

.faq__q {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq__badge {
  background: #EEEEFF;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 1px;
}

.faq__a { color: var(--gray-500); font-size: 13px; line-height: 1.65; }

/* ─── Contact card ────────────────────────────────────── */
.contact-card {
  background: linear-gradient(150deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
}

.contact-card__title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.contact-card__sub { color: rgba(255,255,255,0.55); margin-bottom: 20px; font-size: 14px; }

.contact-card__link {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  transition: background 0.15s;
}

.contact-card__link:hover { background: rgba(255,255,255,0.22); }

/* ─── Page footer ─────────────────────────────────────── */
.page-footer {
  background: var(--gray-900);
  border-radius: 16px 16px 0 0;
  padding: 24px;
  text-align: center;
}

.page-footer nav { display: block; padding: 0; max-width: none; margin-bottom: 10px; }
.page-footer nav ul { display: flex; justify-content: center; }
.page-footer nav ul a { color: rgba(255,255,255,0.35); font-size: 13px; }
.page-footer nav ul a:hover { color: rgba(255,255,255,0.65); }
.page-footer .footer__copy { color: rgba(255,255,255,0.20); font-size: 12px; }

/* ─── Privacy ─────────────────────────────────────────── */
.policy-meta {
  display: inline-block;
  background: #EEEEFF;
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.policy-content h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 32px 0 8px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.policy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content ul { margin: 8px 0 12px 16px; }
.policy-content li { margin-bottom: 5px; color: var(--gray-500); font-size: 14px; line-height: 1.6; }
.policy-content a { color: var(--purple); text-decoration: none; }
.policy-content a:hover { text-decoration: underline; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 440px) {
  .features__grid { grid-template-columns: 1fr; }
  nav ul { gap: 16px; }
  .store-btns { flex-direction: column; align-items: center; }
}
