/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6; color: #1f2937; background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--gray { background: #f9fafb; }
.section--dark { background: #0f172a; color: #e2e8f0; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.section-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #2563eb; margin-bottom: 8px; }
.section-title { margin-bottom: 14px; color: #111827; }
.section-subtitle { color: #6b7280; max-width: 620px; font-size: 1.05rem; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.section-header { margin-bottom: 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.35); }
.btn-outline { background: transparent; border: 2px solid #2563eb; color: #2563eb; }
.btn-outline:hover { background: #2563eb; color: #fff; }
.btn-white { background: #fff; color: #1e40af; font-weight: 700; }
.btn-white:hover { background: #f0f9ff; color: #1e40af; }
.btn-gold { background: #f59e0b; color: #1c1917; font-weight: 700; }
.btn-gold:hover { background: #d97706; color: #1c1917; box-shadow: 0 4px 20px rgba(245,158,11,.35); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 8px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}
.navbar__inner {
  max-width: 1140px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.3rem; color: #1e40af; text-decoration: none;
}
.navbar__logo:hover { text-decoration: none; }
.navbar__logo-icon {
  width: 38px; height: 38px; background: #2563eb; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem;
}
.navbar__nav { display: flex; align-items: center; gap: 2px; }
.navbar__nav a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: #374151; transition: all 0.15s;
}
.navbar__nav a:hover { background: #f3f4f6; color: #2563eb; text-decoration: none; }
.navbar__nav a.active { color: #2563eb; background: #eff6ff; }
.navbar__cta { margin-left: 16px; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.navbar__hamburger span { display: block; width: 22px; height: 2px; background: #374151; border-radius: 2px; transition: all 0.2s; }
.navbar__mobile { display: none; border-top: 1px solid #e5e7eb; padding: 16px 20px 20px; background: #fff; }
.navbar__mobile.open { display: block; }
.navbar__mobile a { display: block; padding: 11px 0; font-size: 0.95rem; font-weight: 500; color: #374151; border-bottom: 1px solid #f3f4f6; }
.navbar__mobile a:hover { color: #2563eb; text-decoration: none; }
.navbar__mobile .btn { margin-top: 14px; display: inline-flex; }
@media (max-width: 840px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #2563eb 100%);
  color: #fff; padding: 88px 0;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 22px;
}
.hero__badge-dot { width: 8px; height: 8px; background: #fbbf24; border-radius: 50%; animation: pulse 2s infinite; }
.hero__title { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; line-height: 1.13; margin-bottom: 20px; }
.hero__title span { color: #fbbf24; }
.hero__subtitle { font-size: 1.1rem; line-height: 1.75; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image { display: flex; justify-content: center; align-items: center; }
.phone-mockup {
  background: #1e3a8a; border-radius: 36px; padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4); width: 230px; position: relative;
}
.phone-mockup__screen {
  background: #fff; border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 440px;
}
.phone-mockup__header {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  padding: 20px 16px 24px; color: #fff;
}
.phone-mockup__header .brand { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; opacity: 0.8; }
.phone-mockup__header .coins { background: rgba(255,255,255,0.2); border-radius: 20px; padding: 4px 10px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-top: 6px; }
.phone-mockup__body { padding: 14px; background: #f8fafc; flex: 1; }
.phone-task {
  background: #fff; border-radius: 12px; padding: 12px;
  margin-bottom: 10px; border: 1px solid #e5e7eb; display: flex; align-items: center; gap: 10px;
}
.phone-task__icon { font-size: 1.4rem; }
.phone-task__info { flex: 1; }
.phone-task__title { font-size: 0.75rem; font-weight: 700; color: #1f2937; }
.phone-task__coins { font-size: 0.7rem; color: #2563eb; font-weight: 600; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 40px; }
.hero__stat {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 16px 12px; text-align: center;
}
.hero__stat-num { font-size: 1.6rem; font-weight: 800; color: #fbbf24; line-height: 1; }
.hero__stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 5px; }
@media (max-width: 800px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__image { order: -1; }
  .hero__badge { margin: 0 auto 22px; }
  .hero__actions { justify-content: center; }
  .hero__stats { grid-template-columns: repeat(3,1fr); }
}

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
  background: #fff; border: 1.5px solid #e5e7eb; border-radius: 18px; padding: 28px 24px;
  transition: all 0.2s;
}
.feature-card:hover { border-color: #bfdbfe; box-shadow: 0 6px 24px rgba(37,99,235,.1); transform: translateY(-3px); }
.feature-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card__title { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.feature-card__desc { font-size: 0.875rem; color: #6b7280; line-height: 1.65; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 36px; }
.step-card { text-align: center; padding: 8px; }
.step-card__num {
  width: 60px; height: 60px; background: #2563eb; color: #fff; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; margin: 0 auto 18px;
}
.step-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.step-card__title { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.step-card__desc { font-size: 0.9rem; color: #6b7280; line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 26px; }
.testimonial-card__stars { color: #f59e0b; margin-bottom: 14px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card__text { font-size: 0.9rem; color: #374151; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card__info { font-size: 0.78rem; color: #9ca3af; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem;
  color: #1f2937; gap: 16px; background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: #2563eb; }
.faq-question__icon {
  width: 26px; height: 26px; border-radius: 50%; background: #eff6ff; color: #2563eb;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  transition: transform 0.25s; line-height: 1;
}
.faq-question.open .faq-question__icon { transform: rotate(45deg); }
.faq-answer { font-size: 0.95rem; color: #4b5563; line-height: 1.75; padding-bottom: 20px; display: none; }
.faq-answer.open { display: block; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ===== AD SLOTS ===== */
.ad-slot {
  border: 2px dashed #d1d5db; border-radius: 10px; padding: 24px 20px;
  text-align: center; color: #9ca3af; margin: 32px 0; background: #fafafa;
}
.ad-slot__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.ad-slot__size { font-size: 0.85rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border: 1.5px solid #e5e7eb; border-radius: 18px; overflow: hidden; transition: all 0.22s; }
.blog-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.08); transform: translateY(-4px); border-color: #bfdbfe; }
.blog-card__image {
  height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3.2rem;
}
.blog-card__body { padding: 24px; }
.blog-card__category { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #2563eb; margin-bottom: 8px; }
.blog-card__title { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 10px; line-height: 1.45; }
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: #2563eb; text-decoration: none; }
.blog-card__excerpt { font-size: 0.875rem; color: #6b7280; line-height: 1.65; margin-bottom: 18px; }
.blog-card__meta { font-size: 0.78rem; color: #9ca3af; display: flex; align-items: center; gap: 6px; }

/* ===== ARTICLE ===== */
.article-header { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: #fff; padding: 72px 0 56px; }
.article-header .breadcrumb { margin-bottom: 14px; }
.article-header h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.article-header__meta { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,.72); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; padding: 56px 0 72px; }
.article-body h2 { font-size: 1.55rem; font-weight: 700; color: #111827; margin: 40px 0 16px; padding-top: 8px; }
.article-body h3 { font-size: 1.15rem; font-weight: 600; color: #1f2937; margin: 30px 0 12px; }
.article-body p { font-size: 1rem; line-height: 1.82; color: #374151; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 26px; margin-bottom: 18px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 1rem; line-height: 1.75; color: #374151; margin-bottom: 8px; }
.article-body strong { color: #111827; }
.article-body .callout {
  background: #eff6ff; border-left: 4px solid #2563eb;
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 28px 0;
}
.article-body .callout p { color: #1e40af; font-weight: 500; margin: 0; }
.article-body .warning {
  background: #fffbeb; border-left: 4px solid #f59e0b;
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 28px 0;
}
.article-body .warning p { color: #92400e; font-weight: 500; margin: 0; }
.article-sidebar { position: sticky; top: 82px; }
.sidebar-widget { background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 16px; padding: 24px; margin-bottom: 24px; }
.sidebar-widget h3 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #6b7280; margin-bottom: 16px; }
.sidebar-widget ul li { padding: 9px 0; border-bottom: 1px solid #e5e7eb; font-size: 0.875rem; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: #374151; }
.sidebar-widget ul li a:hover { color: #2563eb; text-decoration: none; }
.sidebar-cta { background: linear-gradient(135deg, #1e40af, #2563eb); color: #fff; border-radius: 16px; padding: 24px; text-align: center; margin-bottom: 24px; }
.sidebar-cta p { color: rgba(255,255,255,.85); font-size: 0.85rem; margin-bottom: 16px; }
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: #fff; padding: 72px 0 60px; text-align: center; }
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-top: 14px; max-width: 600px; margin-left: auto; margin-right: auto; }
.breadcrumb { font-size: 0.83rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid #d1d5db; border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: #1f2937; background: #fff;
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 46px; height: 46px; background: #eff6ff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.contact-info-text h4 { font-weight: 700; margin-bottom: 4px; font-size: 1rem; }
.contact-info-text p { font-size: 0.875rem; color: #6b7280; margin: 0; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== LEGAL ===== */
.legal-body { max-width: 760px; margin: 0 auto; padding: 56px 0 72px; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; margin: 44px 0 16px; color: #1e40af; border-top: 2px solid #eff6ff; padding-top: 8px; }
.legal-body h3 { font-size: 1.05rem; font-weight: 600; margin: 28px 0 12px; color: #1f2937; }
.legal-body p { font-size: 0.95rem; line-height: 1.8; color: #374151; margin-bottom: 14px; }
.legal-body ul { padding-left: 24px; list-style: disc; margin-bottom: 14px; }
.legal-body li { font-size: 0.95rem; line-height: 1.7; color: #374151; margin-bottom: 7px; }
.legal-toc { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 14px; padding: 22px 28px; margin-bottom: 48px; }
.legal-toc h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: #9ca3af; margin-bottom: 14px; }
.legal-toc ol { padding-left: 20px; list-style: decimal; }
.legal-toc li { font-size: 0.9rem; margin-bottom: 7px; }
.legal-toc a { color: #2563eb; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: #94a3b8; padding: 68px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__logo {
  font-size: 1.3rem; font-weight: 800; color: #f1f5f9;
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer__logo-icon {
  width: 34px; height: 34px; background: #2563eb; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff;
}
.footer__desc { font-size: 0.875rem; line-height: 1.75; max-width: 280px; }
.footer__disclaimer { font-size: 0.78rem; color: #475569; margin-top: 12px; line-height: 1.6; }
.footer__heading { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #f1f5f9; margin-bottom: 18px; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 0.875rem; color: #94a3b8; transition: color 0.15s; }
.footer__links a:hover { color: #f1f5f9; text-decoration: none; }
.footer__bottom { border-top: 1px solid #1e293b; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer__copy { font-size: 0.8rem; }
.footer__legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal-links a { font-size: 0.8rem; color: #94a3b8; }
.footer__legal-links a:hover { color: #f1f5f9; text-decoration: none; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; text-align: center; } }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: #fff; text-align: center; padding: 88px 0; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,.6); }

/* ===== DISCLAIMER BOX ===== */
.disclaimer-box {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px;
  padding: 18px 22px; font-size: 0.875rem; color: #92400e; line-height: 1.65;
}
.disclaimer-box strong { color: #78350f; }

/* ===== ABOUT PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: #fff; border: 1.5px solid #e5e7eb; border-radius: 18px; padding: 28px 22px; text-align: center; }
.value-card__icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-card__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.value-card__text { font-size: 0.875rem; color: #6b7280; line-height: 1.65; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-item { text-align: center; }
.stat-item__num { font-size: 2.2rem; font-weight: 800; color: #2563eb; line-height: 1; }
.stat-item__label { font-size: 0.875rem; color: #6b7280; margin-top: 6px; }

/* ===== HOW IT WORKS PAGE ===== */
.hiw-section { display: flex; gap: 36px; margin-bottom: 64px; align-items: flex-start; }
.hiw-num {
  width: 60px; height: 60px; background: #2563eb; color: #fff; border-radius: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; flex-shrink: 0;
}
.hiw-content h2 { font-size: 1.55rem; margin-bottom: 14px; }
.hiw-content p { font-size: 1rem; line-height: 1.8; color: #374151; margin-bottom: 14px; }
.tip-box { background: #f0f9ff; border-radius: 12px; padding: 18px 22px; margin-top: 18px; }
.tip-box h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: #0284c7; font-weight: 700; margin-bottom: 10px; }
.tip-box ul { padding-left: 20px; list-style: disc; }
.tip-box ul li { font-size: 0.9rem; color: #0c4a6e; margin-bottom: 6px; }
@media (max-width: 640px) { .hiw-section { flex-direction: column; gap: 20px; } }

/* ===== UTILITIES ===== */
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }
.badge-blue { background: #eff6ff; color: #1d4ed8; }
.badge-green { background: #ecfdf5; color: #059669; }
.badge-gold { background: #fffbeb; color: #b45309; }
.divider { border: none; border-top: 1px solid #e5e7eb; margin: 40px 0; }
.text-muted { color: #6b7280; }
.text-sm { font-size: 0.875rem; }
.font-bold { font-weight: 700; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* ===== RESPONSIVE MISC ===== */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
}
