.ac-front-page {
  padding-bottom: 1rem;
}

.ac-home-panel__eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--brand-red);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ac-home-hero {
  padding: 2rem 0 1.6rem;
}

.ac-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.ac-home-hero__aside,
.ac-home-hero__feature {
  border: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 59, 122, 0.08);
}

.ac-home-hero__aside {
  padding: 1.45rem;
}

.ac-home-hero__aside h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.ac-home-hero__category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ac-home-hero__category-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--brand-deep-rgb), 0.05) 0%, rgba(var(--brand-rgb), 0.06) 100%);
}

.ac-home-hero__category-list a:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 59, 122, 0.08);
}

.ac-home-hero__category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--brand-rgb), 0.10);
  color: var(--brand-red);
}

.ac-home-hero__category-icon svg,
.ac-home-hero__category-icon svg path {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ac-home-hero__category-copy strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.ac-home-hero__category-copy small {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-3);
  font-size: 0.78rem;
}

.ac-home-hero__feature {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
  background:
    radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.18) 0%, rgba(var(--brand-rgb), 0) 32%),
    linear-gradient(135deg, #ffffff 0%, #f6f9ff 46%, #f4f7fb 100%);
}

.ac-home-hero__feature::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-deep-rgb), 0.12) 0%, rgba(var(--brand-deep-rgb), 0) 68%);
  pointer-events: none;
}

.ac-home-hero__feature h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  color: var(--brand-blue-dark);
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1;
}

.ac-home-hero__feature p {
  max-width: 720px;
  margin-bottom: 1.4rem;
  color: var(--text-2);
  font-size: 1.02rem;
}

.ac-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.ac-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.ac-home-stat {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.ac-home-stat strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-red);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.ac-home-stat span {
  color: var(--text-3);
  font-size: 0.84rem;
  line-height: 1.45;
}

.ac-benefits-bar {
  padding: 0.6rem 0 0.2rem;
}

.ac-benefits-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ac-benefits-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-xs);
}

.ac-benefits-item svg,
.ac-benefits-item svg path {
  width: 22px;
  height: 22px;
  fill: var(--brand-red);
  flex-shrink: 0;
}

.ac-benefits-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.ac-benefits-item span {
  color: var(--text-3);
  font-size: 0.8rem;
  line-height: 1.45;
}

.ac-home-categories,
.ac-home-showcase,
.ac-home-products {
  padding: 3.2rem 0 0;
}

.ac-front-page > section:first-child {
  padding-top: 2rem;
}

.ac-home-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ac-home-section__heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.ac-home-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.ac-home-category {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-xs);
}

.ac-home-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 59, 122, 0.1);
}

.ac-home-category__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(var(--brand-deep-rgb), 0.07) 0%, rgba(var(--brand-rgb), 0.08) 100%);
  overflow: hidden;
}

.ac-home-category__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-home-category__icon svg,
.ac-home-category__icon svg path {
  width: 34px;
  height: 34px;
  fill: var(--brand-red);
}

.ac-home-category__content p {
  margin-bottom: 0.8rem;
  color: var(--text-3);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ac-home-category__title {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-size: 1.08rem;
}

.ac-home-category__meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-red);
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ac-home-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.ac-home-showcase__card {
  padding: 1.7rem;
  border: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 59, 122, 0.96) 0%, rgba(0, 94, 184, 0.96) 100%);
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(0, 59, 122, 0.16);
}

.ac-home-showcase__card .ac-home-panel__eyebrow,
.ac-home-showcase__card p {
  color: rgba(255, 255, 255, 0.78);
}

.ac-home-showcase__card h2 {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.ac-home-showcase__card--accent {
  background:
    linear-gradient(135deg, rgba(var(--brand-rgb), 0.96) 0%, rgba(184, 0, 11, 0.96) 100%);
}

.ac-home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.ac-home-products__grid .ac-product-card {
  height: 100%;
}

.ac-home-empty-state {
  padding: 1.6rem;
  border: 1px dashed rgba(var(--brand-deep-rgb), 0.14);
  border-radius: 20px;
  background: #ffffff;
}

.ac-home-empty-state h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.ac-home-empty-state p {
  margin: 0;
}
