/* About page — full-width hero + icon story + product slider */

.about-banner {
  position: relative;
  width: 100%;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--royal) 100%);
  color: var(--white);
  overflow: hidden;
}

.about-banner::before,
.about-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-banner::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.22) 0%, transparent 70%);
}

.about-banner::after {
  width: 280px;
  height: 280px;
  bottom: -100px;
  left: 8%;
  background: radial-gradient(circle, rgba(102, 187, 106, 0.18) 0%, transparent 70%);
}

.about-banner .container {
  position: relative;
  z-index: 1;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.about-breadcrumb a:hover {
  color: var(--yellow);
}

.about-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.about-banner h1 em {
  font-style: normal;
  color: var(--yellow);
}

.about-banner-lead {
  max-width: 42rem;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

.about-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-banner-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--yellow);
}

.about-banner-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Story + icons */
.about-story {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-story-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--navy);
  margin: 0 0 1rem;
}

.about-story-copy p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-icon-card {
  position: relative;
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.about-icon-card .icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.about-icon-card .icon-wrap svg {
  width: 28px;
  height: 28px;
}

.about-icon-card:nth-child(1) .icon-wrap {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: var(--green);
}

.about-icon-card:nth-child(2) .icon-wrap {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  color: #f57f17;
}

.about-icon-card:nth-child(3) .icon-wrap {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: var(--royal);
}

.about-icon-card:nth-child(4) .icon-wrap {
  background: linear-gradient(135deg, #fce4ec, #f8bbd9);
  color: #c2185b;
}

.about-icon-card:nth-child(5) .icon-wrap {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.about-icon-card:nth-child(6) .icon-wrap {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  color: var(--navy);
}

.about-icon-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.about-icon-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Timeline strip */
.about-timeline {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.about-timeline-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-timeline-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-timeline-item {
  text-align: center;
  padding: 1.5rem;
}

.about-timeline-item .step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 33, 71, 0.08);
}

.about-timeline-item h4 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.about-timeline-item p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* Product slider — compact, no section background */
.about-products {
  padding: 2rem 0 2.5rem;
  background: transparent;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.about-products .section-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.about-products .section-label {
  color: var(--green);
}

.about-products .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin: 0.35rem 0 0.5rem;
}

.about-products .section-intro {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 32rem;
  margin: 0 auto;
}

.product-slider {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
}

.product-slider-viewport {
  overflow: hidden;
  margin: 0 2.25rem;
}

@media (max-width: 640px) {
  .product-slider-viewport {
    margin: 0 1.85rem;
  }
}

.product-slider-track {
  display: flex;
  gap: 0.65rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.product-slide {
  flex: 0 0 calc(72% - 0.35rem);
  min-width: 0;
  max-width: 200px;
}

@media (min-width: 480px) {
  .product-slide {
    flex: 0 0 calc(44% - 0.4rem);
    max-width: 185px;
  }
}

@media (min-width: 768px) {
  .product-slide {
    flex: 0 0 calc(30% - 0.5rem);
    max-width: 200px;
  }
}

@media (min-width: 1024px) {
  .product-slide {
    flex: 0 0 calc(23% - 0.55rem);
    max-width: 210px;
  }
}

.product-slide-card {
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-slide-card .slide-img {
  aspect-ratio: 16/10;
  background: transparent;
  overflow: hidden;
}

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

.product-slide-card .slide-body {
  padding: 0.65rem 0.75rem 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.product-slide-card .tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}

.product-slide-card h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}

.product-slide-card p {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-slide-card .link-arrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal);
  margin-top: 0.2rem;
}

.product-slide-card .link-arrow:hover {
  color: var(--navy);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 33, 71, 0.08);
  transition: transform 0.2s, border-color 0.2s;
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: var(--yellow);
  background: var(--yellow);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 33, 71, 0.15);
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: var(--navy);
  transform: scale(1.15);
}

.slider-dot:hover:not(.active) {
  background: rgba(0, 33, 71, 0.35);
}
