


/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.hero {
  padding: 60px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-left p {
  color: #777;
}

/* BUTTON */
.btn {
  background: #ff6a00;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* USERS */
.users {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
}

.users img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid #fff;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  position: relative;
  min-height: 400px;
}

/* CIRCLES */
.circle {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.circle h3 {
  margin: 0;
}

.circle p {
  font-size: 12px;
  color: #777;
}

/* SIZES */
.small { width: 90px; height: 90px; }
.medium { width: 120px; height: 120px; }
.big { width: 160px; height: 160px; }

/* POSITIONS */
.c1 { top: 40%; left: 0; }
.c2 { top: 0; left: 30%; }
.c3 { top: 25%; right: 0; }
.c4 { bottom: 0; right: 20%; }
.center { top: 35%; left: 35%; }

/* STEPS */
.steps {
  padding: 60px 0;
}

.steps .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.steps-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

.steps-content {
  flex: 1;
}

.step {
  margin-top: 15px;
}

/* ABOUT PAGE: HOW IT WORKS UPGRADE */
.steps-journey .steps-content h2 {
  margin-bottom: 18px;
}

.steps-journey .step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 52px 16px 16px;
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #e4efea;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(4, 84, 73, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.steps-journey .step:hover {
  transform: translateY(-4px);
  border-color: #b9ddd1;
  box-shadow: 0 14px 28px rgba(4, 84, 73, 0.14);
}

.steps-journey .step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 34px;
  top: calc(100% + 4px);
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, #9fd5c3, transparent);
}

.steps-journey .step-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(160deg, #def3ea, #c9eadd);
  color: #0d6b5c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.steps-journey .step-text h4 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
  color: #143a34;
}

.steps-journey .step-text p {
  margin: 0;
  color: #607579;
  font-size: 14px;
  line-height: 1.5;
}

.steps-journey .step-no {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #0d6b5c;
  background: #eef8f4;
  border: 1px solid #cfe8de;
  border-radius: 999px;
  padding: 4px 9px;
  letter-spacing: 0.5px;
}

/* CTA */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(90deg, #c7f3d4, #f4e6c1);
}

.cta-left {
  max-width: 600px;
}

.cta-left h2 {
  font-size: 32px;
}
.steps .container {
  display: flex;
  justify-content: space-between;
    align-items: center;
}

.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    width: 100%;
    height: 350px;
  }

  .circle {
    transform: scale(0.9);
  }

  .steps .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 600px) {

  .hero-left h1 {
    font-size: 28px;
  }

  .cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .users {
    margin-left: 0;
  }

  /* STACK CIRCLES CLEANLY */
  .hero-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: static;
    height: auto;
  }

  .circle {
    position: static;
    width: 100%;
    height: 100px;
  }

  .big {
    grid-column: span 2;
    height: 120px;
  }

  /* STEPS */
  .steps-img img {
    max-width: 100%;
  }

  .steps-journey .step {
    padding: 14px 44px 14px 14px;
    gap: 10px;
  }

  .steps-journey .step-text h4 {
    font-size: 16px;
  }

  .steps-journey .step-text p {
    font-size: 13px;
  }

  .cta-left h2 {
    font-size: 24px;
  }
}
