:root {
  --primary: #ff0061;
  --primary-dark: #d10050;
  --secondary: #434d65;
  --text: #434d65;
  --white: #ffffff;
  --gray-light: #f2f2f2;
  --gray-medium: #d5dee8;
  --gray-dark: #9eabb8;
  --amber: #fca334;
  --amber-surface: #fdb761;
  --orange: #f28c18;
  --blue: #1db4fd;
  --cyan: #00d0ff;
  --violet: #9b59b6;
  --favorite: #ffd700;
  --success: #00c21f;
  --bg: #fff5f8;
  --card-shadow: 0 18px 40px rgba(67, 77, 101, 0.12);
  --radius-l: 28px;
  --radius-m: 20px;
  --radius-s: 14px;
  --max-width: 1120px;
  --font-head: 'Signika', 'Segoe UI', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  color: var(--secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tagline {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213, 222, 232, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--secondary);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 6px 14px rgba(255, 0, 97, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 0, 97, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 0, 97, 0.4);
}

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}

.btn-dark:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 0, 97, 0.1);
  color: var(--primary);
}

.btn-ghost:hover {
  background: rgba(255, 0, 97, 0.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--secondary);
  border: 1.5px solid var(--gray-medium);
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lang-switch:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #fff5f8 0%, #ffffff 60%);
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin: 18px 0;
}

.hero-content h1 .highlight {
  color: var(--primary);
}

.hero-content p.lead {
  font-size: 20px;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 0, 97, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.phone-mock {
  position: relative;
  width: 280px;
  border-radius: 42px;
  padding: 12px;
  background: #1c2233;
  box-shadow: 0 40px 80px rgba(67, 77, 101, 0.35);
  z-index: 3;
}

.phone-mock img {
  border-radius: 32px;
  width: 100%;
}

.phone-mock.back {
  position: absolute;
  width: 230px;
  transform: rotate(-9deg) translateX(-120px);
  opacity: 0.95;
  z-index: 2;
  filter: saturate(1.05);
}

.phone-mock.back-2 {
  position: absolute;
  width: 220px;
  transform: rotate(9deg) translateX(120px);
  opacity: 0.9;
  z-index: 1;
}

.mascot-float {
  position: absolute;
  width: 120px;
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}

.mascot-hero-1 {
  top: 10px;
  right: 8%;
}

.mascot-hero-2 {
  bottom: 12px;
  left: 4%;
  width: 96px;
  animation-delay: 1.2s;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: 0;
}

.blob-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 0, 97, 0.35), transparent 70%);
  top: -40px;
  right: -40px;
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(29, 180, 253, 0.3), transparent 70%);
  bottom: -60px;
  left: -30px;
}

.floating-sparkle {
  position: absolute;
  width: 26px;
  opacity: 0.8;
  animation: twinkle 3s ease-in-out infinite;
}

/* ---------- Slogan strip ---------- */
.slogan {
  position: relative;
  background: linear-gradient(135deg, var(--primary), #ff4d8d);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  overflow: hidden;
}

.slogan-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slogan-mascot {
  width: 72px;
  margin-bottom: 18px;
  animation: bob 4s ease-in-out infinite;
}

.slogan-text {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.slogan-text .accent {
  color: var(--amber);
}

.slogan-sub {
  margin-top: 14px;
  font-size: 18px;
  opacity: 0.85;
  max-width: 520px;
}

.slogan-sparkle {
  position: absolute;
  width: 26px;
  opacity: 0.6;
  z-index: 1;
  animation: twinkle 3s ease-in-out infinite;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 12px 0;
}

.section-head p {
  font-size: 18px;
  color: var(--text);
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(213, 222, 232, 0.55);
  border-radius: var(--radius-l);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow);
}

.feature-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.feature-icon img {
  width: 38px;
  height: 38px;
}

.fi-pink {
  background: rgba(255, 0, 97, 0.12);
}
.fi-amber {
  background: rgba(252, 163, 52, 0.16);
}
.fi-blue {
  background: rgba(29, 180, 253, 0.14);
}
.fi-violet {
  background: rgba(155, 89, 182, 0.14);
}
.fi-cyan {
  background: rgba(0, 208, 255, 0.14);
}
.fi-green {
  background: rgba(0, 194, 31, 0.14);
}

.feature-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text);
  font-size: 16px;
}

/* ---------- Showcase (alternating) ---------- */
.showcase {
  background: var(--bg);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse .showcase-text {
  order: 2;
}

.showcase-text .eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.showcase-text h3 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 12px 0 16px;
}

.showcase-text p {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 20px;
}

.showcase-list {
  list-style: none;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}

.showcase-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.showcase-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.showcase-phone {
  width: 300px;
  border-radius: 44px;
  padding: 12px;
  background: #1c2233;
  box-shadow: var(--card-shadow);
}

.showcase-phone img {
  width: 100%;
  border-radius: 34px;
}

.showcase-visual .deco {
  position: absolute;
  width: 90px;
  z-index: -1;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 40px 0 110px;
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--primary), #ff4d8d);
  border-radius: 36px;
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 19px;
  opacity: 0.95;
  margin-bottom: 30px;
}

.cta-inner .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta-mascot {
  position: absolute;
  width: 150px;
  bottom: -20px;
  right: 40px;
  opacity: 0.95;
  animation: float 4s ease-in-out infinite;
}

.cta-sparkle {
  position: absolute;
  width: 30px;
  opacity: 0.7;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  opacity: 0.75;
  font-size: 15px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  opacity: 0.7;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Keyframes ---------- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

/* ---------- Inner page (support / privacy) ---------- */
.page-hero {
  background: linear-gradient(160deg, #fff5f8 0%, #ffffff 100%);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero img.page-mascot {
  width: 110px;
  margin: 0 auto 20px;
  animation: bob 4s ease-in-out infinite;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
}

.page-hero p {
  font-size: 19px;
  max-width: 560px;
  margin: 14px auto 0;
}

.page-body {
  padding: 64px 0 96px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.support-card {
  background: var(--white);
  border: 1px solid rgba(213, 222, 232, 0.55);
  border-radius: var(--radius-l);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
}

.support-card .emoji {
  font-size: 36px;
  margin-bottom: 14px;
}

.support-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary), #ff4d8d);
  color: var(--white);
  border-radius: 32px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-card p {
  opacity: 0.95;
  margin-bottom: 26px;
  font-size: 18px;
}

.email-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  font-size: 19px;
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.email-pill:hover {
  transform: translateY(-3px);
}

.contact-card .cta-mascot {
  bottom: -10px;
  right: 30px;
  width: 120px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(213, 222, 232, 0.6);
  border-radius: var(--radius-m);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .chevron {
  transition: transform 0.3s ease;
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text);
  font-size: 16px;
}

/* ---------- Legal content ---------- */
.legal {
  max-width: 800px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 26px;
  margin: 36px 0 12px;
}

.legal p,
.legal li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
}

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

.legal .updated {
  color: var(--gray-dark);
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p.lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    min-height: 460px;
    margin-top: 40px;
  }

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

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    margin-bottom: 64px;
  }

  .showcase-row.reverse .showcase-text {
    order: 0;
  }

  .showcase-list {
    display: inline-block;
    text-align: left;
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .phone-mock.back,
  .phone-mock.back-2 {
    display: none;
  }

  .trust-inner {
    gap: 18px;
  }

  .trust-item .num {
    font-size: 24px;
  }

  .cta-mascot {
    display: none;
  }
}
