/* ===========================
   GLOBAL
=========================== */

body {
  font-family: 'Human BBY Digital', 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f5;
  color: #1d252c;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   UTILITY BAR
=========================== */

.utility-bar {
  background-color: #1d252c;
  font-size: 12px;
}

.utility-link {
  color: #c5cbd3;
  font-size: 12px;
  transition: color 0.2s;
}

.utility-link:hover {
  color: #fff;
}

/* ===========================
   MAIN HEADER
=========================== */

.main-header {
  background-color: #003087;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.bb-logo {
  background-color: #ffe000;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}

.bb-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #1d252c;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.bb-logo-buy {
  color: #003087;
}

.search-bar {
  max-width: 560px;
  width: 100%;
}

.search-input {
  border: none;
  border-radius: 24px 0 0 24px !important;
  padding: 10px 18px;
  font-size: 14px;
  background: #fff;
}

.search-input:focus {
  box-shadow: none;
  outline: none;
}

.search-btn {
  background-color: #ffe000;
  border: none;
  border-radius: 0 24px 24px 0 !important;
  padding: 0 18px;
  font-size: 16px;
  color: #1d252c;
}

.search-btn:hover {
  background-color: #f0d000;
}

.nav-header-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-header-link:hover {
  color: #ffe000;
}

/* ===========================
   CATEGORY NAV
=========================== */

.category-nav {
  background-color: #1a3a6e;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cat-link {
  color: #d8e4f0;
  font-size: 13px;
  padding: 10px 0;
  white-space: nowrap;
  transition: color 0.2s;
}

.cat-link:hover {
  color: #ffe000;
}

/* ===========================
   BREADCRUMB
=========================== */

.breadcrumb-bar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  font-size: 13px;
}

.breadcrumb-item a {
  color: #003087;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6d6d6d;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #999;
}

/* ===========================
   HERO SECTION
=========================== */

.hero-section {
  background: linear-gradient(135deg, #003087 0%, #0046be 60%, #005eff 100%);
  color: #fff;
}

.geek-squad-label {
  color: #ffe000;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.hero-subtitle {
  font-size: 16px;
  color: #c8d8f5;
  max-width: 520px;
  line-height: 1.7;
}

.btn-download-primary {
  background-color: #ffe000;
  color: #1d252c;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-download-primary:hover {
  background-color: #f0d000;
  color: #1d252c;
  transform: translateY(-1px);
}

.btn-download-primary:active {
  transform: translateY(0);
}

.download-note {
  font-size: 12px;
  color: #a0b8dd;
}

.shield-icon-wrap {
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.shield-icon {
  font-size: 110px;
  color: #ffe000;
  opacity: 0.9;
}

/* ===========================
   STEPS SECTION
=========================== */

.steps-section {
  background: #fff;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #1d252c;
}

.step-card {
  background: #f5f7ff;
  border: 1px solid #dce4f5;
  border-radius: 10px;
  padding: 36px 24px 28px;
  position: relative;
  transition: box-shadow 0.2s;
}

.step-card:hover {
  box-shadow: 0 6px 20px rgba(0,70,190,0.12);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #003087;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.step-icon {
  font-size: 36px;
  color: #0046be;
}

.step-title {
  font-weight: 700;
  color: #1d252c;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===========================
   CTA BANNER
=========================== */

.cta-banner {
  background-color: #1d252c;
  color: #fff;
}

.cta-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.cta-desc {
  font-size: 15px;
  color: #a8b4bf;
}

/* ===========================
   FEATURES SECTION
=========================== */

.features-section {
  background: #f5f5f5;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 24px;
  border: 1px solid #e5e9f2;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 6px 20px rgba(0,70,190,0.1);
}

.feature-icon {
  font-size: 38px;
  color: #0046be;
  display: block;
}

.feature-title {
  font-weight: 700;
  color: #1d252c;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ===========================
   FOOTER
=========================== */

.main-footer {
  background-color: #1d252c;
  color: #a8b4bf;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #a8b4bf;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffe000;
}

.footer-bottom {
  background-color: #111820;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 12px;
  color: #6d7a85;
}

.footer-bottom-link {
  color: #6d7a85;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: #ffe000;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .btn-download-primary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 20px;
  }
}

