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

/* ============================================
   ADSPINCH MEDIA — SITE-WIDE STYLESHEET
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7B2FBE;
  --violet: #9B59F5;
  --pink: #E040FB;
  --dark: #0F0A1E;
  --dark2: #1A1035;
  --white: #ffffff;
  --gray: #6B7280;
  --light: #F5F0FF;
  --text: #1A0533;
  --orange: #FF6B00;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* Skip link for accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--purple); color: #fff; padding: 12px 20px;
  z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 10, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(155, 89, 245, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg { width: 24px; height: 24px; }

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text span { color: var(--violet); }

/* ── BRAND WORDMARK LOGO (icon-free, replaces old icon+text lockup) ── */
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 4px;
}
.brand-logo .brand-word {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.brand-logo .brand-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.brand-logo.brand-logo--nav .brand-word { font-size: 21px; }
.brand-logo.brand-logo--nav .brand-tag { font-size: 9px; }
.brand-logo.brand-logo--lg .brand-word { font-size: 30px; }
.brand-logo.brand-logo--lg .brand-tag { font-size: 12px; letter-spacing: 5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--violet); }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--violet) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO (home) ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #0F0A1E 0%, #1A1035 40%, #2D1B69 70%, #7B2FBE 100%);
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,64,251,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,47,190,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,89,245,0.15);
  border: 1px solid rgba(155,89,245,0.3);
  color: var(--violet);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ── CATCHY HOMEPAGE ANIMATIONS ── */

/* Floating gradient blobs drifting slowly in hero background */
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}
.hero::before { animation: blobFloat1 9s ease-in-out infinite; }
.hero::after { animation: blobFloat2 11s ease-in-out infinite; }

/* Gentle bobbing motion for the floating stat cards over the hero visual */
@keyframes cardBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-float-card.hfc-1 { animation: cardBob 4s ease-in-out infinite; }
.hero-float-card.hfc-2 { animation: cardBob 4.5s ease-in-out infinite 0.6s; }

/* Shimmering gradient sweep on the highlighted hero headline word */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero h1 span, .page-hero h1 span {
  background: linear-gradient(90deg, #9B59F5 0%, #E040FB 25%, #9B59F5 50%, #E040FB 75%, #9B59F5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #9B59F5; /* fallback */
  animation: shimmer 6s linear infinite;
  display: inline-block;
}

/* Progress bars animate from 0 to their target width */
.hmc-bar-fill {
  width: 0 !important;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hmc-bar-fill.bar-animate { width: var(--bar-target, 0%) !important; }

/* Scroll-reveal fade-in-up, applied via JS IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle continuous pulse on the primary hero button to draw the eye */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 47, 190, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(123, 47, 190, 0); }
}
.hero-btns .btn-primary { animation: ctaPulse 2.6s ease-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero-float-card, .hero h1 span, .page-hero h1 span,
  .hero-btns .btn-primary, .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--violet); }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--violet); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--violet); color: var(--violet); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); }
.hero-stat-num span { color: var(--violet); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 100%; max-width: 420px; }

.hero-main-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.hmc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hmc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hmc-title { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.hmc-value { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.hmc-change { font-size: 13px; color: #4ADE80; font-weight: 600; }
.hmc-bar-wrap { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.hmc-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.hmc-bar-bg { background: rgba(255,255,255,0.1); border-radius: 4px; height: 6px; overflow: hidden; }
.hmc-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--purple), var(--pink)); }

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
}
.hfc-1 { bottom: -20px; left: -30px; }
.hfc-2 { top: -20px; right: -20px; }
.hfc-label { font-size: 11px; color: rgba(255,255,255,0.5); }
.hfc-val { font-size: 18px; font-weight: 700; color: var(--white); margin-top: 2px; }
.hfc-sub { font-size: 11px; color: #4ADE80; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0F0A1E 0%, #1A1035 40%, #2D1B69 100%);
  padding: 70px 5% 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(224,64,251,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb span.sep { color: rgba(255,255,255,0.3); }
.breadcrumb span.current { color: var(--violet); }

.page-hero .hero-badge { margin-bottom: 18px; }

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 780px;
}
.page-hero h1 span { color: var(--violet); }

.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 640px;
}

/* ── SECTIONS SHARED ── */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  background: var(--light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--purple); }

.section-sub { font-size: 17px; color: var(--gray); line-height: 1.7; max-width: 580px; }
.section-head { margin-bottom: 56px; }

/* ── SERVICES ── */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(123,47,190,0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(123,47,190,0.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.service-card h3 { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  color: var(--purple); font-size: 14px; font-weight: 600; text-decoration: none; transition: gap 0.2s;
}
.service-card .learn-more:hover { gap: 10px; }

/* ── AFFILIATE / DARK FEATURE BLOCK (reused on multiple pages) ── */
.affiliate-section {
  background: linear-gradient(135deg, #0F0A1E 0%, #2D1B69 100%);
  position: relative;
  overflow: hidden;
}
.affiliate-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,64,251,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.affiliate-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.affiliate-section .section-label { background: rgba(155,89,245,0.15); color: var(--violet); }
.affiliate-section .section-title { color: var(--white); }
.affiliate-section .section-sub { color: rgba(255,255,255,0.65); max-width: 100%; }

.affiliate-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.aff-feat { display: flex; gap: 16px; align-items: flex-start; }
.aff-feat-icon {
  width: 44px; height: 44px; background: rgba(155,89,245,0.15);
  border: 1px solid rgba(155,89,245,0.25); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.aff-feat h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.aff-feat p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.affiliate-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.aff-stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 24px; text-align: center; }
.aff-stat-card .num { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); }
.aff-stat-card .num span { color: var(--violet); }
.aff-stat-card .lbl { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }
.aff-stat-card.featured { background: var(--purple); border-color: var(--purple); grid-column: span 2; }
.aff-stat-card.featured .lbl { color: rgba(255,255,255,0.8); }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.why-card { padding: 32px 28px; border: 1px solid rgba(123,47,190,0.1); border-radius: 16px; transition: all 0.3s; }
.why-card:hover { border-color: var(--purple); background: var(--light); }
.why-num { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--purple); letter-spacing: 1px; margin-bottom: 16px; }
.why-card h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── ABOUT ── */
.about { background: var(--light); }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img {
  background: linear-gradient(135deg, var(--purple), var(--pink)); border-radius: 20px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; font-size: 80px; position: relative; overflow: hidden;
}
.about-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(123,47,190,0.6), rgba(224,64,251,0.3)); }
.about-img-emoji { position: relative; z-index: 1; font-size: 100px; }
.about-stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.about-stat { background: var(--white); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid rgba(123,47,190,0.08); }
.about-stat .num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--purple); }
.about-stat .lbl { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ── TIMELINE (about page) ── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--purple), var(--pink)); }
.timeline-item { position: relative; padding-left: 56px; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: 11px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--purple); border: 4px solid var(--light); }
.timeline-item h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── VALUES GRID (about) ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.value-card { text-align: center; padding: 28px 20px; }
.value-icon { width: 60px; height: 60px; margin: 0 auto 16px; background: var(--light); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.value-card h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.team-card { text-align: center; background: var(--white); border: 1px solid rgba(123,47,190,0.08); border-radius: 16px; padding: 28px 20px; }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--purple), var(--pink)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 26px; }
.team-card h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 12px; color: var(--purple); font-weight: 600; margin-bottom: 10px; }
.team-card p.bio { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--purple), var(--pink)); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 64px; height: 64px; background: var(--purple); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--white); margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--purple);
}
.process-step h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── BENEFITS LIST (service detail pages) ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; margin-top: 12px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-check {
  width: 30px; height: 30px; border-radius: 50%; background: var(--light); color: var(--purple);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; font-size: 14px; margin-top: 2px;
}
.benefit-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.benefit-item p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ── TWO COL CONTENT (service detail intro) ── */
.detail-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
.detail-copy p { font-size: 15.5px; color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.detail-sidebar {
  background: var(--light); border-radius: 18px; padding: 32px; position: sticky; top: 100px;
}
.detail-sidebar h4 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.sidebar-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.sidebar-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); list-style:none; }
.sidebar-list li::before { content: '\2713'; width: 22px; height: 22px; background: var(--purple); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.sidebar-contact { border-top: 1px solid rgba(123,47,190,0.15); padding-top: 20px; margin-top: 4px; }
.sidebar-contact p { font-size: 13px; color: var(--gray); margin-bottom: 10px; line-height: 1.6; }
.sidebar-contact a { color: var(--purple); font-weight: 600; text-decoration: none; font-size: 13.5px; }

/* ── FAQ ── */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid rgba(123,47,190,0.12); border-radius: 12px; overflow: hidden; background: var(--white); }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 15px; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--purple); flex-shrink: 0; transition: transform 0.2s; font-weight: 400; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── RELATED SERVICES ── */
.related-services { background: var(--light); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--light); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid rgba(123,47,190,0.08); position: relative; }
.testi-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 80px; font-family: Georgia, serif; color: rgba(123,47,190,0.08); line-height: 1; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #F59E0B; font-size: 16px; }
.testi-card p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--white); font-family: 'Poppins', sans-serif; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 15px; color: var(--text); }
.testi-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, #2D1B69 50%, var(--dark) 100%);
  padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(circle, rgba(224,64,251,0.2) 0%, transparent 70%); border-radius: 50%;
}
.cta-banner h2 { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 40px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--purple); padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── CONTACT PAGE ── */
.contact-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--dark); border-radius: 20px; padding: 40px; color: #fff; }
.contact-info-card h3 { font-family: 'Poppins', sans-serif; font-size: 20px; margin-bottom: 24px; }
.contact-info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(155,89,245,0.15); border: 1px solid rgba(155,89,245,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.contact-info-row h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-row p, .contact-info-row a { font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: none; line-height: 1.6; }
.contact-info-row a:hover { color: var(--violet); }
.contact-map { margin-top: 24px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { background: var(--light); border-radius: 20px; padding: 40px; }
.contact-form h3 { font-family: 'Poppins', sans-serif; font-size: 20px; margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(123,47,190,0.2);
  font-family: inherit; font-size: 14px; background: #fff; color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); }
.form-submit { width: 100%; margin-top: 4px; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 14px; text-align: center; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid rgba(123,47,190,0.08); border-radius: 16px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(123,47,190,0.12); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, var(--purple), var(--pink)); display: flex; align-items: center; justify-content: center; font-size: 46px; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--purple); background: var(--light); padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.blog-card h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); line-height: 1.4; }
.blog-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { font-size: 12px; color: var(--gray); display: flex; gap: 10px; align-items: center; }

.blog-post-body { max-width: 760px; margin: 0 auto; }
.blog-post-body h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; margin: 36px 0 14px; color: var(--text); }
.blog-post-body h3 { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 700; margin: 28px 0 12px; color: var(--text); }
.blog-post-body p { font-size: 15.5px; color: var(--gray); line-height: 1.85; margin-bottom: 18px; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 18px 22px; }
.blog-post-body li { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.blog-post-body ol li { list-style: decimal; }
.blog-post-body strong { color: var(--text); }
.blog-post-hero-icon { font-size: 56px; margin-bottom: 8px; }
.blog-author-box { display: flex; gap: 14px; align-items: center; margin-top: 48px; padding: 24px; background: var(--light); border-radius: 16px; max-width: 760px; margin-left: auto; margin-right: auto; }
.blog-author-box .team-avatar { width: 54px; height: 54px; font-size: 20px; }
.blog-author-box h5 { font-size: 14px; font-weight: 700; }
.blog-author-box p { font-size: 12.5px; color: var(--gray); }

/* ── SIMPLE PAGE HEADER STRIP (used sparingly) ── */
.strip { background: var(--light); padding: 18px 5%; }
.strip-inner { max-width: 1200px; margin: 0 auto; font-size: 13px; color: var(--gray); display:flex; gap:8px; flex-wrap:wrap; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 70px 5% 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--violet); }
.footer-col ul li p.small { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--violet); text-decoration: none; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 700; transition: all 0.2s; }
.social-link:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }

/* ── 404 ── */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 5%; }
.error-page .code { font-family: 'Poppins', sans-serif; font-size: clamp(70px,14vw,140px); font-weight: 800; color: var(--light); line-height: 1; background: linear-gradient(135deg, var(--purple), var(--pink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .detail-sidebar { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  .affiliate-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  section { padding: 60px 5%; }
  .form-row { grid-template-columns: 1fr; }
}
