/* ─── Seller Info Website — Styles ─── */
:root {
  --primary: #5B0080;
  --primary-hover: #7B1FA2;
  --primary-soft: #F3E5F5;
  --primary-light: #F8F0FA;
  --accent: #F59E0B;
  --accent-soft: #FEF3C7;
  --text: #1F2937;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-section: #F0F4FF;
  --border: #E5E7EB;
  --success: #10B981;
  --success-soft: #D1FAE5;
  --danger: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; height: auto; }
.container { max-width: 90%; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-accent { background: var(--primary); color: #fff; }
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.navbar.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; color: var(--text); }
.navbar-logo img { height: 30px; }
.navbar-logo span { color: var(--primary); }
.navbar-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.navbar-links a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 0.88rem;
  font-weight: 500; color: var(--text-secondary); transition: all 0.2s;
}
.navbar-links a:hover { background: var(--primary-soft); color: var(--primary); }
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.25s; border: none; font-family: var(--font);
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(91,0,128,0.25); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #D97706; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text); cursor: pointer; padding: 4px; }

@media (max-width: 900px) {
  .navbar-links, .navbar-actions { display: none; }
  .navbar-links.open, .navbar-actions.open { display: flex; }
  .navbar-links.open { flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 4px; }
  .navbar-actions.open { position: absolute; top: 240px; left: 0; right: 0; padding: 0 24px 20px; background: #fff;
    border-bottom: 1px solid var(--border); gap: 8px; flex-wrap: wrap; }
  .nav-toggle { display: block; }
}

/* ── Hero ── */
.hero {
  padding: 140px 0 80px; background: linear-gradient(135deg, #F8F0FA 0%, #F0F4FF 50%, #FFF7ED 100%);
  overflow: hidden; position: relative;
}
.hero::before { content: ''; position: absolute; top: -40%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,0,128,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero h1 span { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 28px; max-width: 500px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg);
  width: 100%; max-width: 480px;
}
.hero-card .hcb { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hero-card .hcb h3 { font-size: 1.1rem; }
.hero-card .hc-stat { text-align: center; padding: 16px; background: var(--primary-soft); border-radius: var(--radius-sm); }
.hero-card .hc-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.hero-card .hc-stat .lbl { font-size: 0.8rem; color: var(--text-secondary); }
.hero-card .hc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p { margin: 0 auto 28px; }
  .hero-buttons { justify-content: center; }
  .hero h1 { font-size: 2rem; }
}

/* ── Stats Bar ── */
.stats-bar { background: var(--primary); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-num { font-size: 2rem; font-weight: 800; color: #fff; }
.stat-item .stat-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 2px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:nth-child(5) { grid-column: span 2; } }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2rem; margin-bottom: 12px; }
.section-header h2 span { color: var(--primary); }
.section-header p { font-size: 1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ── Value Cards ── */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.3s; }
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card .vc-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-secondary); }
@media (max-width: 768px) { .value-grid { grid-template-columns: 1fr; } }

/* ── Category Grid ── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px 16px;
  text-align: center; transition: all 0.25s; cursor: default; }
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.cat-card .cc-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 8px; }
.cat-card h4 { font-size: 0.9rem; font-weight: 600; }
@media (max-width: 768px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Steps Timeline ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(to right, var(--primary), var(--accent)); }
.step { text-align: center; position: relative; }
.step-num { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent)); position: relative; z-index: 1; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.85rem; color: var(--text-secondary); }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .steps::before { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testi-card .tc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-card .tc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1rem; }
.testi-card .tc-name { font-weight: 600; font-size: 0.9rem; }
.testi-card .tc-city { font-size: 0.8rem; color: var(--text-muted); }
.testi-card .tc-text { font-size: 0.88rem; color: var(--text-secondary); font-style: italic; line-height: 1.6; }
.testi-card .tc-stars { color: var(--accent); margin-bottom: 10px; font-size: 0.9rem; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── Trust Badges ── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { text-align: center; padding: 24px; background: #fff; border-radius: var(--radius-sm); }
.trust-item i { font-size: 2rem; color: var(--success); margin-bottom: 8px; }
.trust-item h4 { font-size: 0.9rem; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--primary), #7B1FA2); border-radius: var(--radius-lg);
  padding: 56px 48px; text-align: center; color: #fff; }
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 24px; }
.cta-banner .btn { background: var(--accent); color: #fff; }
.cta-banner .btn:hover { background: #D97706; }

/* ── Why Us ── */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.diff-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  display: flex; gap: 16px; align-items: flex-start; }
.diff-card .dc-icon { width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius-sm);
  background: var(--primary-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary); }
.diff-card h3 { font-size: 1rem; margin-bottom: 4px; }
.diff-card p { font-size: 0.85rem; color: var(--text-secondary); }
@media (max-width: 768px) { .diff-grid { grid-template-columns: 1fr; } }

/* ── Comparison Table ── */
.comp-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); }
.comp-table th, .comp-table td { padding: 14px 20px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.comp-table th { background: var(--primary); color: #fff; font-weight: 600; }
.comp-table th:first-child { border-radius: 0; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--primary-light); }
.comp-table .highlight { background: var(--success-soft); font-weight: 600; color: #065F46; }
@media (max-width: 768px) { .comp-table { font-size: 0.8rem; }
  .comp-table th, .comp-table td { padding: 10px 12px; } }

/* ── Features ── */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: all 0.25s; cursor: default; }
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.feature-card .fc-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); margin-bottom: 14px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: var(--text-secondary); }
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

/* ── Pricing ── */
.pricing-highlight { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.ph-card { text-align: center; padding: 32px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.ph-card .ph-icon { font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.ph-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.ph-card p { font-size: 0.85rem; color: var(--text-secondary); }
.ph-card.featured { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(91,0,128,0.1); }
@media (max-width: 768px) { .pricing-highlight { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; background: #fff; transition: background 0.2s; }
.faq-q:hover { background: var(--primary-light); }
.faq-q i { transition: transform 0.3s; font-size: 1.1rem; color: var(--text-muted); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; font-size: 0.9rem; color: var(--text-secondary); }
.faq-item.open .faq-a { padding: 0 20px 18px; max-height: 300px; }
.faq-group-title { font-size: 1.1rem; font-weight: 700; margin: 32px 0 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--primary); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ci-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: var(--primary-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary); }
.contact-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-item p { font-size: 0.88rem; color: var(--text-secondary); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 4px; }
.form-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: var(--font); transition: border-color 0.2s; outline: none; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(91,0,128,0.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-success { background: var(--success-soft); color: #065F46; padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 0.9rem; margin-bottom: 16px; }
.form-error { color: var(--danger); font-size: 0.8rem; margin-top: 4px; }
.form-input.is-invalid { border-color: var(--danger); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: all 0.25s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card .bc-img { height: 180px; background: var(--primary-soft); display: flex; align-items: center;
  justify-content: center; font-size: 2rem; color: var(--primary); overflow: hidden; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .bc-body { padding: 20px; }
.blog-card .bc-cat { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary);
  font-weight: 600; margin-bottom: 6px; }
.blog-card .bc-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.blog-card .bc-title a { color: var(--text); }
.blog-card .bc-title a:hover { color: var(--primary); }
.blog-card .bc-excerpt { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; }
.blog-card .bc-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 12px; }
.blog-single .bs-header { margin-bottom: 32px; }
.blog-single .bs-header h1 { font-size: 2rem; margin-bottom: 8px; }
.blog-single .bs-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--text-muted); }
.blog-single .bs-body { font-size: 1rem; line-height: 1.8; color: var(--text); }
.blog-single .bs-body p { margin-bottom: 16px; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.85rem; color: var(--text-secondary); }
.pagination a:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Legal Pages ── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--primary); }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal-content p { margin-bottom: 12px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content ul li { margin-bottom: 6px; font-size: 0.9rem; color: var(--text-secondary); }
.legal-content .last-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }

/* ── Footer ── */
.footer { background: #111827; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer .container { max-width: 100%; padding: 0 48px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  font-size: 1rem; transition: all 0.2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding: 20px 0;
  text-align: center; font-size: 0.82rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-in.visible { opacity: 1; }

/* Staggered delays for grid children */
.value-grid .fade-up:nth-child(2),
.cat-grid .fade-up:nth-child(2),
.diff-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.value-grid .fade-up:nth-child(3),
.cat-grid .fade-up:nth-child(3),
.diff-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.cat-grid .fade-up:nth-child(4),
.diff-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }
.cat-grid .fade-up:nth-child(5),
.diff-grid .fade-up:nth-child(5) { transition-delay: 0.35s; }
.cat-grid .fade-up:nth-child(6),
.diff-grid .fade-up:nth-child(6) { transition-delay: 0.4s; }
.cat-grid .fade-up:nth-child(7),
.diff-grid .fade-up:nth-child(7) { transition-delay: 0.45s; }
.cat-grid .fade-up:nth-child(8),
.diff-grid .fade-up:nth-child(8) { transition-delay: 0.5s; }

/* ── Enhanced Micro-Interactions ── */

/* Navbar links — underline slide-in */
.navbar-links a { position: relative; }
.navbar-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--primary); border-radius: 2px; transition: all 0.3s ease;
}
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 60%; left: 20%; }

/* Hero CTA pulse on hover */
.hero .btn-primary:hover {
  animation: btn-pulse 0.6s ease;
}
@keyframes btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(91, 0, 128, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(91, 0, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 0, 128, 0); }
}

/* Category cards — icon bounce on hover */
.cat-card:hover .cc-icon {
  animation: icon-bounce 0.5s ease;
}
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-2px); }
}

/* Value / diff cards — subtle border glow on hover */
.value-card:hover,
.diff-card:hover {
  box-shadow: 0 4px 20px rgba(91, 0, 128, 0.1), 0 0 0 1px rgba(91, 0, 128, 0.08);
}

/* Stats bar — number shimmer */
.stats-bar .stat-item {
  transition: transform 0.3s ease;
}
.stats-bar .stat-item:hover {
  transform: scale(1.08);
}

/* Trust items — lift on hover */
.trust-item {
  transition: all 0.3s ease;
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* FAQ — smooth arrow rotation (already handled but enhance border) */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(91, 0, 128, 0.06);
}
.faq-a {
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
}

/* Smooth page load */
body {
  animation: pageLoad 0.4s ease-out;
}
@keyframes pageLoad {
  from { opacity: 0.85; }
  to { opacity: 1; }
}
