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

:root {
  --magenta: #C8006A;
  --magenta-dark: #9D0050;
  --magenta-light: #FFF0F7;
  --magenta-mid: #FFD6EE;
  --text: #1A1A2E;
  --muted: #64677A;
  --border: #EAEAEE;
  --white: #FFFFFF;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

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

/* ── 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(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--magenta);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-lang {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.nav-lang.active, .nav-lang:hover {
  color: var(--magenta);
  border-color: var(--magenta);
  background: var(--magenta-light);
}
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 8px;
  background: var(--magenta);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--magenta-dark); }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #1A0010 0%, #3D0030 50%, #1A0010 100%);
  color: var(--white);
  padding: 80px 24px 0;
  text-align: center;
  overflow: hidden;
}
.hero-inner { max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(200,0,106,0.25);
  border: 1px solid rgba(200,0,106,0.5);
  color: #FFB3D9;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 span { color: #FF6FC0; }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  height: 52px;
  transition: all 0.2s;
  line-height: 1.25;
}
.btn-store:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); }
.btn-store i { font-size: 1.6rem; }
.btn-store span { display: flex; flex-direction: column; }
.btn-store span small { font-size: 0.65rem; font-weight: 400; opacity: 0.7; }
.btn-store span strong { font-size: 0.88rem; font-weight: 700; }

.android-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  height: 52px;
}
.android-soon i { font-size: 1.4rem; opacity: 0.6; }

.btn-web {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  transition: all 0.2s;
  height: 52px;
}
.btn-web:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.45);
}

.hero-image-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  display: block;
}

/* ── SECTION ── */
section { padding: 100px 24px; }

.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--magenta);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

/* ── FEATURES ── */
.features { background: var(--white); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.feature-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.feature-text p {
  font-size: 1.0rem;
  color: var(--muted);
  line-height: 1.7;
}

.feature-image {
  /*background: var(--magenta-light);*/
  border-radius: var(--radius);
  overflow: hidden;
  /*border: 1px solid var(--magenta-mid);*/
}
.feature-image img {
  width: 100%;
  max-height: 490px;
  object-fit: cover;
  object-position: top;
  display: block;
  /*border-radius: 7.5em;*/
  /*border-bottom: 8px solid #ff0154;*/
  /*border: 8px solid #ff0154;*/
}

/* ── HOW IT WORKS ── */
.how { background: #e4d2e0; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.how-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--magenta-mid);
}
.how-card-num {
  width: 40px;
  height: 40px;
  background: var(--magenta);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.how-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 720px;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--magenta);
  background: var(--magenta-light);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.pricing-plan {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: "✓";
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq { background: #e4d2e0; }
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--magenta-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--magenta-light); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--magenta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--magenta);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a-inner a { color: var(--magenta); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
}
.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--magenta);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.2s;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer {
  background: #0F0010;
  color: rgba(255,255,255,0.55);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--magenta);
  margin-bottom: 12px;
  display: block;
}
footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.footer-bottom {
  font-size: 0.82rem;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr !important;
  }
  .feature-row.reverse { direction: ltr; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}
