.brands-page--landing {
  background:
    radial-gradient(circle at top left, rgba(146, 208, 80, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.breadcrumb {
  padding: 16px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--green-dark);
}

.breadcrumb span {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url("./brands/img/hero.webp") center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 42, 79, 0.88) 0%, rgba(5, 61, 112, 0.78) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(146, 208, 80, 0.06);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0;
}

.hero-inner h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4.5vw, 46px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

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

.hero-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.brands-section {
  padding: 80px 0;
}

.brands-header {
  text-align: center;
  margin-bottom: 56px;
}

.brands-header .section-subtitle {
  margin: 0 auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.brand-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.brand-card--featured {
  grid-column: 1 / -1;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}

.brand-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--light-gray);
}

.brand-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 61, 112, 0.02) 0%, rgba(5, 61, 112, 0.28) 100%);
}

.brand-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.brand-card-body h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.brand-tagline {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-card-body p {
  flex: 1;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.brand-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.brand-features span {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 500;
}

.brand-card-body .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 24px;
  font-size: 14px;
}

.brand-card--beautyrest .brand-card-img {
  background: linear-gradient(135deg, #d8e0f8 0%, #8da0d8 100%);
}

.brand-card--sealy .brand-card-img {
  background: linear-gradient(135deg, #dae9ff 0%, #91b8f7 100%);
}

.brand-card--serta .brand-card-img {
  background: linear-gradient(135deg, #fff2d8 0%, #f0c978 100%);
}

.brand-card--stearns .brand-card-img {
  background: linear-gradient(135deg, #edf4df 0%, #89b16c 100%);
}

.brand-card--saatva .brand-card-img {
  background: linear-gradient(135deg, #dff6f3 0%, #76c0b4 100%);
}

@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .brand-card--featured {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px;
  }

  .hero-inner {
    padding: 56px 0;
  }

  .brand-card-img {
    height: 210px;
  }

  .brand-card-body {
    padding: 24px;
  }
}
