/* =========================================================
   ETNO MEDIA SERVICES — ABOUT PAGE
   ========================================================= */

:root {
  --about-ink: #111827;
  --about-text: #667085;
  --about-line: #e7ebf1;
  --about-card: rgba(255,255,255,.95);

  --green: #109f88;
  --green-soft: #e9f8f4;
  --blue: #3978e9;
  --blue-soft: #edf4ff;
  --violet: #9f4be2;
  --violet-soft: #f5ebff;

  --shadow: 0 12px 34px rgba(18, 27, 45, .06);
}

* { box-sizing: border-box; }

body {
  background:
    radial-gradient(circle at 90% 15%, rgba(90,110,235,.045), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(23,173,145,.05), transparent 26%),
    #fbfcfe;
  color: var(--about-ink);
}

.about-page { overflow: hidden; }

.about-page .section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.section-kicker {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}

.about-hero {
  padding: 46px 0 22px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-hero__content h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.about-hero__content > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--about-text);
  font-size: 15px;
  line-height: 1.72;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 14px;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(18,27,45,.04);
  color: #4b5565;
  font-size: 11px;
  line-height: 1.25;
}

.about-badge strong {
  color: var(--about-ink);
  font-size: 12px;
}

.about-badge__icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  font-size: 15px;
}

.about-badge--green .about-badge__icon {
  color: var(--green);
  background: var(--green-soft);
}

.about-badge--violet .about-badge__icon {
  color: var(--violet);
  background: var(--violet-soft);
}

.about-hero__visual {
  min-height: 430px;
}

.mountain-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 17px;
  background:
    linear-gradient(to top, rgba(16,24,40,.68), rgba(16,24,40,.06) 62%),
    radial-gradient(circle at 65% 17%, rgba(255,218,179,.95), transparent 24%),
    linear-gradient(165deg, #a8bdd5 0 26%, #d9a67e 26% 42%, #52606b 42% 55%, #253c38 55% 100%);
  box-shadow: var(--shadow);
}

.mountain-card::before,
.mountain-card::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -8%;
  height: 62%;
  background: linear-gradient(145deg, transparent 0 28%, #263c37 29% 48%, #142c28 49% 100%);
  clip-path: polygon(0 100%, 30% 52%, 48% 74%, 67% 0, 100% 100%);
}

.mountain-card::after {
  bottom: 11%;
  height: 46%;
  opacity: .72;
  background: #3e4d49;
  clip-path: polygon(0 100%, 27% 55%, 40% 75%, 58% 15%, 71% 59%, 85% 35%, 100% 100%);
}

.mountain-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,.1), transparent 45%);
}

.mountain-label {
  position: absolute;
  z-index: 3;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.mountain-label strong,
.mountain-label small {
  display: block;
}

.mountain-label strong {
  font-size: 15px;
}

.mountain-label small {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
}

.mountain-label--top {
  top: 24px;
  right: 30%;
}

.mountain-label--left {
  left: 18%;
  top: 49%;
}

.mountain-label--right {
  right: 8%;
  top: 64%;
}

.flag {
  color: #ef593b;
  font-size: 24px;
}

.mountain-path .dot {
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 9px rgba(0,0,0,.25);
}

.dot--1 { left: 36%; bottom: 15%; background: #27b799; }
.dot--2 { left: 44%; bottom: 30%; background: #2aa4d6; }
.dot--3 { left: 51%; bottom: 44%; background: #e07a4e; }
.dot--4 { left: 61%; bottom: 30%; background: #4f78eb; }
.dot--5 { left: 46%; bottom: 53%; background: #27b799; }

.about-card,
.driver-card,
.ecosystem-card {
  border: 1px solid var(--about-line);
  border-radius: 15px;
  background: var(--about-card);
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}

.story-card,
.journey-card {
  padding: 24px;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title-row h2,
.journey-card > h2 {
  margin: 0;
  font-size: 21px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.card-icon--green {
  color: var(--green);
  background: var(--green-soft);
}

.story-card p,
.culture-card p {
  margin: 16px 0 0;
  color: var(--about-text);
  font-size: 13px;
  line-height: 1.7;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 29px;
  height: 1px;
  background: var(--about-line);
}

.journey-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.journey-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.journey-step strong,
.journey-step span {
  display: block;
}

.journey-step strong {
  font-size: 12px;
}

.journey-step span {
  margin-top: 5px;
  color: var(--about-text);
  font-size: 10px;
  line-height: 1.45;
}

.journey-step--green .journey-icon {
  color: var(--green);
  background: var(--green-soft);
}

.journey-step--blue .journey-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.journey-step--violet .journey-icon {
  color: var(--violet);
  background: var(--violet-soft);
}

.journey-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid #dfeeea;
  border-radius: 10px;
  background: #f4fbf9;
  color: var(--green);
}

.journey-note p {
  margin: 0;
  color: #50756e;
  font-size: 12px;
}

.section-heading {
  text-align: center;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 27px;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--about-text);
  font-size: 12px;
}

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.driver-card {
  padding: 22px;
}

.driver-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin-bottom: 13px;
  border-radius: 50%;
  font-size: 20px;
}

.driver-card h3 {
  margin: 0;
  font-size: 16px;
}

.driver-card p {
  margin: 9px 0 0;
  color: var(--about-text);
  font-size: 12px;
  line-height: 1.55;
}

.driver-card--green .driver-icon {
  color: var(--green);
  background: var(--green-soft);
}

.driver-card--blue .driver-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.driver-card--violet .driver-icon {
  color: var(--violet);
  background: var(--violet-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}

.culture-card {
  padding: 24px;
}

.culture-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.culture-list li {
  position: relative;
  padding-left: 22px;
  color: #4d586a;
  font-size: 12px;
}

.culture-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.world-card {
  padding: 20px 22px 15px;
  text-align: center;
}

.world-map {
  position: relative;
  min-height: 190px;
  opacity: .95;
  background:
    radial-gradient(ellipse at 27% 45%, #e8edf3 0 12%, transparent 13%),
    radial-gradient(ellipse at 48% 40%, #e8edf3 0 17%, transparent 18%),
    radial-gradient(ellipse at 68% 46%, #e8edf3 0 14%, transparent 15%),
    radial-gradient(ellipse at 84% 64%, #e8edf3 0 9%, transparent 10%);
}

.person {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #cdd7e4, #7f96ad);
  box-shadow: 0 7px 16px rgba(18,27,45,.13);
}

.person::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--green);
}

.person--1 { left: 14%; top: 35%; }
.person--2 { left: 41%; top: 25%; }
.person--3 { left: 68%; top: 31%; }
.person--4 { left: 27%; top: 67%; }
.person--5 { left: 79%; top: 66%; }

.world-card p {
  margin: 0;
  color: var(--about-text);
  font-size: 11px;
}

.ecosystem-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(252,249,255,.96), rgba(249,250,255,.96));
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.ecosystem-item {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px;
  border: 1px solid #e8eaf1;
  border-radius: 9px;
  background: #fff;
  color: #374151;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 5px 13px rgba(18,27,45,.04);
}

.about-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(213,220,234,.9);
  border-radius: 17px;
  background: linear-gradient(120deg, rgba(228,253,248,.95), rgba(242,248,255,.95) 52%, rgba(245,235,255,.96));
  box-shadow: var(--shadow);
}

.about-cta__content {
  align-self: center;
  padding: 40px 30px 40px 44px;
}

.about-cta__content h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -.035em;
}

.about-cta__content p {
  max-width: 500px;
  margin: 16px 0 23px;
  color: var(--about-text);
  font-size: 14px;
  line-height: 1.6;
}

.about-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #1aa88e, #0f8f79);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(18,153,128,.2);
}

.about-cta__visual {
  position: relative;
}

.about-code-card {
  position: absolute;
  left: 9%;
  bottom: 28px;
  width: 320px;
  height: 170px;
  padding: 30px 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, #26344d, #172235);
  box-shadow: 0 22px 35px rgba(20,27,44,.2);
}

.about-code-card span {
  display: block;
  width: 75%;
  height: 7px;
  margin-bottom: 12px;
  border-radius: 7px;
  background: linear-gradient(90deg, #2cb9a3, #7186ef);
}

.about-code-card span:nth-child(2) {
  width: 55%;
  margin-left: 14%;
  background: linear-gradient(90deg, #e68772, #6e83eb);
}

.about-code-card span:nth-child(3) {
  width: 82%;
  background: linear-gradient(90deg, #9a69db, #44bca4);
}

.about-code-card span:nth-child(4) {
  width: 49%;
  margin-left: 23%;
  background: linear-gradient(90deg, #ed9d5e, #798eea);
}

.about-code-card span:nth-child(5) {
  width: 68%;
  margin-left: 7%;
}

.experience-card {
  position: absolute;
  right: 8%;
  bottom: 62px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 11px;
  align-items: center;
  min-width: 155px;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 15px 30px rgba(20,27,44,.14);
}

.experience-check {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 26px;
  font-weight: 800;
}

.experience-card strong {
  display: block;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .drivers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-code-card {
    left: 0;
  }

  .experience-card {
    right: 2%;
  }
}

@media (max-width: 900px) {
  .about-hero__grid,
  .story-grid,
  .team-grid,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-hero__content {
    text-align: center;
  }

  .about-hero__content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-badges {
    justify-content: center;
  }

  .about-hero__visual {
    min-height: 360px;
  }

  .mountain-card {
    min-height: 360px;
  }

  .about-cta__content {
    text-align: center;
    padding-bottom: 5px;
  }

  .about-cta__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta__visual {
    min-height: 230px;
  }

  .about-code-card {
    left: 50%;
    transform: translateX(-56%);
  }

  .experience-card {
    right: 13%;
  }
}

@media (max-width: 680px) {
  .about-page .section {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .about-hero {
    padding-top: 34px;
  }

  .about-hero__content h1 {
    font-size: 39px;
  }

  .about-hero__content > p {
    font-size: 14px;
  }

  .about-hero__visual,
  .mountain-card {
    min-height: 300px;
  }

  .mountain-label--left {
    left: 8%;
  }

  .mountain-label--right {
    right: 4%;
  }

  .journey-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 25px;
  }

  .journey-line::before {
    display: none;
  }

  .drivers-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-map {
    min-height: 165px;
  }

  .about-cta__content {
    padding: 30px 20px 5px;
  }

  .about-cta__visual {
    min-height: 200px;
  }

  .about-code-card {
    width: 265px;
    height: 150px;
    left: 47%;
    transform: translateX(-60%);
  }

  .experience-card {
    right: 0;
    bottom: 45px;
    transform: scale(.82);
  }
}

@media (max-width: 420px) {
  .about-hero__content h1 {
    font-size: 34px;
  }

  .about-badge {
    flex: 1 1 30%;
    justify-content: center;
    padding-left: 8px;
    padding-right: 8px;
  }

  .about-hero__visual,
  .mountain-card {
    min-height: 260px;
  }

  .mountain-label {
    transform: scale(.86);
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .about-code-card {
    left: 44%;
    transform: translateX(-65%) scale(.9);
  }

  .experience-card {
    right: -5%;
    transform: scale(.72);
  }
}
