:root {
  --paper: #fefbf4;
  --paper-2: #fffdf8;
  --ink: #1e293b;
  --ink-soft: #475569;
  --ink-mute: #64748b;
  --accent: #3b82f6;
  --accent-dark: #2563eb;
  --accent-soft: #dbeafe;
  --warm: #fb923c;
  --warm-soft: #ffedd5;
  --sun: #fbbf24;
  --leaf: #4ade80;
  --border: #e7e0d0;
  --border-dot: #c9c0ab;
  --card-bg: #fffdf8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", "Segoe UI", Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- doodle background dots ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(59, 130, 246, 0.10) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 60% 0%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 0%, black 40%, transparent 75%);
}

h1, h2, h3 {
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 5px 0 #1d4ed8;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #1d4ed8; }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 #1d4ed8; }
.btn-soft {
  background: var(--card-bg);
  color: var(--ink);
  border-color: var(--border-dot);
  border-style: dashed;
}
.btn-soft:hover { transform: translateY(-2px); background: var(--paper-2); }
.btn-block { width: 100%; }

/* ---- nav ---- */
.nav { padding: 18px 24px 0; }
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-bottom-width: 5px;
  border-radius: 18px;
  padding: 10px 18px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff; font-weight: 700; font-size: 20px;
  font-family: "Fredoka", sans-serif;
  box-shadow: 0 3px 0 #1d4ed8;
  transform: rotate(-4deg);
}
.brand-name { font-family: "Fredoka", sans-serif; font-size: 20px; font-weight: 600; color: var(--ink); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 700; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent-dark); }
.nav-cta { padding: 9px 18px; font-size: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 3px; background: var(--ink); border-radius: 3px; }

/* ---- hero ---- */
.hero { padding: 70px 24px 30px; }
.hero-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.hero-copy { max-width: 700px; }
.hero-title {
  font-size: clamp(40px, 8vw, 68px);
  line-height: 1.05;
  font-weight: 700;
}
.doodle-wrap { position: relative; display: inline-block; white-space: nowrap; }
.squiggle {
  position: absolute;
  left: 0; right: -6px; bottom: -10px;
  width: 100%; height: 12px;
}
.hero-sub {
  margin-top: 26px;
  max-width: 540px;
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* stickers + doodles */
.sticker {
  position: absolute;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px dashed currentColor;
  background: var(--card-bg);
  box-shadow: 0 4px 0 rgba(30, 41, 59, 0.08);
}
.sticker-1 { top: 20px; right: 4px; color: var(--accent-dark); transform: rotate(5deg); }
.sticker-2 { top: 74px; right: 130px; color: var(--warm); transform: rotate(-6deg); }

.doodle { position: absolute; z-index: -1; }
.doodle-sun { width: 64px; height: 64px; right: 210px; bottom: -18px; }
.doodle-flower { width: 56px; height: 56px; right: -10px; top: 150px; }

/* ---- sections ---- */
.section { padding: 60px 24px; max-width: 1080px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 5vw, 40px); font-weight: 700; }
.lead { margin-top: 10px; font-size: 17px; font-weight: 600; color: var(--ink-soft); }

/* cards */
.card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-bottom-width: 5px;
  border-radius: 22px;
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: 0 14px 28px rgba(30, 41, 59, 0.10); }

.tilt-left { transform: rotate(-1deg); }
.tilt-right { transform: rotate(1.2deg); }

.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  border-radius: 14px;
  background: var(--accent-soft);
  margin-bottom: 16px;
}
.card h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-soft); }

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

/* why */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.why-card-accent { background: var(--warm-soft); border-color: #fcd9b3; }
.why-card ul { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 9px; }
.why-card li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.why-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-dark); font-weight: 900; }
.why-card li strong { color: var(--ink); }

/* steps */
.steps { display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin: 0 auto; }
.step { display: flex; align-items: flex-start; gap: 18px; padding: 20px 22px; }
.step:nth-child(odd) { transform: rotate(-0.6deg); }
.step:nth-child(even) { transform: rotate(0.8deg); }
.step-num {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff; font-weight: 700; font-size: 18px;
  font-family: "Fredoka", sans-serif;
  box-shadow: 0 3px 0 #1d4ed8;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* pricing */
.pricing-card { max-width: 600px; margin: 0 auto; border-radius: 26px; padding: 34px; }
.price-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.price-head h3 { font-size: 20px; font-weight: 600; }
.price-note { font-size: 14px; color: var(--ink-mute); margin-top: 2px; font-weight: 600; }
.price { display: flex; align-items: baseline; gap: 6px; }
.price-amount { font-family: "Fredoka", sans-serif; font-size: 42px; font-weight: 600; letter-spacing: -0.03em; color: var(--accent-dark); }
.price-period { font-size: 15px; color: var(--ink-mute); font-weight: 700; }

.ticks { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.ticks li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-dark); font-weight: 900; }

/* contact */
.contact-card { max-width: 640px; margin: 0 auto; border-radius: 26px; padding: 40px 32px; text-align: center; }
.contact-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* footer */
.footer { margin-top: 20px; padding: 30px 24px; text-align: center; border-top: 2px dashed var(--border-dot); }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--ink-mute); font-weight: 600; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .sticker-2 { right: 20px; }
  .doodle-sun { display: none; }
}
@media (max-width: 720px) {
  .grid, .why-wrap { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 8px 0;
    box-shadow: 0 12px 30px rgba(30, 41, 59, 0.12);
  }
  .nav { position: relative; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 22px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .contact-actions { flex-direction: column; }
  .sticker { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}