/* ==========================================
   KOME APP - Premium Design System
   Primary: #7C3AED | White Backgrounds
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --primary:        #7C3AED;
  --primary-dark:   #5B21B6;
  --primary-light:  #A78BFA;
  --primary-lighter:#EDE9FE;
  --accent:         #9333EA;
  --accent-2:       #C084FC;
  --grad-1: linear-gradient(135deg, #4C1D95 0%, #7C3AED 45%, #9333EA 100%);
  --grad-2: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  --grad-hero: linear-gradient(135deg, #3B0764 0%, #6D28D9 40%, #9333EA 70%, #C084FC 100%);
  --white:        #FFFFFF;
  --off-white:    #FAFAFA;
  --bg-light:     #F5F3FF;
  --bg-lighter:   #FAF5FF;
  --text-dark:    #1E1B4B;
  --text-med:     #374151;
  --text-light:   #6B7280;
  --border:       #E5E7EB;
  --border-p:     #DDD6FE;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.10);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.12);
  --shadow-p:  0 8px 32px rgba(124,58,237,.25);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;
  --tr: all .3s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-d: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-d); line-height: 1.2; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-purple { color: var(--primary); }
.bg-light { background: var(--bg-light); }
.bg-lighter { background: var(--bg-lighter); }
.bg-white { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Section Headers ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-lighter);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-1);
  color: var(--white);
  box-shadow: var(--shadow-p);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,.4); }
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary-lighter); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-ghost {
  background: var(--primary-lighter);
  color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; justify-content: center; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,.08);
  transition: var(--tr);
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-med);
  transition: var(--tr);
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--primary-lighter); }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--tr);
  display: block;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--tr);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--primary); background: var(--primary-lighter); }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-content { position: relative; z-index: 1; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, #FDE68A, #FCA5A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { color: white; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; line-height: 1; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.65); }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-img-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-xl);
  padding: 32px;
  overflow: hidden;
}
.hero-placeholder-art {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.18) 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}
.hero-float-card-1 { top: -20px; left: -20px; animation-delay: 0s; }
.hero-float-card-2 { bottom: -20px; right: -20px; animation-delay: 1.5s; }
.hero-float-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--grad-1);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.80);
  max-width: 600px;
  margin: 0 auto 24px;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.70);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.90); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: .5; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--tr);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-p); }
.card-icon {
  width: 60px; height: 60px;
  background: var(--primary-lighter);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--tr);
}
.card:hover .card-icon { background: var(--primary); }
.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.card p { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* Glass card */
.glass-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: var(--tr);
}
.glass-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }

/* Feature card */
.feature-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  transition: var(--tr);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-p); }
.feature-card-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--primary-lighter);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.feature-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Stat card */
.stat-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.stat-card .stat-val {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-label { font-size: 14px; color: var(--text-light); }

/* Purple card */
.purple-card {
  background: var(--grad-1);
  border-radius: var(--r-xl);
  padding: 36px;
  color: white;
}
.purple-card h3 { color: white; margin-bottom: 12px; }
.purple-card p { color: rgba(255,255,255,.80); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 15px;
}
.data-table th {
  background: var(--grad-1);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.data-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-med);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-lighter); }
.data-table td.highlight { color: var(--primary); font-weight: 700; font-size: 17px; }
.data-table td.highlight-gold { color: #D97706; font-weight: 700; font-size: 17px; }

/* Commission table special styling */
.commission-table th:first-child { border-radius: 0; }
.commission-row-a td.pct { color: #7C3AED; font-weight: 700; }
.commission-row-f td.pct { color: #059669; font-weight: 800; font-size: 20px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border-p);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--tr);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.08); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: var(--tr);
  gap: 16px;
}
.faq-q:hover { background: var(--bg-lighter); }
.faq-item.open .faq-q { background: var(--primary-lighter); }
.faq-q-text { font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.faq-item.open .faq-q-text { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--tr);
}
.faq-item.open .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 600px; }

/* ── Steps / Process ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: var(--border-p);
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.step-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; padding-top: 8px; }
.step-body p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* ── Tags / Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
}
.badge-purple { background: var(--primary-lighter); color: var(--primary); }
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-gold { background: #FEF3C7; color: #92400E; }
.badge-red { background: #FEE2E2; color: #991B1B; }

/* ── Blog Cards ── */
.blog-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-p); }
.blog-card-thumb {
  height: 200px;
  background: var(--grad-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
}
.blog-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.6), rgba(147,51,234,.4));
}
.blog-card-thumb-icon { position: relative; z-index: 1; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.blog-card-title:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card-read { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* Blog single article */
.article-content h2 { font-size: 26px; font-weight: 700; margin: 36px 0 16px; color: var(--text-dark); }
.article-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--text-dark); }
.article-content p { font-size: 16px; color: var(--text-med); line-height: 1.8; margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 0 18px 24px; }
.article-content li { font-size: 16px; color: var(--text-med); line-height: 1.7; margin-bottom: 8px; }
.article-content strong { color: var(--text-dark); font-weight: 600; }
.article-content .callout {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.article-content .callout p { margin: 0; color: var(--text-dark); }

/* ── Highlights / Lists ── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-med);
  line-height: 1.6;
}
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  margin-top: 1px;
}
.check-icon.green { background: #10B981; }
.check-icon.red { background: #EF4444; }

/* Warning / Info boxes */
.info-box {
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-box.info { background: #EFF6FF; border: 1px solid #BFDBFE; }
.info-box.warning { background: #FFFBEB; border: 1px solid #FDE68A; }
.info-box.danger { background: #FEF2F2; border: 1px solid #FECACA; }
.info-box.success { background: #F0FDF4; border: 1px solid #A7F3D0; }
.info-box-icon { font-size: 24px; flex-shrink: 0; }
.info-box-text p { font-size: 14px; line-height: 1.6; margin: 0; }
.info-box.info .info-box-text p { color: #1D4ED8; }
.info-box.warning .info-box-text p { color: #92400E; }
.info-box.danger .info-box-text p { color: #991B1B; }
.info-box.success .info-box-text p { color: #065F46; }

/* ── CTA Section ── */
.cta-section {
  background: var(--grad-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.cta-section p { font-size: 17px; color: rgba(255,255,255,.80); max-width: 550px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.80);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.60); max-width: 260px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.60); transition: var(--tr); }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.40);
}
.footer-bottom a { color: rgba(255,255,255,.50); }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-legal { display: flex; gap: 20px; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--tr);
  cursor: pointer;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.65); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-dark);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(.95); box-shadow: 0 0 0 0 rgba(124,58,237,.4); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 10px rgba(124,58,237,0); }
  100% { transform: scale(.95); box-shadow: 0 0 0 0 rgba(124,58,237,0); }
}
.animate-in { animation: fadeInUp .6s ease both; }
.animate-in-2 { animation: fadeInUp .6s ease .15s both; }
.animate-in-3 { animation: fadeInUp .6s ease .3s both; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.pulse { animation: pulse-ring 2s cubic-bezier(.455,.03,.515,.955) infinite; }

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.divider-p { height: 1px; background: var(--border-p); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .hero-actions { gap: 12px; }
  .hero-stats { gap: 20px; }
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 12px 14px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 24px 20px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
  .hero-float-card { display: none; }
  .section-title { font-size: 26px; }
}

/* ── Misc ── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-layout.reverse .col-right { order: -1; }
@media (max-width: 768px) {
  .two-col-layout { grid-template-columns: 1fr; gap: 36px; }
  .two-col-layout.reverse .col-right { order: unset; }
}
.number-highlight {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-d);
  line-height: 1;
  margin-bottom: 8px;
}
.icon-box {
  width: 72px; height: 72px;
  background: var(--primary-lighter);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 20px;
}
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 480px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-lighter);
  border-radius: var(--r-md);
  border: 1px solid var(--border-p);
}
.benefit-icon {
  width: 40px; height: 40px;
  background: var(--primary-lighter);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.benefit-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.benefit-body p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* Testimonial cards */
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.testimonial-stars { color: #F59E0B; font-size: 18px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-med); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* Blog article full view */
.blog-article-full {
  display: none;
  padding: 60px 0;
  background: var(--white);
}
.blog-article-full.active { display: block; }

/* Sticky sidebar */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-sidebar { position: sticky; top: 100px; }
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } }
.toc-card {
  background: var(--bg-light);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border-p);
}
.toc-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); margin-bottom: 16px; }
.toc-list { display: flex; flex-direction: column; gap: 6px; }
.toc-list a { font-size: 14px; color: var(--text-light); padding: 4px 0; transition: var(--tr); }
.toc-list a:hover { color: var(--primary); }

/* Search bar */
.search-bar {
  position: relative;
  max-width: 540px;
  margin: 0 auto 48px;
}
.search-bar input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border: 2px solid var(--border-p);
  border-radius: var(--r-full);
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: var(--tr);
  background: white;
}
.search-bar input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.1); }
.search-bar .search-icon {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 18px;
}
