/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE (BIOFARMA PREMIUM AESTHETIC)
══════════════════════════════════════════════════════════════ */
body { background: #ffffff; }

/* ── 1. HERO ── */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(8,16,36,0.9) 0%, rgba(8,16,36,0.3) 100%);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-top: 60px;
}
.about-hero-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 16px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border-radius: 100px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.3); color: #fff;
}
.about-hero-title {
  font-family: 'DM Sans', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; max-width: 700px;
}
.about-hero-desc {
  font-size: 1.25rem; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 800px;
}

/* ── 2. OUR STORY ── */
.about-story { padding: 90px 0; background: #ffffff; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.story-text h2 { font-family: 'DM Sans', sans-serif; font-size: 2.8rem; font-weight: 800; color: #0b192c; margin-bottom: 32px; letter-spacing: -0.02em; }
.story-text p { font-size: 1.15rem; color: #5a6278; line-height: 1.7; margin-bottom: 24px; }
.story-image-wrap { position: relative; }
.story-image { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.story-accent { position: absolute; bottom: -30px; left: -30px; background: #1a56f0; color: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 20px 40px rgba(26,86,240,0.2); max-width: 250px; }
.story-accent h4 { font-family: 'DM Sans', sans-serif; font-size: 1.5rem; margin-bottom: 8px; }
.story-accent p { font-size: 0.9rem; opacity: 0.9; }

/* ── 3. SERPENTINE PATHWAY (Science to Market Philosophy - Compact S-Curve Flow) ── */
.about-timeline-section { padding: 60px 0; background: #f8fafc; }
.timeline-header { text-align: center; max-width: 840px; margin: 0 auto 50px; padding: 0 20px; }
.timeline-header h2 { font-family: 'DM Sans', sans-serif; font-size: 2.6rem; font-weight: 800; color: #0b192c; margin-bottom: 16px; letter-spacing: -0.02em; }
.timeline-header p { font-size: 1.1rem; color: #5a6278; line-height: 1.6; }

/* Compact 2-Row Serpentine Pathway (Like Intestine Spiral Flow) */
.philosophy-pathway-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.pathway-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.pathway-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pathway-card:hover {
  border-color: #1a56f0;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(26, 86, 240, 0.12);
}

.pathway-step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a56f0;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}

.pathway-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b192c;
  margin: 0;
  line-height: 1.35;
}

/* Connecting Arrow Badges */
.pathway-arrow-right {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00d4aa;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

.pathway-arrow-left {
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00d4aa;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

.pathway-turn-down {
  position: absolute;
  right: 20px;
  bottom: -26px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00d4aa;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

.pathway-turn-down-left {
  position: absolute;
  left: 20px;
  bottom: -26px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00d4aa;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

/* Final Step Highlight */
.pathway-card.highlight-final {
  background: linear-gradient(135deg, #0b192c 0%, #1a56f0 100%);
  border-color: #1a56f0;
}

.pathway-card.highlight-final h4 {
  color: #ffffff;
}

.pathway-card.highlight-final .pathway-step-num {
  color: #00d4aa;
}

/* ── 4. BENTO (Purpose, Vision, Mission) ── */
.about-bento { padding: 70px 0; background: #ffffff; }
.bento-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.bento-card { background: #f8fafc; padding: 46px; border-radius: 24px; border: 1px solid #e2e8f0; }
.bento-card.full-width { grid-column: 1 / -1; }
.bento-card h3 { font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800; color: #0b192c; margin-bottom: 20px; }
.bento-card p { font-size: 1.15rem; color: #5a6278; line-height: 1.7; }
.mission-list { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 1.05rem; color: #5a6278; line-height: 1.6; }
.mission-list li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; min-width: 24px; background: #1a56f0; color: #fff; font-size: 12px; font-weight: bold; border-radius: 50%; margin-top: 4px; }

/* ── 4B. WHAT WE DO (Crisp Solid White Cards — NO Transparency) ── */
.what-we-do-section {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.what-we-do-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.what-we-do-card:hover {
  border-color: #1a56f0;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 86, 240, 0.1);
}

.what-we-do-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b192c;
  margin-bottom: 12px;
}

.what-we-do-card p {
  font-size: 1.05rem;
  color: #5a6278;
  line-height: 1.65;
  margin: 0;
}

/* ── 5. STRENGTHS ── */
.about-strengths { padding: 70px 0; background: #f8fafc; color: #0b192c; }
.strengths-header { text-align: center; max-width: 800px; margin: 0 auto 60px; padding: 0 40px; }
.strengths-header h2 { font-family: 'DM Sans', sans-serif; font-size: 3rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; color: #0b192c; }
.strengths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.strength-card { background: linear-gradient(135deg, #1a56f0 0%, #00d4aa 100%); padding: 36px; border-radius: 20px; box-shadow: 0 10px 30px rgba(26, 86, 240, 0.15); color: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.strength-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3); }
.strength-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; color: #fff; }
.strength-card p { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .timeline-wrapper::before { left: 0; }
  .timeline-dot { left: 0; }
  .timeline-content { width: calc(100% - 40px); margin-left: 40px; }
  .timeline-item:nth-child(even) { flex-direction: row; }
  .bento-container { grid-template-columns: 1fr; }
  .mission-list { grid-template-columns: 1fr; }
}
