:root {
  --yellow: #FFC21A;
  --orange: #F28A2B;
  --coral: #F0625E;
  --pink: #E43E75;
  --magenta: #B12A7E;
  --text: #111;
  --muted: #5f5f5f;
  --radius: 18px
}

* {
  box-sizing: border-box
}

img {
  max-width: 100%;
  display: block
}

.gradient {
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--coral), var(--pink), var(--magenta))
}

.about-page .hero {
  padding: 25px;
  border-radius: 18px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center
}

.about-page .card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 41px 31px;
}

.badge {
  display: inline-flex;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .75);
  font-weight: 700
}

.title {
  font-size: 44px;
  line-height: 1.1;
  margin: 12px 0 10px
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px
}

.k {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06)
}

.k .v {
  font-size: 28px;
  font-weight: 500
}

.k .l {
  color: #777;
  font-size: 13px
}

.section {
  margin: 56px 0;
}

.section h2 {
  font-size: 32px;
  margin: 0 0 14px;
  font-weight: 500;
}

.sub {
  color: var(--muted)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.card2 {
  height: 140px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.value {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.feature {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04)
}

.feature h3 {
  margin: 0 0 6px;
  font-weight: 500;
}

.feature p {
  color: #666;
  margin: 0
}

.about-section ul {
  padding-left: 20px !important;
  margin: 10px 0 0 0 !important;
  list-style-type: disc !important;
}

.about-section ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.5;
}

.about-page .cta {
  border-radius: 22px;
  padding: 50px 28px;
  color: #fff;
  margin-bottom: 0;
}

.about-page .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 2px solid #fff;
  font-weight: 700
}

.about-page .btn.primary {
  background: #fff;
  color: #000;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4px 12px;
  gap: 0;
}

.about-page .btn.secondary {
  background: transparent;
  color: #fff;
  align-items: center;
}

.section .section-work {
  margin-bottom: 5px;
}

.akar-text {
  text-transform: uppercase;
  font-weight: 500;
}

.about-page .badge {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.about-page .title {
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--coral), var(--pink), var(--magenta));
  font-weight: 500;
}

.about-section .features {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}

.about-section .feature {
  margin-bottom: 20px;
}

.about-img img {
  border-radius: 18px;
}

.about-whatsapp-text {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  line-height: normal;
}

.feature-top {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
  gap: 15px;
}

.feature-bottom {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

/* ── Laptop ── */
@media(max-width:991px) {
  .left-text {
    width: 50%;
  }
  
  .about-page .cta {
    padding: 35px 15px;
  }
  
  .section h2 {
    font-size: 28px;
  }

  .about-img img {
    width: 100%;
  }

  .wrap {
    gap: 24px;
  }
}

/* ── Tablet ── */
@media(max-width:980px) {
  .wrap {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .values {
    grid-template-columns: repeat(2, 1fr)
  }

  .strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .features {
    grid-template-columns: 1fr 1fr
  }
}

/* ── Mobile ── */
@media(max-width:767px) {

  .feature-top,
  .feature-bottom {
    flex-wrap: wrap;
  }
  
  .section {
    margin: 30px 0;
  }

  .feature-top .feature,
  .feature-bottom .feature {
    width: 100%;
  }

  .section h2 {
    font-size: 25px;
  }

  .about-img img {
    width: 100%;
  }

  .section {
    margin: 30px auto;
    padding: 0;
  }

  .about-page .card {
    padding: 15px;
  }

  .about-page .hero {
    padding: 15px;
    border-radius: 12px;
  }

  .hero p {
    font-size: 16px;
  }

  .title {
    font-size: 32px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .left-text {
    width: 100%;
    text-align: center;
  }

  .about-page .cta {
    padding: 20px;
    border-radius: 16px;
  }

  .about-page .cta h2 {
    font-size: 22px;
  }

  .actions {
    justify-content: center;
    width: 100%;
  }
}

/* ── Small Mobile ── */
@media(max-width:480px) {
  .kpis {
    grid-template-columns: repeat(2, 1fr)
  }

  .strip {
    grid-template-columns: 1fr
  }

  .title {
    font-size: 26px
  }

  .k .v {
    font-size: 22px;
  }

  .section h2 {
    font-size: 22px;
  }

  .about-page .hero {
    padding: 10px;
    border-radius: 10px;
  }

  .about-page .card {
    padding: 12px;
  }

  .hero p {
    font-size: 14px;
  }

  .feature {
    padding: 14px;
  }

  .step {
    padding: 14px;
  }

  .value {
    padding: 14px;
  }
}

/* How We Work Section Spacing */
.section-work {
  margin-bottom: 5px !important;
}

.about-page .small-text {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
  font-style: italic;
}

.about-page p.sub {
  color: var(--muted);
  line-height: 1.6;
}
