/* ============================================
   About2 Page CSS - Solar Surge
   Figma-accurate Our Story page
   ============================================ */

/* --- Gradient mixin --- */
:root {
  --about2-gradient: linear-gradient(90deg, #69eefd 0%, #efc052 54.33%, #f19231 100%);
  --about2-navy: rgba(13, 25, 46, 0.8);
  --about2-orange: #f19231;
}

/* ===== HERO ===== */
.about2-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 0 0 24px 24px;
}

.about2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about2-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0) 17%, rgba(37,74,95,0.4) 100%);
}

.about2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 64px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 10%;
  margin-right: auto;
  padding-top: 60px;
}

.about2-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about2-hero-content p {
  font-size: clamp(0.875rem, 1.2vw, 16px);
  line-height: 1.5;
  color: #fff;
  max-width: 640px;
}

/* ===== SECTION LABEL ===== */
.about2-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--about2-orange);
  margin-bottom: 0;
}

/* ===== CORE DIFFERENCE ===== */
.about2-core {
  padding: 80px 0 60px;
}

.about2-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: start;
}

.about2-core-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1;
  color: var(--about2-navy);
  margin-bottom: 20px;
}

.about2-core-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #0d192e;
  margin-bottom: 16px;
}

/* Video Card */
.about2-video-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  border: 3px solid var(--about2-orange);
  box-shadow: 4px 4px 50px rgba(0,0,0,0.15);
  background: #000;
  aspect-ratio: 653 / 420;
}

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

.about2-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about2-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.about2-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Stats Row */
.about2-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 40px;
}

.about2-stat-item {
  text-align: center;
  flex: 1;
}

.about2-stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4.5vw, 70px);
  line-height: 0.97;
  background: var(--about2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: capitalize;
}

.about2-stat-label {
  display: block;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 24px);
  text-transform: uppercase;
  color: #888;
  margin-top: 12px;
}

.about2-stats-line {
  width: 100%;
  height: 1px;
  background: #ddd;
}

/* ===== JOURNEY SECTION (Dark) ===== */
.about2-journey {
  position: relative;
  overflow: hidden;
}

.about2-journey-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about2-journey-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about2-journey-top {
  position: relative;
  z-index: 1;
  padding: 110px 0 80px;
}

.about2-journey-header {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto 60px;
}

.about2-journey-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1;
  color: #fff;
  margin-bottom: 11px;
}

.about2-journey-header p {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: rgba(255,255,255,0.7);
}

/* Icon Columns */
.about2-journey-icons {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

.about2-icon-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.about2-icon-img {
  width: 100px;
  height: 100px;
  margin-bottom: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about2-icon-img img {
  max-width: 100%;
  max-height: 100%;
}

.about2-icon-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 30px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.about2-icon-col p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  max-width: 289px;
}

.about2-icon-divider {
  width: 1px;
  height: 349px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
  align-self: center;
}

/* Results */
.about2-results {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.about2-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about2-results-image {
  border-radius: 24px;
  overflow: hidden;
}

.about2-video-card--dark {
  border-color: transparent;
  aspect-ratio: 4 / 3;
}

.about2-results-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1;
  color: #fff;
  margin-bottom: 32px;
}

.about2-results-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 16px;
}

.about2-results-content .about2-label {
  margin-bottom: 4px;
}

/* Proof Stats */
.about2-proof-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

.about2-proof-stat {
  text-align: center;
}

.about2-proof-stat .about2-stat-value {
  font-size: clamp(2rem, 4vw, 70px);
}

.about2-proof-stat .about2-stat-label {
  color: #fff;
  font-size: clamp(12px, 1.2vw, 24px);
}

.about2-proof-divider {
  width: 2px;
  height: 128px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ===== 3 PILLARS ===== */
.about2-pillars {
  background: #e9e9e9;
  padding: 100px 0;
}

.about2-pillars-header {
  text-align: center;
  margin-bottom: 40px;
}

.about2-pillars-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.04;
  color: #000;
}

.about2-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about2-pillar-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 4.4px rgba(0,0,0,0.06);
  border: 0.5px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  background: #fff;
}

.about2-pillar-img {
  height: 500px;
  overflow: hidden;
}

.about2-pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about2-pillar-body {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about2-pillar-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.8vw, 30px);
  background: var(--about2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about2-pillar-line {
  width: 115px;
  height: 2px;
  background: #ddd;
}

.about2-pillar-body p {
  font-size: 16px;
  color: #0d192e;
  line-height: 1.5;
  max-width: 364px;
}

/* ===== CTA ===== */
.about2-cta {
  padding: 100px 0;
  text-align: center;
}

.about2-cta-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.04;
  color: #000;
  max-width: 1320px;
  margin: 0 auto 16px;
}

.about2-cta-sub {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: #000;
  margin-bottom: 48px;
}

.about2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  height: 82px;
  padding: 0 60px;
  background: var(--about2-gradient);
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about2-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 146, 49, 0.4);
}

/* ===== FOOTER IMAGE ===== */
.about2-footer-img {
  width: 100%;
  height: 410px;
  overflow: hidden;
}

.about2-footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about2-hero-content {
    padding: 0 40px;
  }

  .about2-core-grid {
    gap: 40px;
  }

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

  .about2-pillar-img {
    height: 350px;
  }

  .about2-icon-divider {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .about2-hero {
    height: auto;
    min-height: 80vh;
    padding: 140px 0 80px;
  }

  .about2-hero-content {
    padding: 0 20px;
  }

  .about2-core-grid {
    grid-template-columns: 1fr;
  }

  .about2-video-card {
    aspect-ratio: 16 / 10;
  }

  .about2-stats {
    flex-direction: column;
    gap: 32px;
  }

  .about2-journey-icons {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .about2-icon-divider {
    width: 200px;
    height: 1px;
  }

  .about2-results-grid {
    grid-template-columns: 1fr;
  }

  .about2-video-card--dark {
    aspect-ratio: 16 / 9;
  }

  .about2-proof-stats {
    flex-direction: column;
    gap: 24px;
  }

  .about2-proof-divider {
    width: 128px;
    height: 2px;
  }

  .about2-pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about2-cta-btn {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    height: 64px;
    font-size: 18px;
    padding: 0 32px;
  }

  .about2-footer-img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .about2-hero-content h1 {
    font-size: 1.6rem;
  }

  .about2-hero-content p {
    font-size: 1rem;
  }

  .about2-label {
    font-size: 16px;
  }

  .about2-pillar-img {
    height: 280px;
  }
}
