/* ============================================================
   AquaWave — About Page
   ============================================================ */

/* ======================== ABOUT HERO ======================== */
.about-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  padding: calc(80px + var(--space-4xl)) var(--space-xl) var(--space-3xl);
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
}

.about-hero__title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.about-hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
}


/* ======================== STORY SECTION ======================== */
.story-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.story-text h2 {
  margin-bottom: var(--space-lg);
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.story-text .text-highlight {
  color: var(--royal-blue);
  font-weight: 500;
}

.story-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-visual__image {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.story-visual__badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--gradient-brand);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  font-family: 'Outfit', sans-serif;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.story-visual__badge .number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.story-visual__badge .label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.05em;
}


/* ======================== MISSION & VISION ======================== */
.mv-section {
  padding: var(--space-5xl) 0;
  background: var(--ice-blue-light);
  position: relative;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.mv-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mv-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(26, 58, 143, 0.1));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  color: var(--royal-blue);
}

.mv-card h3 {
  margin-bottom: var(--space-md);
  color: var(--royal-blue);
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.8;
}


/* ======================== FOUNDERS / VISIONARIES ======================== */
.founders-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.founders-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.founders-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 58, 143, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Founder Card ── */
.founder-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-bottom: var(--space-5xl);
  position: relative;
}

.founder-card:last-child {
  margin-bottom: 0;
}

.founder-card--reversed {
  grid-template-columns: 1fr 380px;
}

.founder-card--reversed .founder-card__image-wrap {
  order: 2;
}

.founder-card--reversed .founder-card__info {
  order: 1;
}

/* ── Image ── */
.founder-card__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-card__image {
  width: 340px;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 40px rgba(0, 180, 216, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s ease;
  position: relative;
  z-index: 2;
}

.founder-card__image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 0 60px rgba(0, 180, 216, 0.15);
}

.founder-card__image-glow {
  position: absolute;
  width: 360px;
  height: 460px;
  border-radius: 32px;
  background: linear-gradient(145deg,
    rgba(0, 180, 216, 0.12) 0%,
    rgba(26, 58, 143, 0.10) 100%);
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

/* ── Info ── */
.founder-card__role-badge {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.10), rgba(26, 58, 143, 0.08));
  color: var(--royal-blue);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.founder-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.founder-card__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--royal-blue);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  position: relative;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--prism-teal);
}

.founder-card__story {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.founder-card__story strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Stat Badges ── */
.founder-card__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.founder-stat {
  flex: 0 0 auto;
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.founder-stat:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.06), rgba(26, 58, 143, 0.04));
  border-color: rgba(0, 180, 216, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.founder-stat__number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.founder-stat__label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}



/* ======================== VALUES ======================== */
.values-section {
  padding: var(--space-5xl) 0;
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 180, 216, 0.2);
  transform: translateY(-6px);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(26, 58, 143, 0.12));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 180, 216, 0.15);
  transition: all var(--transition-base);
}

.value-card:hover .value-card__icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-blue);
}

.value-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}


/* ======================== PROCESS TIMELINE ======================== */
.process-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
  position: relative;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: var(--space-2xl) 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--prism-teal), var(--royal-blue), var(--prism-teal));
  border-radius: var(--radius-full);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: var(--radius-circle);
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.25);
  position: relative;
}

.process-step__number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-circle);
  border: 2px solid rgba(0, 180, 216, 0.2);
}

.process-step__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.process-step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.process-step__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 120px;
}


/* ======================== STATS SECTION ======================== */
.stats-section {
  padding: var(--space-4xl) 0;
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  text-align: center;
}

.stat-item {
  padding: var(--space-lg);
}

.stat-item__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-item__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}


/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .founder-card,
  .founder-card--reversed {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .founder-card--reversed .founder-card__image-wrap {
    order: unset;
  }

  .founder-card--reversed .founder-card__info {
    order: unset;
  }

  .founder-card__image {
    width: 280px;
    height: 360px;
  }

  .founder-card__image-glow {
    width: 300px;
    height: 380px;
  }

  .founder-card__tagline {
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid var(--prism-teal);
    padding-bottom: var(--space-sm);
  }

  .founder-card__stats {
    justify-content: center;
  }

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

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

  .process-timeline {
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(33.333% - var(--space-xl));
  }
}

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

  .story-visual {
    order: -1;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .founder-card__image {
    width: 220px;
    height: 300px;
    border-radius: 22px;
  }

  .founder-card__image-glow {
    width: 240px;
    height: 320px;
    border-radius: 26px;
  }

  .founder-card__name {
    font-size: 1.8rem;
  }

  .founder-card__story {
    font-size: 0.95rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    flex: 0 0 calc(50% - var(--space-xl));
  }
}
