/* =============================================================================
   BASE
   ============================================================================= */

html,
body {
  overflow: auto !important;
}

/* =============================================================================
   SIDEBAR NAV
   ============================================================================= */

.brand-sidenav {
  margin-top: 79px;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  transition: all 0.3s;
}

.brand-sidenav__link {
  color: white;
  padding: 10px 20px;
  text-decoration: none;

  transition: all 0.3s;
}

.brand-sidenav__link:hover, .brand-sidenav__link.active:hover {
  background-color: rgba(0, 0, 0, 0.15);
}

.brand-sidenav__link.active {
  text-decoration: underline;
}

/* =============================================================================
   HERO WRAPPER
   ============================================================================= */

.brand-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.brand-layout-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: white;
  color: black;
  background-position: center;
  background-size: cover;
}

.brand-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 100px 6% 80px;
}

/* =============================================================================
   LEFT COLUMN
   ============================================================================= */

.brand-left {
  flex: 1 1 0;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.brand-name {
  font-size: 58px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-description {
  width: max-content;
  color: white;
  max-width: 600px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

/* =============================================================================
   RIGHT STATS PANEL
   ============================================================================= */

.brand-stats {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 28px;
  background: rgba(8, 18, 50, 0.85);
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.stat-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
}

.brand-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #070d1e;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.brand-button:hover {
  background: #111b3a;
}

.brand-button::before {
  content: ">> ";
  margin-right: 8px;
  display: inline-block;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.2s;
}

.brand-button:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.brand-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #070d1e;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.brand-cta:hover {
  background: #111b3a;
}

/* =============================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================================= */

@media (max-width: 1024px) {
  .brand-sidenav {
    display: none;
  }

  .brand-layout {
    padding: 110px 5% 80px;
    gap: 35px;
  }

  .brand-left {
    max-width: 100%;
  }

  .brand-name {
    font-size: clamp(32px, 4.5vw, 56px);
  }

  .brand-description {
    width: auto;
    max-width: 100%;
    font-size: 13px;
  }

  .brand-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    padding: 28px 24px;
  }

  .stat-block {
    flex: 1 1 calc(50% - 9px);
    min-width: 150px;
  }

  .brand-cta {
    flex: 1 1 100%;
  }
}

/* =============================================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================================= */

@media (max-width: 768px) {
  .brand-layout {
    flex-direction: column;
    align-items: center;
    gap: 45px;
    padding: 100px 20px 80px;
  }

  .brand-left {
    width: 100%;
    align-items: flex-start;
  }

  .brand-name {
    font-size: clamp(28px, 3.5vw, 44px);
  }

  .brand-description {
    font-size: 12px;
    line-height: 1.7;
  }

  .brand-stats {
    width: 100%;
    flex-direction: column;
    padding: 24px 22px;
  }

  .stat-block {
    flex: 1 1 100%;
  }

  .stat-heading {
    font-size: 14px;
  }

  .stat-desc {
    font-size: 11px;
  }

  .brand-cta {
    padding: 14px 16px;
    font-size: 10px;
  }
}

/* =============================================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================================= */

@media (max-width: 480px) {
  .brand-layout {
    gap: 36px;
    padding: 90px 16px 80px;
  }

  .brand-name {
    font-size: clamp(22px, 6.5vw, 36px);
  }

  .brand-description {
    font-size: 11px;
    line-height: 1.65;
  }

  .brand-stats {
    gap: 16px;
    padding: 18px 16px;
  }

  .stat-heading {
    font-size: 13px;
  }

  .stat-desc {
    font-size: 10px;
    line-height: 1.55;
  }

  .brand-cta {
    padding: 12px 14px;
    font-size: 9px;
  }
}
