/* ==========================================================================
   AVENTION MEDIA - INDUSTRY BASE DESIGN SYSTEM (LIGHT V3)
   ========================================================================== */

:root {
  --ib-primary:       #3466FC;
  --ib-primary-dark:  #1E44C8;
  --ib-accent:        #FDDA00;
  --ib-bg-light:      #f8fafc;
  --ib-bg-subtle:     #EEF3FF;
  --ib-text-dark:     #0f172a;
  --ib-text-muted:    #475569;
  --ib-border:        #e2e8f0;
  --radius-md:        0.75rem;
  --radius-lg:        1rem;
  --radius-xl:        1.25rem;
  --shadow-card:      0 4px 20px rgba(15,23,42,.04);
  --shadow-hover:     0 12px 32px rgba(52,102,252,.14);
  --font-sans:        'Figtree', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* -- Hero Section (Dark Blue Gradient) ------------------------------------ */
.ib-hero {
  background: linear-gradient(135deg, #ecf5fb 0%, #f4f9fd 100%) !important;
  color: #ffffff;
  padding: 3rem 0 4.5rem;
  position: relative;
  
  border-bottom: none;
}
/* Dot pattern overlay */
.ib-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px; opacity: 1; pointer-events: none; z-index: 0;
}
/* Decorative glow */
.ib-hero::after {
  content: ''; position: absolute;
  top: -40%; left: -10%; width: 55%; height: 200%;
  background: radial-gradient(circle, rgba(253,218,0,0.10) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.ib-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(#cbd5e1 0.75px, transparent 0.75px);
  background-size: 24px 24px; opacity: 0.35; pointer-events: none;
}
.ib-hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3.5rem; align-items: flex-start; position: relative; z-index: 1;
}

.ib-hero-badges-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.5rem; align-items: center; }
.ib-hero-company-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #FDDA00; border: none;
  border-radius: 99px; padding: .4rem 1.1rem;
  font-size: .84rem; font-weight: 700; color: #0F172A;
}
.ib-hero-contact-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #eff6ff; border: 1.5px solid #bfdbfe;
  border-radius: 99px; padding: .4rem 1.1rem;
  font-size: .84rem; font-weight: 700; color: #1d4ed8;
}
.ib-hero-date-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: 99px; padding: .4rem 1rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,0.8);
}

.ib-hero h1 {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 1.25rem; color: #ffffff !important;
  background: none !important; display: block !important; padding: 0 !important;
}
.ib-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #3466FC, #3466FC);
  -webkit-background-clip: text; -webkit-text-fill-color: #FDDA00 !important; background: none;
  background-clip: text; display: inline-block;
}
.ib-hero-desc { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.85); max-width: 630px; margin-bottom: 1.75rem; }

.ib-intent-strip {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-top: 1.75rem; margin-bottom: 1.75rem;
  padding: .85rem 1.25rem; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.ib-intent-tag { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,0.90); }
.ib-intent-tag i { color: #FDDA00; font-size: .9rem; }

.ib-hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #FDDA00;
  color: #0F172A !important; border: none; border-radius: 50px;
  padding: .9rem 2.25rem; font-size: .95rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(253,218,0,.35); transition: transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(253,218,0,.50); color: #0F172A !important; }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,0.12); color: #ffffff !important; border: 1.5px solid rgba(255,255,255,0.40); border-radius: 50px;
  padding: .9rem 2rem; font-size: .95rem; font-weight: 600; text-decoration: none;
  backdrop-filter: blur(4px); transition: background .2s, border-color .2s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.22); color: #ffffff !important; }

/* Hero Form */
.ib-hero-form-card {
  background: #ffffff; border: 1px solid var(--ib-border);
  border-radius: var(--radius-xl); padding: 2.25rem;
  box-shadow: 0 12px 36px rgba(15,23,42,.08);
}
.ib-hero-form-card h3 { font-size:  1.35rem; font-weight: 800; color: #0f172a; margin-bottom: .4rem; }
.ib-hero-form-card p { font-size: .88rem; color: #64748b; margin-bottom: 1.25rem; }
.ib-form-group { margin-bottom: .95rem; }
.ib-form-group input,
.ib-form-group textarea {
  width: 100%; background: #f8fafc; border: 1.5px solid #cbd5e1;
  border-radius: .65rem; padding: .8rem 1.1rem; color: #0f172a;
  font-size: .9rem; outline: none; transition: border-color .2s;
  box-sizing: border-box; font-family: inherit;
}
.ib-form-group input::placeholder,
.ib-form-group textarea::placeholder { color: #94a3b8; }
.ib-form-group input:focus,
.ib-form-group textarea:focus { border-color: #3466FC; background: #ffffff; }
.ib-form-group textarea { resize: vertical; min-height: 80px; }
.btn-form-submit {
  width: 100%; background: linear-gradient(135deg, #3466FC, #1E44C8);
  color: #ffffff !important; border: none; border-radius: .65rem;
  padding: .95rem; font-size: .95rem; font-weight: 700; cursor: pointer; transition: opacity .2s; font-family: inherit;
}
.btn-form-submit:hover { opacity: .93; transform: translateY(-1px); }

/* Hero Stats Bar (Hidden) */
.ib-stats-bar { display: none !important; }
.ib-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.ib-stat-val { font-size: 1.8rem; font-weight: 900; color: #FDDA00; line-height: 1.2; }
.ib-stat-label { font-size: .82rem; font-weight: 700; color: #FFFFFF; text-transform: uppercase; letter-spacing: 0.5px; margin-top: .4rem; }

/* Sections & Cards */
.ib-section { padding: 5rem 0; }
.ib-section-alt { background: #f8fafc; }
.ib-section-dark { background: #0f172a; color: #ffffff; }

.section-eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--ib-primary); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: #0f172a; line-height: 1.25; margin-bottom: 1rem; background: none !important; display: block !important; padding: 0 !important; }
.section-desc { font-size: 1rem; color: var(--ib-text-muted); line-height: 1.7; max-width: 680px; }

.ib-usecase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.ib-usecase-card { background: #ffffff; border: 1px solid var(--ib-border); border-radius: var(--radius-lg); padding: 1.85rem; box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; }
.ib-usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.ib-usecase-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #EEF3FF, #C7D5FD); border-radius: .85rem; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--ib-primary); margin-bottom: 1rem; }
.ib-usecase-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: .5rem; }
.ib-usecase-card p { font-size: .9rem; color: var(--ib-text-muted); line-height: 1.65; margin: 0; }

.ib-fields-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .85rem; margin-top: 1.75rem; }
.ib-field-item { display: flex; align-items: center; gap: .75rem; background: #ffffff; border: 1px solid var(--ib-border); border-radius: .65rem; padding: .8rem 1.1rem; font-size: .88rem; font-weight: 600; color: #1e293b; transition: border-color .2s; }
.ib-field-item:hover { border-color: var(--ib-primary); background: var(--ib-bg-subtle); }
.ib-field-item i { color: var(--ib-primary); font-size: .95rem; min-width: 18px; }

/* Table Component */
.ib-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); margin-top: 1.5rem; border: 1px solid var(--ib-border); }
.ib-table { width: 100%; border-collapse: collapse; background: #ffffff; font-size: .85rem; }
.ib-table thead tr { background: #f8fafc; border-bottom: 2px solid var(--ib-border); color: #0f172a; }
.ib-table th { padding: 1.1rem 1.25rem; text-align: left; font-weight: 700; white-space: nowrap; color: #0f172a; }
.ib-table td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--ib-border); color: #1e293b; white-space: nowrap; }
.ib-table tbody tr:hover { background: #EEF3FF; }
.badge-masked { display: inline-flex; align-items: center; gap: .35rem; background: #EEF3FF; color: var(--ib-primary); border-radius: 4px; padding: .15rem .55rem; font-size: .78rem; font-weight: 600; }
.badge-naics { display: inline-flex; align-items: center; gap: .3rem; background: #fef3c7; color: #b45309; border: 1px solid #fde68a; border-radius: 4px; padding: .15rem .55rem; font-size: .76rem; font-weight: 700; font-family: monospace; }
.badge-linkedin { display: inline-flex; align-items: center; gap: .35rem; background: #0077b5; color: #ffffff; border-radius: 4px; padding: .15rem .55rem; font-size: .75rem; font-weight: 600; text-decoration: none; }

.ib-table-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ib-filter-btn { background: #ffffff; border: 1.5px solid var(--ib-border); border-radius: 50px; padding: .4rem 1.1rem; font-size: .82rem; font-weight: 600; color: #475569; cursor: pointer; transition: all .2s; }
.ib-filter-btn.active, .ib-filter-btn:hover { background: var(--ib-primary); color: #ffffff; border-color: var(--ib-primary); }

/* FAQ Accordion */
.ib-faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.ib-faq-item { background: #ffffff; border: 1px solid var(--ib-border); border-radius: var(--radius-lg);  box-shadow: 0 2px 8px rgba(0,0,0,.03); }
.ib-faq-question { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; background: none; border: none; font-size: .98rem; font-weight: 700; color: #0f172a; cursor: pointer; gap: 1rem; font-family: inherit; }
.ib-faq-question i.chevron { transition: transform .3s; color: var(--ib-primary); flex-shrink: 0; }
.ib-faq-item.open .chevron { transform: rotate(180deg); }
.ib-faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.35s ease, opacity 0.3s ease; }
.ib-faq-answer p { font-size: .92rem; color: var(--ib-text-muted); line-height: 1.7; margin: 0; padding: 0 1.5rem 1.35rem; }
.ib-faq-item.open .ib-faq-answer { max-height: 600px; opacity: 1; }

@media (max-width: 768px) {
  .ib-hero-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .ib-hero-form-card { display: block !important; width: 100% !important; }
  .ib-stats-inner { grid-template-columns: repeat(2,1fr); }
}


/* Hero Form Card White BG & Box Shadow */

.tb-hero-form-card, .hb-hero-form-card, .ib-hero-form-card, .gb-hero-form-card, .rb-hero-form-card, .dh-hero-form-card {
  background: #FFFFFF !important;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.06) !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
}

.tb-hero h1, .hb-hero h1, .ib-hero h1, .gb-hero h1, .rb-hero h1, .dh-hero h1, .hero-title {
  color: #0F172A !important;
}

.tb-hero-desc, .hb-hero-desc, .ib-hero-desc, .gb-hero-desc, .rb-hero-desc, .dh-hero-desc {
  color: #334155 !important;
}



/* Hero Breadcrumbs High Contrast Light Background Styles */
.breadcrumbs,
.tb-hero .breadcrumbs, .hb-hero .breadcrumbs, .ib-hero .breadcrumbs, .gb-hero .breadcrumbs, .rb-hero .breadcrumbs, .dh-hero .breadcrumbs {
  color: #64748B !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin-bottom: 2.25rem !important;
}
.breadcrumbs a,
.tb-hero .breadcrumbs a, .hb-hero .breadcrumbs a, .ib-hero .breadcrumbs a, .gb-hero .breadcrumbs a, .rb-hero .breadcrumbs a, .dh-hero .breadcrumbs a {
  color: #3466FC !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.breadcrumbs a:hover,
.tb-hero .breadcrumbs a:hover, .hb-hero .breadcrumbs a:hover, .ib-hero .breadcrumbs a:hover, .gb-hero .breadcrumbs a:hover, .rb-hero .breadcrumbs a:hover, .dh-hero .breadcrumbs a:hover {
  text-decoration: underline !important;
}
.breadcrumbs span,
.tb-hero .breadcrumbs span, .hb-hero .breadcrumbs span, .ib-hero .breadcrumbs span, .gb-hero .breadcrumbs span, .rb-hero .breadcrumbs span, .dh-hero .breadcrumbs span {
  color: #0F172A !important;
  font-weight: 700 !important;
}

/* Hero Form Card Clean Padding & Logo Yellow Submit Button */
.tb-hero-form-card, .hb-hero-form-card, .ib-hero-form-card, .gb-hero-form-card, .rb-hero-form-card, .dh-hero-form-card {
  padding: 2.25rem 2rem !important;
  background: #FFFFFF !important;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.06) !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
}

.btn-form-submit {
  background: #FDDA00 !important;
  color: #0F172A !important;
  border: 2px solid #FDDA00 !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
  padding: 0.95rem !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(253, 218, 0, 0.35) !important;
}
.btn-form-submit:hover {
  background: #3466FC !important;
  color: #FFFFFF !important;
  border-color: #3466FC !important;
  box-shadow: 0 6px 20px rgba(52, 102, 252, 0.4) !important;
}


/* ==========================================================================
   Header & All Sections 100px Left / Right Side Padding Alignment
   ========================================================================== */
@media (min-width: 992px) {
  .header .container,
  .top-bar .container,
  .tb-hero .container, .hb-hero .container, .ib-hero .container, .gb-hero .container, .rb-hero .container, .dh-hero .container,
  .trusted-brands-section .container,
  .tb-section .container, .hb-section .container, .ib-section .container, .gb-section .container, .rb-section .container, .dh-section .container,
  .container {
    max-width: 100% !important;
    padding-left: 100px !important;
    padding-right: 100px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 991px) {
  .header .container,
  .top-bar .container,
  .tb-hero .container, .hb-hero .container, .ib-hero .container, .gb-hero .container, .rb-hero .container, .dh-hero .container,
  .trusted-brands-section .container,
  .tb-section .container, .hb-section .container, .ib-section .container, .gb-section .container, .rb-section .container, .dh-section .container,
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* Hero Breadcrumbs High Contrast Light Background Styles */
.breadcrumbs,
.tb-hero .breadcrumbs, .hb-hero .breadcrumbs, .ib-hero .breadcrumbs, .gb-hero .breadcrumbs, .rb-hero .breadcrumbs, .dh-hero .breadcrumbs {
  color: #94A3B8 !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  margin-bottom: 3.5rem !important;
  line-height: 1.4 !important;
}
.breadcrumbs a,
.tb-hero .breadcrumbs a, .hb-hero .breadcrumbs a, .ib-hero .breadcrumbs a, .gb-hero .breadcrumbs a, .rb-hero .breadcrumbs a, .dh-hero .breadcrumbs a {
  color: #94A3B8 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}
.breadcrumbs a:hover,
.tb-hero .breadcrumbs a:hover, .hb-hero .breadcrumbs a:hover, .ib-hero .breadcrumbs a:hover, .gb-hero .breadcrumbs a:hover, .rb-hero .breadcrumbs a:hover, .dh-hero .breadcrumbs a:hover {
  color: #3466FC !important;
  text-decoration: underline !important;
}
.breadcrumbs span,
.tb-hero .breadcrumbs span, .hb-hero .breadcrumbs span, .ib-hero .breadcrumbs span, .gb-hero .breadcrumbs span, .rb-hero .breadcrumbs span, .dh-hero .breadcrumbs span {
  color: #94A3B8 !important;
  font-weight: 400 !important;
}

@media (max-width: 991px) {
  .breadcrumbs,
  .tb-hero .breadcrumbs, .hb-hero .breadcrumbs, .ib-hero .breadcrumbs, .gb-hero .breadcrumbs, .rb-hero .breadcrumbs, .dh-hero .breadcrumbs {
    font-size: 0.8rem !important;
    margin-bottom: 1.25rem !important;
  }
  .tb-hero, .hb-hero, .ib-hero, .gb-hero, .rb-hero, .dh-hero {
    padding-top: 0.75rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* Bottom CTA Section Light Bluish Theme Override */
.tb-section-dark,
.hb-section-dark,
.ib-section-dark,
.gb-section-dark,
.rb-section-dark,
.dh-section-dark {
  background: linear-gradient(135deg, #EEF3FF 0%, #E0E7FF 100%) !important;
  padding: 4.5rem 0 !important;
  border-top: 1px solid #C7D2FE !important;
  border-bottom: 1px solid #C7D2FE !important;
}
.tb-section-dark .section-title,
.hb-section-dark .section-title,
.ib-section-dark .section-title,
.gb-section-dark .section-title,
.rb-section-dark .section-title,
.dh-section-dark .section-title {
  color: #0F172A !important;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem) !important;
  font-weight: 900 !important;
}
.tb-section-dark .section-desc,
.hb-section-dark .section-desc,
.ib-section-dark .section-desc,
.gb-section-dark .section-desc,
.rb-section-dark .section-desc,
.dh-section-dark .section-desc {
  color: #475569 !important;
  font-weight: 500 !important;
}

/* Related Databases Grid Mobile Responsiveness */
.rel-db-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .rel-db-grid {
    grid-template-columns: 1fr !important;
  }
  .rel-db-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}


/* ==========================================================================
   Hero Section Reduced Top Padding & Breadcrumbs Spacing Standard
   ========================================================================== */
.tb-hero, .hb-hero, .ib-hero, .gb-hero, .rb-hero, .dh-hero {
  padding-top: 1rem !important;
  padding-bottom: 3.5rem !important;
}

@media (max-width: 991px) {
  .tb-hero, .hb-hero, .ib-hero, .gb-hero, .rb-hero, .dh-hero {
    padding-top: 0.75rem !important;
    padding-bottom: 2.5rem !important;
  }
}
