/* =====================================================
   ADCONNECT — styles.css
   ===================================================== */

/* ----- Variables ----- */
:root {
  --navy:       #0B1D3E;
  --navy-mid:   #1A3A6E;
  --blue:       #2563EB;
  --blue-light: #3B82F6;
  --sky:        #0EA5E9;
  --sky-light:  #38BDF8;
  --sky-pale:   #E0F2FE;
  --mauve:      #9B5FB5;
  --mauve-light:#C084C0;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-900:   #0F172A;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(11,29,62,.10);
  --shadow-lg:  0 12px 48px rgba(11,29,62,.18);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--gray-900); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----- Layout ----- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-sm);
  transition: all .2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff; padding: 12px 24px;
  box-shadow: 0 2px 12px rgba(37,99,235,.35);
}
.btn-primary:hover { background: #1D4ED8; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,99,235,.45); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff; padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline {
  background: transparent; color: var(--blue); padding: 10px 20px;
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--navy); padding: 14px 28px; font-size: 1rem; box-shadow: 0 2px 16px rgba(0,0,0,.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.18); }
.btn-ghost-white { background: transparent; color: #fff; padding: 14px 28px; font-size: 1rem; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ----- Section helpers ----- */
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 100px; padding: 5px 14px; margin-bottom: 18px;
}
.eyebrow-red    { background: #FEE2E2; color: #DC2626; }
.eyebrow-blue   { background: #DBEAFE; color: var(--blue); }
.eyebrow-sky    { background: var(--sky-pale); color: var(--sky); }
.eyebrow-light  { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }

.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--gray-900); text-align: center; margin-bottom: 16px; }
.section-title.text-left { text-align: left; }
.section-title-light { color: #fff; }
.section-desc { font-size: 1.05rem; color: var(--gray-600); text-align: center; max-width: 600px; margin: 0 auto 48px; line-height: 1.7; }
.section-desc.text-left { text-align: left; margin-left: 0; }
.section-desc-light { color: rgba(255,255,255,.75); }

/* ----- Scroll reveal ----- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,29,62,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: rgba(11,29,62,.98); box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 68px; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 22px; flex-shrink: 0; }
.logo-text { font-size: 1.25rem; font-weight: 600; color: #fff; letter-spacing: -.02em; }
.logo-text strong { font-weight: 800; color: var(--sky-light); }
.logo-light { color: rgba(255,255,255,.85); }
.logo-light strong { color: var(--sky-light); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 0.92rem; color: rgba(255,255,255,.75); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-signin { color: rgba(255,255,255,.85) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #071228 0%, #0B1D3E 45%, #0F2A5A 100%);
  padding: 140px 0 80px;
  min-height: 100vh; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .25;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #2563EB 0%, transparent 70%); top: -120px; right: -80px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #0EA5E9 0%, transparent 70%); bottom: -60px; left: -60px; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #9B5FB5 0%, transparent 70%); top: 40%; left: 38%; opacity: .12; }

.hero .container { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.3);
  color: var(--sky-light); font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 32px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.12;
  color: #fff; margin-bottom: 24px; letter-spacing: -.02em;
}
.hero-highlight {
  background: linear-gradient(90deg, var(--sky-light), #60A5FA);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 36px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-proof { display: flex; align-items: center; gap: 12px; justify-content: center; color: rgba(255,255,255,.65); font-size: 0.92rem; margin-bottom: 64px; }
.hero-proof strong { color: rgba(255,255,255,.9); }
.proof-avatars { display: flex; }
.proof-av { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(11,29,62,.5); font-size: 0.75rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; margin-left: -8px; }
.proof-av:first-child { margin-left: 0; }

/* Flow diagram */
.hero-flow {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 32px 48px; max-width: 700px; margin: 0 auto;
  backdrop-filter: blur(8px);
}
.flow-node { text-align: center; flex: 1; }
.flow-node-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; color: var(--sky-light);
}
.flow-node-icon svg { width: 26px; height: 26px; }
.flow-node-label { display: block; font-weight: 700; color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.flow-node p { font-size: 0.78rem; color: rgba(255,255,255,.55); line-height: 1.4; }
.flow-connector { display: flex; align-items: center; flex: 1.2; flex-direction: column; gap: 8px; }
.flow-line { height: 2px; width: 100%; background: linear-gradient(90deg, rgba(56,189,248,.3), rgba(96,165,250,.3)); border-radius: 2px; }
.flow-badge-center {
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 0.72rem; font-weight: 700; color: var(--sky-light);
  background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.3);
  padding: 4px 10px; border-radius: 100px;
}

/* =====================================================
   STATS
   ===================================================== */
.stats { background: #fff; padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; padding: 24px; }
.stat-number { display: block; font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; letter-spacing: -.03em; }
.stat-label { font-size: 0.9rem; color: var(--gray-600); font-weight: 500; }

/* =====================================================
   PROBLEM
   ===================================================== */
.problem { background: var(--gray-50); padding: 100px 0; text-align: center; }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.problem-card {
  background: #fff; border-radius: var(--radius); padding: 36px 28px;
  text-align: left; box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-icon {
  width: 52px; height: 52px; background: #FEE2E2; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #DC2626;
}
.problem-icon svg { width: 24px; height: 24px; }
.problem-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--gray-900); }
.problem-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 20px; }
.problem-stat { font-size: 0.78rem; font-weight: 700; color: #DC2626; background: #FEF2F2; border-radius: 6px; padding: 6px 12px; display: inline-block; }

/* =====================================================
   SOLUTION
   ===================================================== */
.solution { padding: 100px 0; background: #fff; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solution-checklist { margin: 28px 0 36px; }
.solution-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.96rem; color: var(--gray-600); padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.solution-checklist li:last-child { border-bottom: none; }
.solution-checklist svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }

/* Publisher profile mock */
.pub-profile-mock {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
  background: #fff;
}
.mock-titlebar {
  background: var(--gray-100); padding: 10px 16px;
  display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--gray-200);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FEBC2E; }
.mock-dots span:nth-child(3) { background: #28C840; }
.mock-url { font-size: 0.75rem; color: var(--gray-600); background: #fff; border: 1px solid var(--gray-200); padding: 4px 12px; border-radius: 100px; }
.mock-body { padding: 24px; }
.mock-pub-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.mock-pub-logo { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,#3B82F6,#1D4ED8); color: #fff; font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-pub-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.mock-pub-sub { font-size: 0.78rem; color: var(--gray-600); margin-top: 2px; }
.mock-verified { color: #10B981; font-weight: 600; }
.mock-connect-btn { margin-left: auto; background: var(--blue); color: #fff; font-size: 0.8rem; font-weight: 600; padding: 7px 16px; border-radius: 7px; cursor: pointer; border: none; }
.mock-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.mock-stat { background: var(--gray-50); border-radius: 8px; padding: 12px; text-align: center; }
.mock-stat span { display: block; font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.mock-stat small { font-size: 0.72rem; color: var(--gray-600); }
.mock-pl-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); margin-bottom: 10px; }
.mock-pl-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.82rem; color: var(--gray-700); }
.mock-pl-row:last-child { border-bottom: none; }
.mock-pl-row strong { color: var(--blue); font-weight: 700; }
.mock-pl-alt { background: var(--gray-50); margin: 0 -4px; padding: 10px 4px; border-radius: 6px; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works { background: var(--gray-50); padding: 100px 0; text-align: center; }
.hiw-tabs {
  display: inline-flex; background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: 100px; padding: 4px; gap: 4px; margin-bottom: 56px;
}
.hiw-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 100px; font-size: 0.92rem; font-weight: 600;
  color: var(--gray-600); transition: all .2s;
}
.hiw-tab.active { background: var(--navy); color: #fff; }
.hiw-tab:hover:not(.active) { background: var(--gray-100); color: var(--gray-900); }
.hiw-panel { display: none; }
.hiw-panel.active { display: block; }
.hiw-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.hiw-step {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  text-align: left; box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  position: relative;
}
.step-num {
  position: absolute; top: 20px; right: 20px;
  font-size: 2rem; font-weight: 900; color: var(--gray-200); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-icon {
  width: 48px; height: 48px; background: var(--sky-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--sky);
}
.step-icon svg { width: 22px; height: 22px; }
.hiw-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.hiw-step p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

/* =====================================================
   DIRECTORY
   ===================================================== */
.directory { padding: 100px 0; background: var(--sky-pale); text-align: center; }
.dir-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  background: rgba(255,255,255,.8); color: var(--gray-600); border: 1.5px solid var(--gray-200);
  transition: all .2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.dir-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.pub-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  text-align: left; box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s;
}
.pub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pub-card.hidden { display: none; }
.pub-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.pub-av { width: 44px; height: 44px; border-radius: 10px; color: #fff; font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pub-card-info { flex: 1; }
.pub-card-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.cat-tag { font-size: 0.72rem; font-weight: 600; padding: 2px 10px; border-radius: 100px; }
.cat-tech     { background: #DBEAFE; color: var(--blue); }
.cat-finance  { background: #D1FAE5; color: #059669; }
.cat-lifestyle{ background: #FCE7F3; color: #BE185D; }
.cat-gaming   { background: #EDE9FE; color: #6D28D9; }
.cat-health   { background: #CCFBF1; color: #0D9488; }
.cat-travel   { background: #FFEDD5; color: #C2410C; }
.verified-badge { display: flex; align-items: center; gap: 4px; font-size: 0.72rem; font-weight: 600; color: #10B981; white-space: nowrap; }
.pub-card-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }
.pub-card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; padding: 16px; background: var(--gray-50); border-radius: 8px; }
.pc-stat { text-align: center; }
.pc-stat span { display: block; font-size: 1rem; font-weight: 800; color: var(--navy); }
.pc-stat small { font-size: 0.7rem; color: var(--gray-600); }
.pub-card-footer { display: flex; justify-content: space-between; align-items: center; }
.pub-price { font-weight: 700; color: var(--blue); font-size: 0.9rem; }
.dir-bottom { text-align: center; }
.dir-bottom p { color: var(--gray-600); margin-bottom: 20px; font-size: 0.95rem; }

/* =====================================================
   FEATURES
   ===================================================== */
.features { padding: 100px 0; background: #fff; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 8px; }
.feat-card {
  background: var(--gray-50); border-radius: var(--radius); padding: 36px 28px;
  text-align: left; border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feat-icon svg { width: 24px; height: 24px; }
.fi-blue  { background: #DBEAFE; color: var(--blue); }
.fi-sky   { background: var(--sky-pale); color: var(--sky); }
.fi-navy  { background: #EFF6FF; color: var(--navy-mid); }
.fi-mauve { background: #F5F3FF; color: var(--mauve); }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.feat-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* =====================================================
   SCREENSHOTS
   ===================================================== */
.screenshots {
  background: linear-gradient(165deg, var(--navy) 0%, #0F2A5A 100%);
  padding: 100px 0; text-align: center;
}
.ss-tab-bar { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.ss-tab {
  padding: 9px 20px; border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  border: 1.5px solid rgba(255,255,255,.12); transition: all .2s;
}
.ss-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.ss-tab:hover:not(.active) { background: rgba(255,255,255,.15); color: #fff; }
.ss-viewport { position: relative; overflow: hidden; border-radius: var(--radius); }
.ss-track {
  display: flex;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.ss-slide { min-width: 100%; padding: 4px; }

/* Browser window */
.browser-win {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}
.bw-bar {
  background: #2A3548; display: flex; align-items: center; gap: 12px; padding: 10px 16px;
}
.bw-dots { display: flex; gap: 6px; }
.bw-dots span { width: 11px; height: 11px; border-radius: 50%; }
.bw-dots span:nth-child(1) { background: #FF5F57; }
.bw-dots span:nth-child(2) { background: #FEBC2E; }
.bw-dots span:nth-child(3) { background: #28C840; }
.bw-url { font-size: 0.75rem; color: #8899AA; background: #1E2B3C; padding: 4px 14px; border-radius: 100px; }
.bw-body { background: #fff; display: flex; min-height: 380px; }

/* Directory slide */
.bw-dir .bw-sidebar { width: 190px; flex-shrink: 0; background: var(--gray-50); padding: 20px 14px; border-right: 1px solid var(--gray-200); font-size: 0.8rem; }
.bw-filter-title { font-weight: 700; color: var(--gray-900); margin-bottom: 16px; font-size: 0.85rem; }
.bw-filter-section { margin-bottom: 18px; }
.bw-fl { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 8px; }
.bw-fi { padding: 6px 10px; border-radius: 6px; color: var(--gray-600); cursor: pointer; }
.bw-fi-a { background: var(--blue); color: #fff; font-weight: 600; }
.bw-range-bar { height: 4px; background: var(--gray-200); border-radius: 4px; margin-bottom: 6px; }
.bw-range-fill { height: 100%; background: var(--blue); border-radius: 4px; width: 75%; }
.bw-range-vals { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--gray-400); }
.bw-dir .bw-main { flex: 1; padding: 20px; }
.bw-searchbar { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 8px 14px; font-size: 0.8rem; color: var(--gray-400); margin-bottom: 12px; }
.bw-results-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray-600); margin-bottom: 12px; font-weight: 500; }
.bw-sort { color: var(--blue); cursor: pointer; }
.bw-list { display: flex; flex-direction: column; gap: 2px; }
.bw-row { display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-radius: 8px; transition: background .15s; }
.bw-row:hover { background: var(--gray-50); }
.bw-av { width: 34px; height: 34px; border-radius: 8px; color: #fff; font-weight: 700; font-size: 0.72rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bw-ri { flex: 1; }
.bw-rn { font-size: 0.82rem; font-weight: 600; color: var(--gray-900); }
.bw-rm { font-size: 0.72rem; color: var(--gray-400); }
.bw-rp { font-size: 0.78rem; font-weight: 600; color: var(--blue); white-space: nowrap; }
.bw-rbtn { font-size: 0.72rem; font-weight: 600; background: var(--blue); color: #fff; padding: 5px 12px; border-radius: 6px; cursor: pointer; white-space: nowrap; }

/* Profile slide */
.bw-profile { padding: 24px; flex-direction: column; }
.bw-prof-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.bw-prof-av { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,#3B82F6,#1D4ED8); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.bw-prof-info { flex: 1; }
.bw-prof-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.bw-prof-sub { font-size: 0.77rem; color: var(--gray-600); }
.bw-prof-btn { background: var(--blue); color: #fff; font-size: 0.8rem; font-weight: 600; padding: 8px 18px; border-radius: 8px; cursor: pointer; border: none; margin-left: auto; flex-shrink: 0; }
.bw-prof-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.bw-ps { background: var(--gray-50); border-radius: 8px; padding: 12px; text-align: center; }
.bw-psn { font-size: 1rem; font-weight: 800; color: var(--navy); }
.bw-psl { font-size: 0.68rem; color: var(--gray-400); margin-top: 2px; }
.bw-placements { flex: 1; }
.bw-pl-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 10px; }
.bw-pl-row { display: flex; gap: 12px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.8rem; color: var(--gray-700); }
.bw-pl-row:last-child { border-bottom: none; }
.bw-pl-row span:first-child { flex: 1; }
.bw-pl-row span:nth-child(2) { color: var(--gray-400); font-size: 0.75rem; white-space: nowrap; }
.bw-pl-row strong { color: var(--blue); font-weight: 700; white-space: nowrap; }
.bw-pl-alt { background: var(--gray-50); }

/* Dashboard slide */
.bw-dash .bw-dash-nav { width: 140px; background: var(--navy); padding: 16px 10px; display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.bw-dn-item { padding: 8px 12px; border-radius: 7px; font-size: 0.78rem; color: rgba(255,255,255,.55); cursor: pointer; }
.bw-dn-active { background: rgba(255,255,255,.12); color: #fff; font-weight: 600; }
.bw-dash-main { flex: 1; padding: 20px; }
.bw-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.bw-kpi { background: var(--gray-50); border-radius: 8px; padding: 12px; text-align: center; }
.bw-kn { font-size: 1rem; font-weight: 800; color: var(--navy); }
.bw-kl { font-size: 0.68rem; color: var(--gray-400); margin-top: 2px; }
.bw-table { border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; font-size: 0.78rem; }
.bw-th { display: grid; grid-template-columns: 2fr 2fr 1fr 1fr; padding: 10px 14px; background: var(--gray-50); font-weight: 700; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); }
.bw-tr { display: grid; grid-template-columns: 2fr 2fr 1fr 1fr; padding: 10px 14px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.bw-tr:last-child { border-bottom: none; }
.bw-st { display: inline-block; padding: 2px 8px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; width: fit-content; }
.bw-st-active  { background: #D1FAE5; color: #059669; }
.bw-st-pending { background: #FEF3C7; color: #D97706; }

/* Analytics slide */
.bw-analytics { flex-direction: column; padding: 20px; }
.bw-an-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.bw-an-title { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); }
.bw-date-range { font-size: 0.78rem; color: var(--gray-600); background: var(--gray-100); padding: 5px 12px; border-radius: 6px; cursor: pointer; }
.bw-an-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.bw-ank { background: var(--gray-50); border-radius: 8px; padding: 14px 16px; }
.bw-ankv { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.bw-ankl { font-size: 0.72rem; color: var(--gray-400); margin-top: 2px; }
.bw-ankc { font-size: 0.72rem; font-weight: 700; margin-top: 4px; }
.bw-ankc.up { color: #10B981; }
.bw-chart-area { flex: 1; }
.bw-chart-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); margin-bottom: 10px; }
.bw-chart { height: 100px; display: flex; align-items: flex-end; }
.bw-bars { display: flex; align-items: flex-end; gap: 5px; height: 100%; flex: 1; }
.bw-b { flex: 1; background: linear-gradient(to top, var(--blue), var(--sky-light)); border-radius: 4px 4px 0 0; opacity: .6; min-height: 4px; }
.bw-b-hi { opacity: 1; background: linear-gradient(to top, var(--blue), var(--sky-light)); }

/* Slider nav */
.ss-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 10;
}
.ss-arrow:hover { background: rgba(255,255,255,.25); }
.ss-prev { left: 16px; }
.ss-next { right: 16px; }
.ss-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.ss-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); transition: all .2s; }
.ss-dot.active { background: var(--sky-light); width: 24px; border-radius: 4px; }

/* =====================================================
   VIDEO SECTION
   ===================================================== */
.video-section { padding: 100px 0; background: #fff; text-align: center; }
.video-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 8px; text-align: left; }
.video-thumb {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: linear-gradient(135deg, #0B1D3E 0%, #1A3A6E 100%);
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.vt-overlay { position: absolute; inset: 0; background: rgba(11,29,62,.3); transition: background .2s; }
.video-thumb:hover .vt-overlay { background: rgba(11,29,62,.15); }
.video-thumb-inner { position: relative; z-index: 1; text-align: center; color: #fff; }
.vt-icon { margin: 0 auto 16px; opacity: .6; }
.vt-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.vt-sub { font-size: 0.85rem; opacity: .65; }
.play-btn {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%; background: var(--blue);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,99,235,.5); transition: transform .2s, box-shadow .2s;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 12px 40px rgba(37,99,235,.65); }
.play-btn svg { margin-left: 4px; }
.vc-item { padding: 16px 0; border-bottom: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 4px; }
.vc-item:last-child { border-bottom: none; }
.vc-time { font-size: 0.8rem; font-weight: 700; color: var(--blue); }
.vc-desc { font-size: 0.92rem; color: var(--gray-600); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--gray-50); padding: 100px 0; text-align: center; }
.t-slider { margin-top: 8px; position: relative; overflow: hidden; }
.t-track {
  display: flex;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.t-card { min-width: 100%; padding: 4px 0; }
.t-card > .t-stars { font-size: 1.1rem; color: #F59E0B; margin-bottom: 20px; letter-spacing: 2px; }
.t-card > blockquote {
  font-size: 1.1rem; line-height: 1.75; color: var(--gray-700);
  max-width: 680px; margin: 0 auto 32px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 14px; justify-content: center; }
.t-av { width: 48px; height: 48px; border-radius: 50%; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.t-author strong { display: block; font-size: 0.95rem; color: var(--gray-900); }
.t-author span { font-size: 0.85rem; color: var(--gray-600); }
.t-controls { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 36px; }
.t-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gray-300); font-size: 1.1rem; color: var(--gray-600); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.t-arrow:hover { border-color: var(--blue); color: var(--blue); background: var(--sky-pale); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); transition: all .2s; }
.t-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing { padding: 100px 0; background: #fff; text-align: center; }
.p-tabs {
  display: inline-flex; background: var(--gray-100); border-radius: 100px;
  padding: 4px; gap: 4px; margin-bottom: 56px;
}
.p-tab {
  padding: 10px 28px; border-radius: 100px; font-size: 0.92rem; font-weight: 600;
  color: var(--gray-600); transition: all .2s;
}
.p-tab.active { background: var(--navy); color: #fff; }
.p-tab:hover:not(.active) { background: var(--gray-200); }
.p-panel { display: none; }
.p-panel.active { display: block; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card {
  border-radius: var(--radius); padding: 36px 32px;
  border: 1.5px solid var(--gray-200); text-align: left;
  position: relative; transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pc-featured {
  border-color: var(--blue); background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 100%);
  transform: scale(1.02);
}
.pc-featured:hover { transform: scale(1.02) translateY(-4px); }
.pc-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
.pc-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.pc-price { font-size: 2.2rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; letter-spacing: -.03em; }
.pc-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.price-card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 24px; line-height: 1.5; }
.price-card ul { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 0.88rem; color: var(--gray-700); padding-left: 22px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 60%, #1E40AF 100%);
  padding: 100px 0; text-align: center;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.cta-inner p { font-size: 1.1rem; color: rgba(255,255,255,.72); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-note { font-size: 0.85rem; color: rgba(255,255,255,.45); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--navy); padding: 72px 0 0; color: rgba(255,255,255,.65); }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 20px 0 24px; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .2s; }
.footer-social a:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.9); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,.5); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,.3); }

/* =====================================================
   VIDEO MODAL
   ===================================================== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(6px);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #111827; border-radius: var(--radius); width: min(780px, 94vw);
  position: relative; overflow: hidden; transform: scale(.96);
  transition: transform .25s; box-shadow: 0 32px 96px rgba(0,0,0,.7);
}
.modal-backdrop.open .modal-box { transform: scale(1); }
.modal-close-btn {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.modal-close-btn:hover { background: rgba(255,255,255,.2); }
.modal-video-area { aspect-ratio: 16/9; }
.modal-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: rgba(255,255,255,.7);
  gap: 14px; padding: 40px;
}
.modal-placeholder p { font-size: 1rem; font-weight: 500; }
.modal-placeholder small { font-size: 0.82rem; color: rgba(255,255,255,.4); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hiw-steps { grid-template-columns: repeat(2,1fr); }
  .dir-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .solution-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .video-layout { grid-template-columns: 1fr; }
  .video-thumb { aspect-ratio: 16/9; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.08); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links .btn { margin-top: 8px; align-self: flex-start; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 64px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-flow { padding: 24px; gap: 12px; }
  .flow-connector { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-item { padding: 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .pc-featured { transform: none; }
  .hero-flow { flex-direction: column; max-width: 300px; }
  .bw-dir .bw-sidebar { display: none; }
  .bw-prof-stats { grid-template-columns: repeat(2,1fr); }
  .bw-kpis { grid-template-columns: repeat(2,1fr); }
  .ss-tab-bar { overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .video-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hiw-tabs { flex-direction: column; border-radius: 12px; }
  .hiw-tab { border-radius: 8px; justify-content: center; }
  .price-grid { gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .bw-th, .bw-tr { grid-template-columns: 2fr 1.5fr 1fr; }
  .bw-tr span:last-child, .bw-th span:last-child { display: none; }
}
