:root {
  --cream: #fff6e4;
  --cream-light: #fff9f5;
  --coral: #f87171;
  --coral-deep: #ef4444;
  --pink: #ff8fa3;
  --navy: #1e293b;
  --subtext: #64748b;
  --white: #ffffff;
  --line: #fecdd3;
  --mint: #ccfbf1;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 12px 32px rgba(30, 41, 59, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 143, 163, 0.25) 0, transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(244, 114, 182, 0.18) 0, transparent 34%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-light) 55%, #ffffff 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.6;
}

.bg-orb-a {
  width: 260px;
  height: 260px;
  top: -70px;
  left: -40px;
  background: rgba(248, 113, 113, 0.28);
}

.bg-orb-b {
  width: 220px;
  height: 220px;
  top: 32%;
  right: -80px;
  background: rgba(52, 211, 153, 0.18);
}

.bg-orb-c {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: 40%;
  background: rgba(244, 114, 182, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 56px);
  backdrop-filter: blur(10px);
  background: rgba(255, 249, 245, 0.86);
  border-bottom: 1px solid rgba(255, 143, 163, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.15rem, 1vw + 0.9rem, 1.45rem);
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
}

.header-nav a:hover {
  color: var(--coral-deep);
}

.pill-link {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #fff !important;
  padding: 9px 14px;
  border-radius: 999px;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 4px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--subtext);
  font-weight: 700;
  padding: 7px 11px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: #fff;
}

main {
  width: min(1200px, 100% - 36px);
  margin: 22px auto 80px;
}

.section {
  margin: 38px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--coral-deep);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.28;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
}

h3 {
  font-size: 1.16rem;
  font-weight: 800;
}

p {
  line-height: 1.72;
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 15px;
}

.hero-sub {
  color: var(--subtext);
  font-size: 1.02rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.32);
}

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(248, 113, 113, 0.16);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.problem-grid,
.feature-grid,
.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loop-grid,
.how-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.loop-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 10px;
  background: linear-gradient(145deg, #ffd7ba, #ffb3c8);
  font-weight: 800;
}

.feature-card {
  border: 1px solid rgba(45, 212, 191, 0.3);
  background: linear-gradient(165deg, #ffffff, #f0fdfa);
}

.how-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.legal-links a,
.site-footer a {
  color: var(--coral-deep);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  color: var(--subtext);
}

.cta-final {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 245, 0.84));
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.2vw, 34px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(1200px, 100% - 36px);
  margin: 0 auto 24px;
  color: var(--subtext);
}

.site-footer div {
  display: flex;
  gap: 12px;
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .problem-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  main {
    width: min(1200px, 100% - 24px);
    margin-top: 10px;
  }

  .header-nav {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 0.92rem;
  }

  .problem-grid,
  .feature-grid,
  .trust-grid,
  .loop-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
