/* ================= WORK HERO ================= */

.work-hero {
  min-height: 100vh;
  padding: 140px 0 120px;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-hero-inner {
  max-width: 820px;
  padding: 0 24px;
  text-align: center;
}

/* TAG */
.work-tag {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #5B6CFF;
  margin-bottom: 18px;

  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* TITLE */
.work-title {
  font-size: 56px;
  line-height: 1.4;
  color: #0f172a;
  margin-bottom: 22px;

  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.15s;
}

.work-title span {
  color: #5B6CFF;
}

/* SUBTITLE */
.work-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 34px;

  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

/* SERVICES INLINE */
.work-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;

  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.45s;
}

.work-services span {
  padding: 10px 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;

  background: rgba(91,108,255,0.08);
  color: #334155;
}

/* CTA */
.work-cta {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 40px;

  background: linear-gradient(135deg, #5B6CFF, #8F9BFF);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 18px 40px rgba(91,108,255,0.35);

  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.6s;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(91,108,255,0.45);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .work-title {
    font-size: 18px;

  }

  .work-subtitle {
    font-size: 13px;
    margin-top: 6%;
  }

  .work-services {
    gap: 10px;
  }
}



/* ================= WORK SHOWCASE ================= */

.work-showcase {
  padding: 120px 0;
  margin-top: -7%;
}

.work-showcase-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

/* LEFT */
.showcase-tag {
  font-size: 13px;
  letter-spacing: 1.4px;
  color: #5B6CFF;
  font-weight: 600;
}

.showcase-text h2 {
  margin-top: 14px;
  font-size: 44px;
  color: #0f172a;
  line-height: 1.15;
}

.showcase-text h2 span {
  color: #5B6CFF;
}

.showcase-text p {
  margin-top: 18px;
  font-size: 18px;
  color: #475569;
  line-height: 1.65;
}

.showcase-points {
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.showcase-points li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #334155;
}

/* RIGHT IMAGES */
.showcase-images {
  position: relative;
  height: 420px;
}

.sc-img {
  position: absolute;
  width: 260px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}

/* POSITIONS */
.img-a {
width: 100%;
  height: 400px;
}



/* HOVER DEPTH */
.showcase-images:hover .img-a { transform: translateY(-10px); }

/* SCROLL ANIMATION */
.reveal {
  opacity: 1;
  transform: translateY(60px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.9s ease;
}

/* MOBILE */
@media (max-width: 768px) {

  .work-showcase-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: -20%;
  }

  .showcase-images {
    height: 500px;
  }

  .showcase-text h2 {
    font-size: 32px;
  }
}

.work-impact {
  padding: 140px 24px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.work-label {
  font-size: 20px;
  letter-spacing: 2px;
  color: #5B6CFF;
  font-weight: 600;
}

.work-impact h2 {
  margin-top: 18px;
  font-size: 45px;
  line-height: 1.15;
  color: #0f172a;
}

.work-impact h2 span {
  color: #5B6CFF;
}

.work-sub {
  margin: 18px auto 60px;
  max-width: 620px;
  font-size: 18px;
  color: #475569;
}

.work-image-wrap {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.work-image-wrap img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
  margin-top: 2%;
}

/* FLOATING BADGES */
.work-badge {
  position: absolute;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.badge-1 { top: 20%; left: -40px; }
.badge-2 { top: 10%; right: -40px; }
.badge-3 { bottom: -30px; left: 50%; transform: translateX(-50%); }

/* CTA */
.work-main-cta {
  margin-top: 60px;
  display: inline-block;
  padding: 16px 38px;
  border-radius: 40px;
  background: linear-gradient(135deg, #5B6CFF, #8F9BFF);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {


  .work-badge {
    display: none;
  }
 .work-project p{
    font-size: 16px;
    gap: 20px;
 }
}

/* ================= WORK IMPACT ================= */

.work-impact {
  padding: 140px 24px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* LABEL */
.work-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #5B6CFF;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

/* TITLE */
.work-title {
  margin: 0 auto;
}

/* LINE 1 */
.work-title .line-1 {
  display: block;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
}

/* LINE 2 (SMALLER + COLOR) */
.work-title .line-2 {
  display: block;
  margin-top: 6px;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #5B6CFF;
}

/* SUB TEXT */
.work-sub {
  margin: 22px auto 60px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .work-impact {
    padding: 100px 20px;
	  margin-top:-60%;
  }

  .work-title .line-1 {
    font-size: 15px;
  }

  .work-title .line-2 {
    font-size: 30px;
  }

  .work-sub {
    font-size: 16px;
  }
}
/* ================= PROOF SECTION ================= */

.proof-section {
  padding: 160px 24px;
  background:
    linear-gradient(180deg, #f8fafc, #ffffff);
    margin-top: -8%;
}

.proof-inner {
  max-width: 1200px;
  margin: auto;
}

/* TAG */
.proof-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #5B6CFF;
  font-weight: 600;
}

/* TITLE */
.proof-title {
  margin-top: 14px;
  font-size: 44px;
  line-height: 1.15;
  color: #0f172a;
}

.proof-title span {
  color: #5B6CFF;
}

/* GRID */
.proof-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* SIGNALS */
.proof-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.signal-card {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.signal-card h3 {
  font-size: 20px;
  color: #5B6CFF;
  margin-bottom: 8px;
}

.signal-card p {
  font-size: 15px;
  color: #475569;
}

/* HUMAN SIDE */
.proof-human {
  padding-left: 40px;
  border-left: 3px solid rgba(91,108,255,0.25);
}

.human-line {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #0f172a;
}

.human-note {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: #64748b;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .proof-title {
    font-size: 30px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .proof-signals {
    grid-template-columns: 1fr;
  }

  .proof-human {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid rgba(91,108,255,0.25);
    padding-top: 24px;
  }
  .proof-section
  {
      margin-top: -30%;
  }
}
