/* === HERO ABOUT === */
.hero-about {
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 99, 235, 0.1), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(124, 58, 237, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.hero-about .hero-actions {
  margin-bottom: 28px;
}

.hero-about h1 {
  max-width: 680px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.03;
  letter-spacing: -3.2px;
  font-weight: 850;
  margin-bottom: 24px;
}

.hero-about p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-about p strong {
  color: var(--text);
  font-weight: 750;
}

/* === COMPANY CARD === */
.company-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.company-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.company-card::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
}

.company-main {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #172554 56%, #1e1b4b 100%);
  color: #fff;
  padding: 28px;
  overflow: hidden;
  margin-bottom: 16px;
}

.company-main::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(191, 219, 254, 0.18);
}

.company-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #bfdbfe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 22px;
}

.company-main span {
  position: relative;
  z-index: 2;
  display: block;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 8px;
}

.company-main h2 {
  position: relative;
  z-index: 2;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.company-main p {
  position: relative;
  z-index: 2;
  color: #cbd5e1;
  font-size: 14px;
  margin: 0;
}

.company-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.company-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.company-stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 6px;
}

.company-stat strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.8px;
}

/* === INTRO PANEL === */
.intro-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.intro-panel p {
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 18px;
}

.intro-panel p:last-child {
  margin-bottom: 0;
}

.intro-panel strong {
  color: var(--text);
  font-weight: 850;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: 0.18s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  border-color: var(--line-dark);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.product-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 18px;
}

.product-card:nth-child(1) .product-icon {
  background: var(--primary-soft);
  color: var(--primary);
}

.product-card:nth-child(2) .product-icon {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.product-card:nth-child(3) .product-icon {
  background: var(--purple-soft);
  color: var(--purple);
}

.product-card h3 {
  position: relative;
  z-index: 2;
  font-size: 21px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.product-card .domain {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 14.5px;
}

/* === VALUE GRID === */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: 0.18s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
}

/* === MISSION & VISION === */
.mission-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.mission-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.mission-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.mission-card p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 22px;
}

.mission-list {
  display: grid;
  gap: 12px;
}

.mission-list li {
  display: flex;
  gap: 10px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
}

.mission-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.vision-card {
  background: #0f172a;
  color: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.vision-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.24);
}

.vision-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 18px;
}

.vision-card h3 {
  position: relative;
  z-index: 2;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.vision-card p {
  position: relative;
  z-index: 2;
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 24px;
}

.vision-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.vision-metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-metric span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 6px;
}

.vision-metric strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}

/* === ABOUT-SPECIFIC RESPONSIVE === */
@media (max-width: 1060px) {
  .about-hero-grid,
  .mission-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-about {
    padding: 56px 0 48px;
  }

  .hero-about h1 {
    letter-spacing: -1.5px;
  }

  .hero-about p {
    font-size: 16px;
  }

  .company-stats,
  .product-grid,
  .value-grid,
  .vision-metrics {
    grid-template-columns: 1fr;
  }

  .intro-panel,
  .mission-card,
  .vision-card {
    padding: 24px;
  }
}
