/* ===== ABOUT PAGE STYLES ===== */

/* ---------- HERO ---------- */
.about-hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #FAFBFC 0%, #F4F6FA 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--gray-2);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.brand-watermark {
  position: absolute;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--blue);
  opacity: 0.05;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.brand-watermark.itc { top: 8%;   left: -3%;  font-size: 200px; transform: rotate(-8deg); }
.brand-watermark.tp  { top: 62%;  left: 4%;   font-size: 150px; transform: rotate(4deg);  font-style: italic; }
.brand-watermark.spk { top: 4%;   right: 2%;  font-size: 220px; transform: rotate(6deg); }
.brand-watermark.mc  { top: 58%;  right: 8%;  font-size: 170px; transform: rotate(-5deg); }
.brand-watermark.hl  { top: 38%;  left: 40%;  font-size: 140px; transform: rotate(2deg); opacity: 0.035; }

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero-title {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -4px;
  margin: 0 0 20px;
  line-height: 1;
  color: var(--black);
}
.about-hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- SECTIONS COMMON ---------- */
.about-section {
  padding: 80px 0;
}
.about-section + .about-section {
  border-top: 1px solid var(--gray-2);
}
.about-section .section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 32px;
  color: var(--black);
}

/* ---------- MISSION ---------- */
.mission-text {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  color: #2d3748;
}
.mission-text p {
  margin: 0 0 16px;
}
.mission-text p:last-child {
  margin-bottom: 0;
}

/* ---------- STATS ---------- */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.about-stat {
  text-align: left;
  border-left: 3px solid var(--blue);
  padding-left: 20px;
}
.about-stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

/* ---------- VALUES ---------- */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-value {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.about-value:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.about-value-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.about-value-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.about-value-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ---------- TIMELINE ---------- */
.about-timeline {
  max-width: 720px;
  position: relative;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--gray-2);
}
.about-tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-bottom: 32px;
  position: relative;
}
.about-tl-item::before {
  content: '';
  position: absolute;
  left: 76px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--gray-2);
  z-index: 1;
}
.about-tl-item:last-child {
  padding-bottom: 0;
}
.about-tl-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  padding-top: 2px;
}
.about-tl-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.about-tl-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* ---------- CTA ---------- */
.about-cta-section {
  background: var(--blue);
  color: #fff;
  text-align: center;
  border-top: none !important;
}
.about-cta-section .container {
  max-width: 680px;
}
.about-cta-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -1px;
}
.about-cta-text {
  font-size: 17px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.about-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta-section .btn-primary {
  background: #fff;
  color: var(--blue);
  border: 1px solid #fff;
}
.about-cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.92);
}
.about-cta-section .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.about-cta-section .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ---------- FOOTER MINI ---------- */
.footer-mini {
  padding: 28px 0;
  background: var(--black);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.footer-mini-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-mini a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.footer-mini a:hover {
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-watermark { font-size: 140px !important; }
}

@media (max-width: 760px) {
  .about-hero { padding: 72px 0 56px; }
  .about-hero-title { font-size: 44px; letter-spacing: -2px; }
  .about-hero-subtitle { font-size: 16px; }
  .about-section { padding: 56px 0; }
  .about-section .section-title { font-size: 26px; margin-bottom: 24px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-stat-value { font-size: 34px; }
  .about-stat { padding-left: 14px; }
  .about-values-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-timeline::before { left: 56px; }
  .about-tl-item { grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 24px; }
  .about-tl-item::before { left: 52px; }
  .about-cta-title { font-size: 26px; }
  .about-cta-buttons { flex-direction: column; }
  .about-cta-section .btn { width: 100%; }
  .brand-watermark { font-size: 80px !important; opacity: 0.06; }
  .brand-watermark.itc { top: 4%; left: -10%; }
  .brand-watermark.spk { top: 2%; right: -8%; }
  .brand-watermark.tp { top: 50%; left: -15%; }
  .brand-watermark.mc { display: none; }
  .brand-watermark.hl { display: none; }
  .footer-mini-inner { flex-direction: column; text-align: center; gap: 8px; }
}
