/* Canva-inspired playful design — stickers, gradients, soft shadows, colorful accents */
:root {
  --bg: #f8f6ff;
  --surface: #ffffff;
  --ink: #1e1b2e;
  --muted: #6b6580;
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --yellow: #fbbf24;
  --green: #34d399;
  --orange: #fb923c;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(139, 92, 246, 0.12), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-soft: 0 6px 20px rgba(139, 92, 246, 0.1);
  --radius: 20px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

a { color: var(--primary); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(1140px, 92%); margin: auto; }

/* Sticky header with soft glass */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; color: var(--ink); font-size: 1.15rem;
}
.brand img {
  width: 46px; height: 46px; border-radius: 14px;
  object-fit: cover; box-shadow: var(--shadow-soft);
  border: 2px solid #fff;
}
.nav-links { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: #4b4458; font-weight: 650; padding: 9px 14px;
  border-radius: 999px; font-size: 0.95rem;
}
.nav-links a:hover {
  background: linear-gradient(135deg, #f3e8ff, #fce7f3);
  color: var(--primary);
}

/* Buttons — sticker-like */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff !important; font-weight: 750; border: 0;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.45);
}
.btn.alt {
  background: #fff;
  color: var(--primary) !important;
  box-shadow: var(--shadow);
  border: 2px solid #e9d5ff;
}
.mobile-toggle {
  display: none; border: 0; background: #fff;
  border-radius: 12px; padding: 10px 14px;
  box-shadow: var(--shadow-soft); font-weight: 700; color: var(--ink);
}

/* Hero */
.hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(236,72,153,0.18), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; bottom: -40px; left: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 40px; align-items: center; position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, #f3e8ff, #fce7f3);
  color: var(--primary); font-weight: 750; font-size: 0.82rem;
  border: 1px solid #e9d5ff;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 1.08; letter-spacing: -0.03em; margin: 16px 0 14px;
  background: linear-gradient(135deg, #1e1b2e 30%, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 620px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 12px; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow);
  border: 3px solid #fff;
  position: relative;
}
.hero-card::before {
  content: "✨";
  position: absolute; top: -14px; right: 18px;
  font-size: 1.6rem;
  background: #fff; border-radius: 50%;
  width: 40px; height: 40px; display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
}
.hero-card img { border-radius: 18px; width: 100%; }

/* Sticker pills */
.link-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.link-pills a {
  padding: 8px 14px; border-radius: 999px;
  background: #fff; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #f3e8ff;
  color: #5b21b6;
}
.link-pills a:hover { background: linear-gradient(135deg, #f3e8ff, #fce7f3); }

/* Sections */
.section { padding: 64px 0; position: relative; }
.section h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 14px;
}
.section-intro { color: var(--muted); max-width: 720px; margin-bottom: 8px; }
.alt-bg { background: linear-gradient(180deg, rgba(243,232,255,0.45), transparent); }

/* Feature / image strip */
.feature-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px;
}
.feature-image {
  background: #fff; padding: 14px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 2px solid #fff;
  position: relative;
}
.feature-image img { border-radius: 16px; width: 100%; }
.feature-image .sticker {
  position: absolute; top: -12px; left: 16px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e1b2e; font-weight: 800; font-size: 0.78rem;
  padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(251,191,36,0.4);
}

/* Content blocks with images */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: center; margin: 36px 0;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  background: #fff; padding: 14px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 3px solid #fff;
  position: relative;
}
.split-img img { border-radius: 16px; width: 100%; }
.split-img .badge {
  position: absolute; bottom: 22px; right: 22px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff; font-weight: 750; font-size: 0.8rem;
  padding: 6px 14px; border-radius: 999px;
}

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0;
}
.stat {
  background: #fff; padding: 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-soft); text-align: center;
  border: 1px solid #f3e8ff;
}
.stat strong { display: block; font-size: 1.35rem; color: var(--primary); }
.stat span { color: var(--muted); font-size: 0.88rem; }

/* Cards */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px;
}
.card {
  background: #fff; padding: 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-soft); border: 1px solid #f3e8ff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card img { border-radius: 14px; margin-bottom: 14px; }
.card h3 { margin: 10px 0 6px; font-size: 1.1rem; line-height: 1.3; }
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* Table */
.data-table-wrap {
  overflow: hidden; margin: 28px 0; border-radius: var(--radius);
  box-shadow: var(--shadow-soft); background: #fff; border: 1px solid #f3e8ff;
}
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td {
  padding: 14px 16px; text-align: left; vertical-align: top;
  border-bottom: 1px solid #f3e8ff;
}
.data-table th {
  background: linear-gradient(135deg, #f3e8ff, #fce7f3);
  font-size: 0.9rem; color: #5b21b6;
}
.data-table tr:last-child td { border-bottom: 0; }

/* Lists as sticker steps */
.step-list { list-style: none; padding: 0; margin: 20px 0; }
.step-list li {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 14px 0; background: #fff; padding: 14px 16px;
  border-radius: 16px; box-shadow: var(--shadow-soft);
  border: 1px solid #f3e8ff;
}
.step-list .num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 0.9rem;
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: #fff; padding: 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-soft); border: 1px solid #f3e8ff;
}
.faq-item h3 { margin: 0 0 6px; font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* CTA */
.cta {
  padding: 36px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #7c3aed, #db2777);
  color: #fff; box-shadow: 0 12px 36px rgba(124, 58, 237, 0.35);
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta h2 { margin: 0; color: #fff; }
.cta p { margin: 6px 0 0; color: rgba(255,255,255,0.9); }
.cta .btn {
  background: #fff; color: #7c3aed !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Blog hero & breadcrumbs */
.blog-hero { padding: 50px 0 30px; }
.breadcrumbs { font-size: 0.88rem; color: var(--muted); padding: 12px 0; }
.breadcrumbs a { color: var(--muted); }

/* Content area */
.content { max-width: 860px; }
.content p { margin: 0 0 16px; }
.content h2 { margin-top: 40px; }
.content h3 { margin-top: 26px; }
.content ul { padding-left: 22px; }
.content li { margin: 8px 0; }

/* Notice / warning */
.notice {
  padding: 16px 18px; margin: 20px 0; border-radius: 16px;
  background: #fff; box-shadow: var(--shadow-soft); border: 1px solid #f3e8ff;
}
.warning { border-left: 5px solid var(--orange); }

/* Footer */
.footer {
  background: #1e1b2e; color: #c4b5fd; padding: 50px 0 22px; margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px;
}
.footer h3 { color: #fff; margin-top: 0; font-size: 1.05rem; }
.footer a { color: #c4b5fd; display: inline-block; margin: 4px 0; }
.footer a:hover { color: #fff; }
.footer p { color: #a78bfa; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(167, 139, 250, 0.2);
  margin-top: 30px; padding-top: 16px;
}
.footer small { color: #8b7bb8; }

/* Decorative floating stickers (CSS only) */
.sticker-float {
  position: absolute; font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .split, .article-layout { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .split.reverse { direction: ltr; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  .cards, .faq-grid, .feature-strip, .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .data-table-wrap { overflow-x: auto; }
  .data-table { min-width: 580px; }
  .cta { flex-direction: column; text-align: center; }
}
