/* ==========================================================
   ABOUT PAGE CSS
   File: public/assets/css/about.css
   Depends on: theme.css variables
========================================================== */


/* ==========================================================
   01. ABOUT HERO
========================================================== */

.about-hero {
  margin-top: var(--lss-header-height);
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(220, 53, 69, 0.24), transparent 34%),
    linear-gradient(135deg, #111111 0%, #251116 54%, #111111 100%);
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.about-hero-content h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 78px);
  text-transform: uppercase;
}

.about-hero-content h1 span {
  display: block;
  color: var(--lss-primary);
}

.about-hero-content p {
  max-width: 680px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.85;
}

.about-hero .section-label {
  color: #ff8b95;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.about-outline-white {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.34);
}

.about-outline-white:hover {
  background: #ffffff;
  color: #111111 !important;
  border-color: #ffffff;
}

.about-hero-image {
  position: relative;
}

.about-hero-image::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 180px;
  height: 180px;
  border: 4px solid var(--lss-primary);
  border-radius: 24px;
  opacity: 0.42;
}

.about-hero-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.about-hero-badge {
  position: absolute;
  left: -22px;
  bottom: 34px;
  z-index: 3;
  padding: 20px 24px;
  background: var(--lss-primary);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: var(--lss-shadow-red);
}

.about-hero-badge strong {
  display: block;
  color: #ffffff;
  font-family: var(--lss-font-heading);
  font-size: 46px;
  line-height: 1;
}

.about-hero-badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


/* ==========================================================
   02. ABOUT STATS
========================================================== */

.about-stats {
  margin-top: -44px;
  position: relative;
  z-index: 4;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--lss-surface);
  border: 1px solid var(--lss-border);
  border-radius: 22px;
  box-shadow: var(--lss-shadow-md);
  overflow: hidden;
}

.about-stat-card {
  min-height: 126px;
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--lss-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-stat-card:last-child {
  border-right: 0;
}

.about-stat-card strong {
  color: var(--lss-primary);
  font-family: var(--lss-font-heading);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.about-stat-card span {
  margin-top: 8px;
  color: var(--lss-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


/* ==========================================================
   03. STORY SECTION
========================================================== */

.about-story {
  padding-top: 120px;
  background: var(--lss-bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--lss-shadow-md);
}

.about-year-box {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: calc(100% - 48px);
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lss-border);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .about-year-box {
  background: rgba(27, 31, 42, 0.92);
}

.about-year-box strong {
  display: block;
  color: var(--lss-primary);
  font-family: var(--lss-font-heading);
  font-size: 46px;
  line-height: 1;
}

.about-year-box span {
  color: var(--lss-text);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-story-content h2,
.about-strength-content h2 {
  margin: 0 0 20px;
  font-size: 50px;
  text-transform: uppercase;
}

.about-story-content h2 span,
.about-strength-content h2 span {
  color: var(--lss-primary);
}

.about-story-content p,
.about-strength-content p {
  color: var(--lss-text-soft);
  font-size: 15px;
  line-height: 1.9;
}

.about-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-feature-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: var(--lss-surface);
  border: 1px solid var(--lss-border);
  border-radius: 999px;
  color: var(--lss-text-soft);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--lss-shadow-sm);
}

.about-feature-pills i {
  color: var(--lss-primary);
}


/* ==========================================================
   04. AUTHORISED BRANDS
========================================================== */

.about-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-brand-card {
  min-height: 240px;
  padding: 30px;
  background: var(--lss-surface);
  border: 1px solid var(--lss-border);
  border-radius: 20px;
  transition: all var(--lss-transition);
  position: relative;
  overflow: hidden;
}

.about-brand-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 130px;
  height: 130px;
  background: var(--lss-primary-soft);
  border-radius: 50%;
}

.about-brand-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--lss-shadow-md);
}

.about-brand-card i {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lss-primary-soft);
  border-radius: 16px;
  color: var(--lss-primary);
  font-size: 26px;
}

.about-brand-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 22px;
  text-transform: uppercase;
}

.about-brand-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--lss-muted);
  font-size: 14px;
  line-height: 1.75;
}


/* ==========================================================
   05. STRENGTH SECTION
========================================================== */

.about-strength {
  background: var(--lss-bg);
}

.about-strength-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.about-strength-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-strength-card {
  min-height: 220px;
  padding: 30px;
  background: var(--lss-surface);
  border: 1px solid var(--lss-border);
  border-radius: 20px;
  transition: all var(--lss-transition);
}

.about-strength-card:hover {
  transform: translateY(-7px);
  border-color: transparent;
  box-shadow: var(--lss-shadow-md);
}

.about-strength-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(220, 53, 69, 0.16);
  font-family: var(--lss-font-heading);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
}

.about-strength-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  text-transform: uppercase;
}

.about-strength-card p {
  margin: 0;
  color: var(--lss-muted);
  font-size: 14px;
  line-height: 1.8;
}


/* ==========================================================
   06. CUSTOMERS SECTION
========================================================== */

.about-customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-customer-card {
  min-height: 230px;
  padding: 30px;
  text-align: center;
  background: var(--lss-surface);
  border: 1px solid var(--lss-border);
  border-radius: 20px;
  transition: all var(--lss-transition);
}

.about-customer-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--lss-shadow-md);
}

.about-customer-card i {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lss-primary-soft);
  color: var(--lss-primary);
  border-radius: 18px;
  font-size: 28px;
}

.about-customer-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  text-transform: uppercase;
}

.about-customer-card p {
  margin: 0;
  color: var(--lss-muted);
  font-size: 14px;
  line-height: 1.75;
}


/* ==========================================================
   07. DISTRIBUTOR LOGOS
========================================================== */

.about-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.about-logo-card {
  height: 120px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--lss-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--lss-transition);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.about-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lss-shadow-sm);
}

.about-logo-card img {
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}


/* ==========================================================
   08. CTA
========================================================== */

.about-cta {
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(220, 53, 69, 0.24), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(220, 53, 69, 0.16), transparent 34%),
    #141414;
}

.about-cta-box {
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 34px;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.about-cta-box h2 {
  margin: 6px 0 12px;
  color: #ffffff;
  font-size: 54px;
  text-transform: uppercase;
}

.about-cta-box p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ==========================================================
   09. RESPONSIVE DESIGN
========================================================== */

@media (max-width: 1199px) {
  .about-brand-grid,
  .about-customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .about-hero {
    margin-top: var(--lss-header-height-tablet);
    padding: 90px 0 76px;
  }

  .about-hero-grid,
  .about-story-grid,
  .about-strength-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-image img,
  .about-story-image img {
    height: 420px;
  }

  .about-stats {
    margin-top: 0;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
  }

  .about-stat-card {
    border-bottom: 1px solid var(--lss-border);
  }

  .about-story {
    padding-top: var(--lss-section-padding-tablet);
  }

  .about-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .about-hero {
    margin-top: var(--lss-header-height-mobile);
    padding: 72px 0 58px;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-hero-content p {
    font-size: 15px;
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-image::before {
    display: none;
  }

  .about-hero-image img,
  .about-story-image img {
    height: 320px;
  }

  .about-hero-badge {
    left: 16px;
    bottom: 16px;
  }

  .about-stats-grid,
  .about-brand-grid,
  .about-customer-grid,
  .about-strength-cards {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    border-right: 0;
  }

  .about-story-content h2,
  .about-strength-content h2 {
    font-size: 34px;
  }

  .about-brand-card,
  .about-customer-card,
  .about-strength-card {
    padding: 26px;
  }

  .about-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-logo-card {
    height: 110px;
  }

  .about-cta {
    padding: 64px 0;
  }

  .about-cta-box {
    padding: 30px 22px;
    text-align: center;
  }

  .about-cta-box h2 {
    font-size: 36px;
  }

  .about-cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 31px;
  }

  .about-hero-image img,
  .about-story-image img {
    height: 280px;
  }

  .about-year-box {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .about-logo-grid {
    grid-template-columns: 1fr;
  }

  .about-story-content h2,
  .about-strength-content h2,
  .about-cta-box h2 {
    font-size: 31px;
  }
}