:root {
  --bg-1: #fff8e8;
  --bg-2: #ffe0aa;
  --bg-3: #fffdf7;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.9);
  --text: #233041;
  --muted: #5f6d7f;
  --accent: #ff8a00;
  --accent-2: #6fcf97;
  --accent-3: #4da3ff;
  --accent-4: #ff6fa3;
  --shadow: 0 22px 60px rgba(92, 61, 0, 0.12);
  --border: rgba(255, 186, 84, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 219, 153, 0.75), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 168, 210, 0.32), transparent 30%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-3) 55%, #fff7ea 100%);
  overflow-x: hidden;
}

body.legal-page {
  background:
    radial-gradient(circle at top left, rgba(255, 218, 142, 0.7), transparent 32%),
    linear-gradient(180deg, #fff9ec 0%, #fffdf8 100%);
}

a {
  color: inherit;
}

.bg-orb {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.65;
}

.orb-one {
  top: -140px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 187, 92, 0.48);
}

.orb-two {
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(255, 140, 168, 0.26);
}

.pattern {
  position: fixed;
  z-index: -3;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255, 170, 72, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 170, 72, 0.18) 1px, transparent 1px);
}

.pattern-left {
  clip-path: polygon(0 0, 28% 0, 20% 100%, 0 100%);
}

.pattern-right {
  clip-path: polygon(74% 0, 100% 0, 100% 100%, 86% 100%);
}

.topbar {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 14px;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffda7d, #ff8a00);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(255, 138, 0, 0.18);
}

.brand-text {
  display: grid;
}

.brand-text strong,
.footer strong,
.legal-card h1,
.section-heading h2,
.hero-copy h1,
.highlight-card h2 {
  font-family: "Fredoka", sans-serif;
}

.brand-text small {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.98rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: #4a5868;
}

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

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding-top: 34px;
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.pill,
.eyebrow,
.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #ffb347, #ff8a00);
  box-shadow: 0 16px 28px rgba(255, 138, 0, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-note span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 186, 84, 0.2);
}

.hero-art {
  display: grid;
  place-items: center;
}

.phone-card {
  width: min(100%, 430px);
  padding: 16px;
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 84, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 233, 0.92));
  box-shadow: 0 30px 70px rgba(120, 83, 0, 0.16);
  transform: rotate(4deg);
}

.phone-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.phone-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffd86a;
}

.phone-top span:nth-child(2) {
  background: #77d4ff;
}

.phone-top span:nth-child(3) {
  background: #ff8fb1;
}

.illustration {
  position: relative;
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 248, 178, 0.9), transparent 12%),
    linear-gradient(180deg, #fff1bd 0%, #ffd4a4 42%, #fffdf8 42%, #fffdf8 100%);
}

.sun {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7be, #ffcc4f 72%, #ff9b27 100%);
  box-shadow: 0 0 0 14px rgba(255, 204, 79, 0.2);
}

.cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 18px 12px 0 rgba(255, 255, 255, 0.72);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud-a {
  top: 64px;
  left: 42px;
  width: 110px;
  height: 38px;
}

.cloud-a::before {
  width: 54px;
  height: 54px;
  left: 10px;
  top: -22px;
}

.cloud-a::after {
  width: 62px;
  height: 62px;
  right: 10px;
  top: -30px;
}

.cloud-b {
  top: 112px;
  right: 70px;
  width: 120px;
  height: 42px;
}

.cloud-b::before {
  width: 58px;
  height: 58px;
  left: 14px;
  top: -22px;
}

.cloud-b::after {
  width: 66px;
  height: 66px;
  right: 12px;
  top: -32px;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  border: 5px solid rgba(255, 255, 255, 0.86);
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 14px 26px rgba(91, 65, 0, 0.12);
}

.bubble-a {
  left: 36px;
  top: 170px;
  transform: rotate(-10deg);
  background: linear-gradient(135deg, #ff9cc2, #ff6a9f);
}

.bubble-b {
  left: 132px;
  top: 234px;
  transform: rotate(9deg);
  background: linear-gradient(135deg, #7ed957, #2ea74d);
}

.bubble-c {
  left: 226px;
  top: 176px;
  transform: rotate(-6deg);
  background: linear-gradient(135deg, #6ec5ff, #2f8ef0);
}

.bubble-d {
  right: 40px;
  top: 228px;
  transform: rotate(10deg);
  background: linear-gradient(135deg, #ffd66b, #ff9b27);
}

.mini-panel {
  margin-top: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.mini-panel strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
}

.mini-panel span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  font-size: 1.1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2,
.highlight-card h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
}

.feature-card h3,
.info-card h3,
.benefit-card strong {
  margin: 0 0 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
}

.feature-card p,
.info-card p,
.benefit-card p,
.highlight-card p,
.legal-card p,
.legal-card li,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.icon-green {
  background: linear-gradient(135deg, #9be67b, #4cc36c);
}

.icon-blue {
  background: linear-gradient(135deg, #7ec7ff, #4a98ff);
}

.icon-yellow {
  background: linear-gradient(135deg, #ffd86b, #ffb347);
}

.icon-pink {
  background: linear-gradient(135deg, #ff9bc2, #ff6fa3);
}

.icon-purple {
  background: linear-gradient(135deg, #9d8bff, #6d63ff);
}

.icon-orange {
  background: linear-gradient(135deg, #ffc37b, #ff8f3d);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.highlight-card {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 210, 118, 0.4), transparent 28%),
    rgba(255, 255, 255, 0.82);
}

.benefit-stack {
  display: grid;
  gap: 16px;
}

.benefit-card {
  padding: 22px;
}

.info-card {
  padding: 22px;
}

.info-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-badge {
  margin-top: 16px;
  color: white;
  background: linear-gradient(135deg, #ffb347, #ff8a00);
  border-color: transparent;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
  color: #4a5868;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-credit {
  grid-column: 1 / -1;
  padding-top: 4px;
  border-top: 1px dashed rgba(255, 186, 84, 0.35);
  text-align: center;
  font-weight: 800;
  color: #415163;
}

.footer-contact {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: #5b6b7d;
}

.footer-contact a,
.contact-box a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

.footer-contact a:hover,
.contact-box a:hover {
  text-decoration: underline;
}

.legal-shell {
  width: min(900px, calc(100% - 32px));
  margin: 28px auto 42px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #5b6b7d;
}

.back-link:hover {
  color: var(--accent);
}

.legal-card {
  padding: 28px;
  background: var(--card-strong);
}

.legal-card h1 {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.legal-card h2 {
  margin: 26px 0 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.35rem;
}

.legal-card ul {
  margin: 12px 0 0 20px;
  padding: 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-meta {
  margin-top: 0;
  color: #7d8897;
  font-weight: 800;
}

.contact-box {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 184, 82, 0.14);
  border: 1px solid rgba(255, 184, 82, 0.28);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .feature-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-art {
    order: -1;
  }

  .phone-card {
    transform: none;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section,
  .topbar,
  .footer,
  .legal-shell {
    width: min(100%, calc(100% - 22px));
  }

  .section {
    padding: 30px 0;
  }

  .topbar {
    padding: 14px;
    border-radius: 22px;
  }

  .nav {
    gap: 10px 14px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
  }

  .lead {
    font-size: 1rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .illustration {
    height: 310px;
  }

  .bubble {
    width: 66px;
    height: 66px;
    font-size: 1.5rem;
    border-width: 4px;
  }

  .bubble-a {
    left: 24px;
    top: 152px;
  }

  .bubble-b {
    left: 104px;
    top: 206px;
  }

  .bubble-c {
    left: 188px;
    top: 156px;
  }

  .bubble-d {
    right: 24px;
    top: 204px;
  }

  .feature-card,
  .highlight-card,
  .benefit-card,
  .info-card,
  .legal-card,
  .footer {
    padding: 20px;
  }
}
