/* ===== ABOUT HERO ===== */
.about-hero {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.about-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* orange corner decorations */
.about-corner-tr {
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: linear-gradient(225deg, var(--orange) 0%, var(--orange) 40%, transparent 41%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.about-corner-bl {
  position: absolute;
  bottom: 0; left: 0;
  width: 80px; height: 80px;
  background: linear-gradient(45deg, var(--orange) 0%, var(--orange) 40%, transparent 41%);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

/* ===== VISION & MISSION ===== */
.vm-section {
  background: var(--bg);
  padding: 0 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.vm-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}
.vm-icon-wrap {
  flex-shrink: 0;
  width: 55px; height: 55px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,146,51,0.05);
}
.vm-content { flex: 1; }
.vm-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.vm-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange);
  letter-spacing: 2px;
  white-space: nowrap;
}
.vm-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  position: relative;
}
.vm-glow {
  position: absolute;
  left: 20px;
  top: -3px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
}
.vm-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
  text-align: justify;
}
.vm-dotted-divider {
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgba(255,146,51,0.3);
}

/* ===== TINC SECTION ===== */
.tinc-section {
  background: var(--bg);
  padding: 20px 40px 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.tinc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.tinc-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--white);
  white-space: nowrap;
}
.tinc-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.tinc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,146,51,0.2);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tinc-grid {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(255,146,51,0.2);
    gap: 0;
  }
  .tinc-item {
    border-right: 1px solid rgba(255,146,51,0.2) !important;
    border-bottom: 1px solid rgba(255,146,51,0.2) !important;
  }
  .tinc-item:nth-child(2n) {
    border-right: none !important;
  }
  .tinc-item:nth-child(3),
  .tinc-item:nth-child(4) {
    border-bottom: none !important;
  }
}
  .about-corner-tr {
    width: 60px;
    height: 60px;
  }
  .about-corner-bl {
    width: 40px;
    height: 40px;
  }
  .about-intro-title {
    font-size: 18px;
  }

.tinc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(255,146,51,0.2);
  gap: 08px;
}
.tinc-item:last-child { border-right: none; }
.tinc-icon {
  width: 70px; height: 70px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,146,51,0.05);
}
.tinc-divider-v {
  width: 1px;
  height: 20px;
  background: rgba(255,146,51,0.4);
}
.tinc-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white);
}
.tinc-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

/* ===== CAR BOTTOM ===== */
.about-car-section {
  background: var(--bg);
  height: 60px;
  position: relative;
}
.about-corner-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media (max-width: 768px) {
  .about-corner-tr {
    width: 70px;
    height: 70px;
    z-index: 0;
  }
  .about-logo {
    position: relative;
    z-index: 2;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .vm-section { padding: 0 20px; }
  .tinc-grid { grid-template-columns: repeat(2, 1fr); }
  .tinc-item:nth-child(2) { border-right: none; }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .vm-section { padding: 0 16px; }
  .vm-row { flex-direction: column; align-items: center; }
  .vm-title-row { flex-wrap: wrap; }

  .tinc-section { padding: 20px 16px; }
  .tinc-grid { grid-template-columns: repeat(2, 1fr); }
  .tinc-item:nth-child(2) { border-right: none; }
  .tinc-item:nth-child(odd) { border-right: 1px solid rgba(255,146,51,0.2); }
  .tinc-item:nth-child(4) { border-right: none; }

  .about-intro-grid {
    border: 1px solid rgba(255,146,51,0.2);
    gap: 0;
  }
  .about-intro-stat {
    border-right: 1px solid rgba(255,146,51,0.2) !important;
    border-bottom: 1px solid rgba(255,146,51,0.2) !important;
  }
  .about-intro-stat:nth-child(2n) {
    border-right: none !important;
  }
  .about-intro-stat:nth-child(3),
  .about-intro-stat:nth-child(4) {
    border-bottom: none !important;
  }
}
/* ===== ABOUT INTRO SECTION ===== */
.about-intro-section {
  background: var(--bg);
  padding: 30px 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* stats row */
.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,146,51,0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}
.about-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255,146,51,0.2);
  text-align: center;
  background: rgba(255,146,51,0.03);
}
.about-intro-stat:last-child { border-right: none; }
.about-stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,146,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,146,51,0.08);
  margin-bottom: 10px;
}
.about-stat-label {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.5px;
  text-align: center;
}

/* content grid */
.about-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-intro-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: 1px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.about-intro-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 10px;
}
.about-intro-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin: 14px 0;
}

/* right cards */
.about-intro-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-intro-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255,146,51,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}
.about-intro-card:hover { background: rgba(255,146,51,0.05); }
.accent-intro-card {
  background: var(--orange);
  border-color: var(--orange);
}
.accent-intro-card:hover { background: #E37B1B; }
.about-intro-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,146,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,146,51,0.08);
}
.about-intro-card-icon.dark {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.1);
}
.about-intro-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
}
.about-intro-card-text.dark { color: rgba(10,9,8,0.8); }
.accent-intro-card .about-intro-card-text { color: rgba(10,9,8,0.85); }

/* ===== ABOUT FULL IMAGE ===== */
.about-fullimg {
  width: 100%;
  background: #0a0908;
  line-height: 0;
  border-left: 70px solid #0a0908;
  border-right: 70px solid #0a0908;
  box-sizing: border-box;
}
.about-fullimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* responsive */
@media (max-width: 768px) {
  .about-intro-section { padding: 20px 16px; }
  .about-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-stat:nth-child(2) { border-right: none; }
  .about-intro-content { grid-template-columns: 1fr; gap: 20px; }
}