/* ============================================================
   Packagly — about.css  (split from style.css)
   Depends on: common.css (variables, reset, icon helpers)
   Responsive @media rules live in responsive.css
   ============================================================ */

/* ============================================================
   ABOUT PACKAGLY (dark panel + features + mission/vision + stats)
============================================================ */
.about-section {
  background: #f1f3f1;
  padding: 30px 0;
}
.about-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  color: var(--white);
  background: radial-gradient(
    120% 90% at 78% -10%,
    #19371f 0%,
    #0c2113 45%,
    #081a0f 100%
  );
  border: 1px solid rgba(155, 211, 74, 0.12);
}
/* faint dotted texture between the intro text and the image */
.about-dots {
  position: absolute;
  top: 60px;
  left: 38%;
  width: 220px;
  height: 320px;
  background-image: radial-gradient(
    rgba(155, 211, 74, 0.35) 1.4px,
    transparent 1.6px
  );
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(115deg, #000 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.about-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 0.66fr;
  gap: 35px;
  align-items: stretch;
}

/* ---- left: intro ---- */
.about-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.about-overline .accent {
  color: var(--green);
}
.about-overline .dash {
  width: 26px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.about-title {
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.about-title .accent {
  color: var(--green);
}
.about-lead {
  font-size: 12px;
  line-height: 1.7;
  color: var(--white-70);
  margin: 0 0 28px;
  max-width: 540px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
}
.af-item {
  display: flex;
  gap: 14px;
}
.af-ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(155, 211, 74, 0.35);
  background: rgba(112, 174, 19, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.af-ico .icon {
  width: 22px;
  height: 22px;
}
.af-text h4 {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--white);
}
.af-text p {
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
  color: var(--white-70);
}

/* ---- center: media + badge ---- */
.about-media {
  position: relative;
}
.about-image {
  position: relative;
  height: 100%;
  min-height: 440px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f2616;
  border: 1px solid rgba(155, 211, 74, 0.14);
}
.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-image-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-image-ph .icon {
  width: 40px;
  height: 40px;
  opacity: 0.7;
}
.about-image-ph em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(155, 211, 74, 0.7);
}
.about-badge {
  position: absolute;
  left: -42px;
  bottom: 48px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, #0c2113 60%, #0a1c11 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.about-badge svg {
  width: 100%;
  height: 100%;
}
.about-badge-text {
  fill: #9bd34a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ---- right: mission / vision ---- */
.about-mv {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(155, 211, 74, 0.18);
  background: rgba(255, 255, 255, 0.02);
  padding: 30px 26px;
}
.mv-block h3,
.mv-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green);
}
.mv-block p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--white-70);
}
.mv-divider {
  display: block;
  height: 1px;
  background: rgba(155, 211, 74, 0.18);
  margin: 26px 0;
}
.mv-btn {
  margin-top: 28px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #06160d;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 10px;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.mv-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #06160d;
}
.mv-btn .icon {
  width: 16px;
  height: 16px;
}

/* ---- bottom: stats strip ---- */
.about-stats {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  border-radius: 18px;
  border: 1px solid rgba(155, 211, 74, 0.18);
  background: rgba(255, 255, 255, 0.02);
  padding: 26px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.as-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 18px;
  border-right: 1px solid rgba(155, 211, 74, 0.18);
}
.as-item:last-child {
  border-right: none;
}
.as-ico .icon {
  width: 40px;
  height: 40px;
}
.as-text strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.as-text span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--white-70);
  line-height: 1.3;
}

/* ---- responsive ---- */
