/* ─────────────────────────────────────────────────────────────
   AddaInfluencer — Theme Polish (additive overrides)
   Loaded after style.css to modernize key sections without
   touching the base stylesheet. Safe to remove if needed.
   ───────────────────────────────────────────────────────────── */

:root {
  --adi-elev-1: 0 1px 2px rgba(17,24,39,.06), 0 1px 3px rgba(17,24,39,.05);
  --adi-elev-2: 0 4px 12px rgba(17,24,39,.08), 0 2px 4px rgba(17,24,39,.04);
  --adi-elev-3: 0 12px 32px rgba(17,24,39,.10), 0 4px 8px rgba(17,24,39,.05);
  --adi-elev-4: 0 24px 60px rgba(17,24,39,.16), 0 8px 16px rgba(17,24,39,.06);
  --adi-radius-sm: 8px;
  --adi-radius:    12px;
  --adi-radius-lg: 18px;
  --adi-radius-xl: 24px;
  --adi-ease:      cubic-bezier(.4, 0, .2, 1);
}

/* Smooth scrolling for in-page anchors */
html { scroll-behavior: smooth; }

/* Selection — branded */
::selection { background: #C7D2FE; color: #1E1B4B; }

/* Body — subtle base */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Top bar tweak — make brand line not look promotional */
.top-bar { display: none; }   /* replaced by new header.php's adi-topbar */
.site-header { display: none; }   /* replaced by adi-header */

/* ════════════════════════════════════════════════════════════
   HERO — animated gradient blob, bolder type, breathing room
   ════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFAFE 0%, #F0F4FF 100%);
  padding: 80px 0 100px;
}

/* Animated gradient blob */
.hero-section::before, .hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.hero-section::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #6366F1 0%, transparent 70%);
  top: -120px; left: -120px;
  animation: adi-blob 18s ease-in-out infinite;
}
.hero-section::after {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #EC4899 0%, transparent 70%);
  bottom: -160px; right: -100px;
  animation: adi-blob 22s ease-in-out infinite reverse;
}
@keyframes adi-blob {
  0%,100% { transform: translate(0,0)   scale(1);   }
  33%     { transform: translate(40px,30px)  scale(1.08); }
  66%     { transform: translate(-30px,20px) scale(.95); }
}
.hero-section .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99,102,241,.18);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #4338CA;
  box-shadow: var(--adi-elev-1);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  animation: adi-pulse 2s ease-in-out infinite;
}
@keyframes adi-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }

.hero-title {
  font-family: 'Poppins','Inter', system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #111827;
  margin: 0 0 18px;
}
.hero-title span {
  background: linear-gradient(135deg, #6366F1 0%, #EC4899 60%, #F59E0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero-title span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #6366F1, #EC4899);
  border-radius: 999px;
  opacity: .25;
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #4B5563;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

/* Search box modernization */
.hero-search-box {
  max-width: 920px;
  margin: 0 auto 32px;
  background: #fff;
  border-radius: var(--adi-radius-xl);
  padding: 8px;
  box-shadow: var(--adi-elev-3);
  border: 1px solid rgba(17,24,39,.04);
  transition: box-shadow .25s var(--adi-ease), transform .25s var(--adi-ease);
}
.hero-search-box:hover { box-shadow: var(--adi-elev-4); transform: translateY(-2px); }
.hero-search-btn {
  background: linear-gradient(135deg, #6366F1, #EC4899);
  box-shadow: 0 8px 24px rgba(99,102,241,.32);
  transition: transform .15s var(--adi-ease), box-shadow .2s var(--adi-ease);
}
.hero-search-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(99,102,241,.45); }

.hero-tags { gap: 8px; }
.hero-tag {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17,24,39,.06);
  transition: all .18s var(--adi-ease);
}
.hero-tag:hover {
  background: #6366F1; color: #fff; border-color: transparent;
  transform: translateY(-2px); box-shadow: 0 8px 18px rgba(99,102,241,.32);
}

/* Hero stat counters */
.hero-stats {
  margin-top: 56px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  border-radius: var(--adi-radius-xl);
  padding: 24px 16px;
  border: 1px solid rgba(17,24,39,.05);
  box-shadow: var(--adi-elev-2);
}
.hero-stat-num {
  font-family: 'Poppins','Inter', system-ui;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366F1, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: #6B7280;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   SECTION RHYTHM — consistent spacing + headers
   ════════════════════════════════════════════════════════════ */
.section { padding: 80px 0; }
@media (max-width: 700px) { .section { padding: 56px 0; } }

.section-label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(236,72,153,.12));
  color: #6366F1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Poppins','Inter', system-ui;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #111827;
  margin: 14px 0 14px;
  line-height: 1.15;
}
.section-title span {
  background: linear-gradient(135deg, #6366F1, #EC4899);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-desc { font-size: 16px; color: #6B7280; max-width: 640px; margin: 0 auto; }

/* ════════════════════════════════════════════════════════════
   INFLUENCER CARDS — softer, more modern, smoother hover
   ════════════════════════════════════════════════════════════ */
.influencer-card {
  background: #fff;
  border: 1px solid rgba(17,24,39,.06);
  border-radius: var(--adi-radius-lg);
  overflow: hidden;
  transition: transform .25s var(--adi-ease), box-shadow .25s var(--adi-ease), border-color .25s var(--adi-ease);
  box-shadow: var(--adi-elev-1);
}
.influencer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--adi-elev-4);
  border-color: rgba(99,102,241,.25);
}
.influencer-card-header {
  background: linear-gradient(135deg, #EEF2FF 0%, #FCE7F3 100%);
  padding: 32px 16px 16px;
  position: relative;
}
.influencer-card-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(99,102,241,.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(236,72,153,.18), transparent 50%);
  pointer-events: none;
}
.influencer-avatar, .influencer-avatar-placeholder {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(17,24,39,.12);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}
.influencer-avatar-placeholder {
  background: linear-gradient(135deg, #6366F1, #EC4899);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 800;
}
.influencer-verified {
  position: absolute;
  top: 12px; right: 12px;
  background: #10B981;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: .04em;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(16,185,129,.32);
}

.influencer-card-body { padding: 16px 18px 18px; text-align: center; }
.influencer-name { font-size: 16px; font-weight: 800; color: #111827; margin: 0 0 2px; }
.influencer-handle { font-size: 13px; color: #6B7280; margin-bottom: 10px; }
.influencer-niche {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: #F3F4F6;
  border-radius: 999px;
  color: #374151;
  margin-bottom: 10px;
}
.influencer-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-bottom: 10px;
}
.platform-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: #EEF2FF;
  color: #4338CA;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.platform-badge svg { width: 12px; height: 12px; }
.influencer-location { font-size: 12px; color: #6B7280; margin-bottom: 14px; }
.influencer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px 0;
  margin: 0 0 14px;
  border-top: 1px solid #F3F4F6;
  border-bottom: 1px solid #F3F4F6;
}
.influencer-stat { text-align: center; }
.influencer-stat-num {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}
.influencer-stat-label {
  font-size: 10px;
  color: #6B7280;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
}
.btn-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 9px 14px;
  background: linear-gradient(135deg, #6366F1, #EC4899);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s var(--adi-ease), box-shadow .15s var(--adi-ease);
}
.btn-connect:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(99,102,241,.32); }

/* ════════════════════════════════════════════════════════════
   CATEGORY / PLATFORM cards — consistent feel
   ════════════════════════════════════════════════════════════ */
.category-card, .platform-card, .platform-card-instagram, .platform-card-youtube,
.platform-card-tiktok, .platform-card-twitter, .platform-card-linkedin, .platform-card-snapchat {
  background: #fff;
  border: 1px solid rgba(17,24,39,.06);
  border-radius: var(--adi-radius);
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  color: #111827;
  transition: transform .2s var(--adi-ease), box-shadow .2s var(--adi-ease), border-color .2s var(--adi-ease);
  box-shadow: var(--adi-elev-1);
  display: block;
}
.category-card:hover, .platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--adi-elev-3);
  border-color: rgba(99,102,241,.25);
}
.category-icon, .platform-card-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.category-name, .platform-card-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.category-count, .platform-card-count {
  font-size: 12px; color: #6B7280; font-weight: 600;
}

/* Platform card brand tints */
.platform-card-instagram:hover { background: linear-gradient(135deg, #FCE7F3 0%, #FED7AA 100%); }
.platform-card-youtube:hover   { background: #FEE2E2; }
.platform-card-tiktok:hover    { background: #E0E7FF; }
.platform-card-twitter:hover   { background: #DBEAFE; }
.platform-card-linkedin:hover  { background: #DBEAFE; }
.platform-card-snapchat:hover  { background: #FEF3C7; }

/* ════════════════════════════════════════════════════════════
   "WHY" cards — better polish
   ════════════════════════════════════════════════════════════ */
.why-card {
  background: #fff;
  border: 1px solid rgba(17,24,39,.06);
  border-radius: var(--adi-radius-lg);
  padding: 28px;
  transition: transform .2s var(--adi-ease), box-shadow .2s var(--adi-ease);
  box-shadow: var(--adi-elev-1);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99,102,241,.06), rgba(236,72,153,.06));
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--adi-elev-3); }
.why-icon {
  font-size: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #EEF2FF, #FCE7F3);
  border-radius: 14px;
  margin-bottom: 16px;
  position: relative;
}
.why-title { font-size: 18px; font-weight: 800; color: #111827; margin: 0 0 8px; }
.why-desc  { font-size: 14px; color: #6B7280; line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════════════════════════
   BUTTONS — consistency layer
   ════════════════════════════════════════════════════════════ */
.btn, .btn-primary, .btn-outline, .btn-white {
  border-radius: 11px;
  font-weight: 700;
  letter-spacing: -.005em;
  transition: transform .15s var(--adi-ease), box-shadow .15s var(--adi-ease), opacity .15s var(--adi-ease);
}
.btn-primary {
  background: linear-gradient(135deg, #6366F1, #EC4899);
  color: #fff;
  box-shadow: 0 8px 24px rgba(99,102,241,.32);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,.42); }
.btn-outline {
  border: 1.5px solid #6366F1;
  color: #6366F1;
  background: transparent;
}
.btn-outline:hover { background: #EEF2FF; }

/* ════════════════════════════════════════════════════════════
   FAQ — smoother accordion
   ════════════════════════════════════════════════════════════ */
.faq-section {
  background: linear-gradient(180deg, #fff 0%, #FAFAFE 100%);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(17,24,39,.06);
  border-radius: var(--adi-radius);
  overflow: hidden;
  transition: box-shadow .15s var(--adi-ease), border-color .15s var(--adi-ease);
}
.faq-item:hover { box-shadow: var(--adi-elev-2); border-color: rgba(99,102,241,.15); }
.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-arrow {
  font-size: 22px;
  color: #6366F1;
  transition: transform .25s var(--adi-ease);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--adi-ease), padding .25s var(--adi-ease);
  color: #4B5563;
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 22px 20px;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION — bolder finale
   ════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #1E1B4B 0%, #4338CA 50%, #BE185D 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-title {
  font-family: 'Poppins','Inter';
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-desc { font-size: 16px; opacity: .9; max-width: 600px; margin: 0 auto 32px; }
.cta-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-white {
  background: #fff; color: #4338CA;
  padding: 13px 24px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-white:hover { color: #4338CA; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255,255,255,.18); }

/* ════════════════════════════════════════════════════════════
   FOOTER — subtle polish
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0 30px;
  font-size: 14px;
}
.site-footer a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════
   UTIL — scroll reveal (CSS-only)
   Add class="reveal" to any element to fade-in on first paint
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: adi-reveal .8s var(--adi-ease) forwards;
}
@keyframes adi-reveal {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-1 { animation-delay: .08s; }
.reveal-2 { animation-delay: .16s; }
.reveal-3 { animation-delay: .24s; }
.reveal-4 { animation-delay: .32s; }

/* Mobile niceties */
@media (max-width: 700px) {
  .hero-stats { padding: 16px 8px; }
  .hero-stat-num { font-size: 26px; }
  .section-title { font-size: 26px; }
}
