/* =========================================================
   OtosmartERP - About / Company Profile page styles
   Reuses tokens from style.css.
   ========================================================= */

.about-body {
  background: #fff;
}

/* HERO */
.about-hero {
  padding: 140px 0 70px;
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 102, 227, 0.12), transparent 35%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  color: var(--navy);
  letter-spacing: -0.04em;
}

.about-hero h1 span {
  color: var(--primary);
}

.about-hero .lead {
  color: #43546a;
  max-width: 620px;
}

/* HERO CARD STACK */
.hero-card-stack {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero-card-main {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  text-align: left;
  z-index: 2;
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card-row i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  color: var(--primary);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.hero-card-row small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.2;
}

.hero-card-row strong {
  color: var(--navy);
  font-size: 1rem;
  display: block;
  line-height: 1.3;
}

.hero-card-divider {
  height: 1px;
  background: #eef2f8;
  margin: 14px 0;
}

.hero-card-mini {
  position: absolute;
  bottom: -18px;
  right: -10px;
  background: linear-gradient(135deg, #0f63df, #1677ff);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(18, 102, 227, 0.32);
  z-index: 3;
}

.hero-card-mini i {
  margin-right: 4px;
}

/* VISI MISI */
.vm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.vm-icon.green {
  background: #eafaf3;
  color: #079455;
}

.vm-card h3 {
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.vm-card p,
.vm-card li {
  color: #43546a;
}

.vm-card ul {
  padding-left: 20px;
  margin: 0;
}

.vm-card li {
  margin-bottom: 8px;
}

/* STATS */
.stats-section {
  padding: 30px 0 60px;
}

.stat-card {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 18px;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-card strong small {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

/* VALUES */
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card h5 {
  font-weight: 800;
  color: var(--navy);
}

.value-card p {
  color: #526173;
  font-size: 0.94rem;
  margin-bottom: 0;
}

/* TIMELINE */
.timeline-section {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 30px;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 11px;
  width: 2px;
  background: linear-gradient(180deg, #d9eaff, #1677ff, #d9eaff);
  border-radius: 2px;
}

.t-item {
  position: relative;
}

.t-dot {
  position: absolute;
  left: -28px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(18, 102, 227, 0.15);
}

.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}

.t-year {
  display: inline-block;
  background: #eaf3ff;
  color: var(--primary);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.t-card h6 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 4px;
}

.t-card p {
  color: #43546a;
  margin: 0;
  font-size: 0.94rem;
}

/* WHY US */
.why-section {
  background: #fff;
}

.why-section h2 {
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.why-section p {
  color: #43546a;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.why-list li {
  margin-bottom: 12px;
  font-weight: 600;
  color: #2c3a4f;
}

.why-list i {
  color: var(--primary);
  margin-right: 8px;
}

.why-image {
  display: flex;
  justify-content: center;
}

.why-illust {
  position: relative;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 102, 227, 0.12), transparent 60%),
    linear-gradient(135deg, #edf6ff, #ffffff);
  border: 1px dashed #cfdcef;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.why-center {
  background: #fff;
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.why-center .brand-text strong {
  font-size: 1.4rem;
}

.why-bubble {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  animation: floatBubble 4s ease-in-out infinite;
}

.why-bubble.b1 { top: 0; left: 30%; animation-delay: 0s; }
.why-bubble.b2 { top: 30%; right: 0;  color: #7a3ff2; animation-delay: 0.6s; }
.why-bubble.b3 { bottom: 0; left: 30%; color: #079455; animation-delay: 1.2s; }
.why-bubble.b4 { top: 30%; left: 0;   color: #e26c0a; animation-delay: 1.8s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* CONTACT */
.contact-section {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-card h6 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-card p {
  color: #43546a;
  margin: 0;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .about-hero {
    padding-top: 120px;
  }

  .hero-card-stack {
    margin-top: 30px;
  }

  .why-illust {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .hero-card-mini {
    right: 10px;
  }

  .stat-card strong {
    font-size: 1.9rem;
  }

  .timeline {
    padding-left: 26px;
  }

  .why-illust {
    width: 240px;
    height: 240px;
  }
}

/* CLIENTS */
.client-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.client-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

.client-card h6 {
  color: var(--navy);
  font-weight: 800;
  margin: 0;
  font-size: 0.95rem;
}
