/* =========================================================
   PROFIL RS — CLEAN PREMIUM REDESIGN
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

.profile-hero,
.profile-about,
.vision-section,
.history-section,
.growth-section,
.values-section,
.profile-final-cta {
  position: relative;
  overflow: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.profile-hero {
  min-height: 720px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 15% 35%,
      rgba(44, 166, 116, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(44, 166, 116, 0.09),
      transparent 30%
    ),
    #f8fbfa;
}

.profile-hero-content {
  position: relative;
  z-index: 5;

  width: min(900px, calc(100% - 2rem));

  margin: auto;

  text-align: center;
}

.profile-eyebrow {
  display: inline-flex;
  align-items: center;

  padding: .55rem 1rem;
  margin-bottom: 1.5rem;

  border-radius: 999px;

  background: rgba(41,155,109,.10);
  color: #299b6d;

  font-size: .78rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .12em;

  animation: profileFadeUp .8s ease both;
}

.profile-hero h1 {
  margin: 0;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;

  letter-spacing: -.065em;

  color: #299b6d;

  animation: profileFadeUp .9s .1s ease both;
}

.profile-hero h1 span {
  display: block;

  color: #299b6d;
}

.profile-hero p {
  max-width: 700px;

  margin: 1.8rem auto 0;

  color: #66746f;

  font-size: 1.05rem;
  line-height: 1.8;

  animation: profileFadeUp .9s .2s ease both;
}


/* Scroll indicator */

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: .7rem;

  margin-top: 4rem;

  color: #7b8a84;

  font-size: .72rem;
  font-weight: 700;

  animation: profileFadeUp .9s .35s ease both;
}

.scroll-line {
  position: relative;

  width: 1px;
  height: 48px;

  overflow: hidden;

  background: rgba(41,155,109,.18);
}

.scroll-line::after {
  content: "";

  position: absolute;

  top: -60%;
  left: 0;

  width: 100%;
  height: 50%;

  background: #299b6d;

  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0% {
    top: -60%;
  }

  100% {
    top: 120%;
  }

}


/* Hero grid */

.profile-hero-grid {
  position: absolute;
  inset: 0;

  opacity: .35;

  background-image:
    linear-gradient(
      rgba(41,155,109,.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(41,155,109,.055) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 80%
    );
}


/* Hero orbs */

.profile-hero-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  animation:
    heroOrbFloat 9s ease-in-out infinite;
}

.orb-one {
  width: 330px;
  height: 330px;

  left: -160px;
  top: 100px;

  background: rgba(41,155,109,.07);
}

.orb-two {
  width: 250px;
  height: 250px;

  right: -100px;
  bottom: 80px;

  background: rgba(41,155,109,.08);

  animation-delay: -4s;
}

@keyframes heroOrbFloat {

  0%,
  100% {
    transform: translate3d(0,0,0);
  }

  50% {
    transform: translate3d(20px,-25px,0);
  }

}


/* =========================================================
   ABOUT
   ========================================================= */

.profile-about {
  padding: 8rem 0;

  background: #fff;
}

.about-bg-circle {
  position: absolute;

  width: 500px;
  height: 500px;

  left: -300px;
  top: 20%;

  border-radius: 50%;

  background: rgba(41,155,109,.055);
}

.about-layout {
  display: grid;

  grid-template-columns:
    minmax(0,.95fr)
    minmax(0,1.05fr);

  gap: 6rem;

  align-items: center;
}


/* Image */

.about-visual {
  position: relative;

  min-height: 580px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;

  width: min(100%,500px);

  aspect-ratio: .82;

  overflow: hidden;

  border-radius: 35px;

  box-shadow:
    0 35px 80px rgba(17,45,34,.16);

  transform: rotate(-2deg);

  transition:
    transform .6s cubic-bezier(.22,1,.36,1);
}

.about-visual:hover .about-image-wrapper {
  transform:
    rotate(0deg)
    scale(1.015);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1s cubic-bezier(.22,1,.36,1);
}

.about-visual:hover img {
  transform: scale(1.06);
}


/* Shine */

.image-shine {
  position: absolute;

  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  transform: skewX(-20deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.22),
      transparent
    );

  transition: left 1s ease;
}

.about-visual:hover .image-shine {
  left: 140%;
}


/* Ring */

.about-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -30px;
  bottom: 15px;

  border: 1px solid transparent;
  border-radius: 50%;

  z-index: 0;

  animation: ringRotate 18s linear infinite;
}


/* Floating card */

.about-floating-card {
  position: absolute;

  left: 0;
  bottom: 35px;

  display: flex;
  align-items: center;

  gap: 1rem;

  padding: 1.1rem 1.3rem;

  border-radius: 18px;

  background: rgba(255,255,255,.92);

  border: 1px solid rgba(255,255,255,.8);

  box-shadow:
    0 18px 50px rgba(15,35,27,.14);

  backdrop-filter: blur(15px);

  animation:
    floatingCard 5s ease-in-out infinite;
}

@keyframes floatingCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

}

.floating-number {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #299b6d;

  color: white;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-weight: 800;
  font-size: .9rem;
}

.about-floating-card strong,
.about-floating-card span {
  display: block;
}

.about-floating-card strong {
  color: #299b6d;

  font-size: .82rem;
}

.about-floating-card span {
  margin-top: .2rem;

  color: #7a8883;

  font-size: .7rem;
}


/* About text */

.section-label {
  display: inline-block;

  margin-bottom: .8rem;

  color: #299b6d;

  font-size: .76rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .13em;
}

.about-content h2 {
  max-width: 650px;

  margin: 0 0 1.5rem;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(2rem,4vw,3.4rem);

  line-height: 1.12;

  letter-spacing: -.045em;

  color: #299b6d;
}

.about-content h2 span {
  color: #299b6d;
}

.about-content > p {
  max-width: 650px;

  margin: 0 0 1rem;

  color: #687771;

  font-size: .95rem;

  line-height: 1.85;
}


/* Mini vision */

.vision-mini {
  display: flex;

  gap: 1rem;

  margin-top: 2rem;

  padding: 1.25rem;

  border-radius: 18px;

  background: #f3faf7;

  border: 1px solid rgba(41,155,109,.10);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.vision-mini:hover {
  transform: translateY(-4px);

  box-shadow:
    0 15px 35px rgba(41,155,109,.08);
}

.vision-mini-icon {
  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: white;

  color: #299b6d;

  box-shadow:
    0 8px 20px rgba(41,155,109,.08);
}

.vision-mini-icon svg {
  width: 20px;
}

.vision-mini span,
.vision-mini strong {
  display: block;
}

.vision-mini span {
  margin-bottom: .3rem;

  color: #299b6d;

  font-size: .7rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .08em;
}

.vision-mini strong {
  color: #299b6d;

  font-size: .82rem;

  line-height: 1.65;
}


/* =========================================================
   VISION
   ========================================================= */

.vision-section {
  padding: 5rem 0;

  background: #f5faf8;
}

.vision-bg-pattern {
  position: absolute;
  inset: 0;

  opacity: .35;

  background-image:
    radial-gradient(
      rgba(41,155,109,.15) 1px,
      transparent 1px
    );

  background-size: 28px 28px;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black,
      transparent
    );
}

.vision-card {
  position: relative;

  display: flex;
  align-items: center;

  gap: 3rem;

  padding: 4rem 5rem;

  overflow: hidden;

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      #1e9a69,
      #2caf7b
    );

  color: white;

  box-shadow:
    0 30px 70px rgba(41,155,109,.20);

  transition:
    transform .5s ease,
    box-shadow .5s ease;
}

.vision-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 40px 80px rgba(41,155,109,.25);
}

.vision-decoration {
  position: absolute;

  width: 420px;
  height: 420px;

  right: -170px;
  top: -190px;

  border: 1px solid rgba(255,255,255,.18);

  border-radius: 50%;

  animation:
    ringRotate 25s linear infinite;
}

.vision-decoration::after {
  content: "";

  position: absolute;

  inset: 50px;

  border: 1px solid rgba(255,255,255,.12);

  border-radius: 50%;
}

.vision-icon-large {
  flex: 0 0 80px;

  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  background: rgba(255,255,255,.13);

  backdrop-filter: blur(10px);
}

.vision-icon-large svg {
  width: 38px;
}

.vision-text {
  position: relative;

  z-index: 2;
}

.vision-text > span {
  display: block;

  margin-bottom: .7rem;

  color: rgba(255,255,255,.75);

  font-size: .75rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .13em;
}

.vision-text h2 {
  margin: 0;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(2rem,4vw,3.5rem);

  line-height: 1.1;

  letter-spacing: -.045em;
}

.vision-text h2 em {
  color: rgba(255,255,255,.65);

  font-style: normal;
}

.vision-text p {
  max-width: 750px;

  margin: 1.2rem 0 0;

  color: rgba(255,255,255,.82);

  line-height: 1.75;

  font-size: .9rem;
}


/* =========================================================
   HISTORY — TIMELINE BARU
   ========================================================= */

.history-section {
  padding: 9rem 0;

  background: #fff;
}

.history-bg-shape {
  position: absolute;

  width: 650px;
  height: 650px;

  right: -400px;
  top: 15%;

  border-radius: 50%;

  background: rgba(41,155,109,.045);
}

.history-heading {
  max-width: 700px;

  margin: 0 auto 5rem;

  text-align: center;
}

.history-heading h2 {
  margin: 0;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(2.4rem,5vw,4rem);

  line-height: 1.05;

  letter-spacing: -.055em;
}

.history-heading p {
  margin: 1rem auto 0;

  color: #71807a;

  line-height: 1.8;

  font-size: .95rem;
}


/* Timeline container */

.history-timeline {
  position: relative;

  max-width: 1000px;

  margin: auto;

  padding: 1rem 0 2rem;
}


/* Main road */

.timeline-road {
  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 5px;

  transform: translateX(-50%);

  border-radius: 999px;

  background: #e4eee9;

  overflow: hidden;
}

.timeline-progress {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      to bottom,
      #299b6d,
      #68c69b
    );

  box-shadow:
    0 0 12px rgba(41,155,109,.25);

  transition: height .15s linear;
}


/* Timeline item */

.timeline-item {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    100px
    minmax(0,1fr);

  align-items: center;

  min-height: 280px;

  margin-bottom: 1rem;
}


/* Year */

.timeline-year {
  position: relative;

  grid-column: 2;
  grid-row: 1;

  z-index: 5;

  width: 82px;
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;

  border-radius: 50%;

  background: white;

  border: 7px solid #f0f7f4;

  box-shadow:
    0 8px 25px rgba(25,65,48,.10);

  color: #299b6d;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: .78rem;
  font-weight: 800;

  text-align: center;

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    background .4s ease,
    color .4s ease,
    box-shadow .4s ease;
}


/* pulse ring */

.timeline-year::before {
  content: "";

  position: absolute;

  inset: -9px;

  border-radius: 50%;

  border: 1px solid rgba(41,155,109,.15);

  transform: scale(.8);

  opacity: 0;

  transition:
    transform .4s ease,
    opacity .4s ease;
}

.timeline-item:hover .timeline-year {
  transform: scale(1.12);

  background: #299b6d;

  color: white;

  box-shadow:
    0 12px 35px rgba(41,155,109,.25);
}

.timeline-item:hover .timeline-year::before {
  transform: scale(1.15);

  opacity: 1;
}


/* Hide old dot */

.timeline-dot {
  display: none;
}


/* Cards */

.timeline-card {
  position: relative;

  width: calc(100% - 35px);

  padding: 1.8rem 2rem;

  border-radius: 22px;

  background: #fff;

  border: 1px solid rgba(20,50,38,.07);

  box-shadow:
    0 15px 40px rgba(20,50,38,.055);

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;
}


/* Connector */

.timeline-card::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 35px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(41,155,109,.08),
      rgba(41,155,109,.35)
    );
}

.timeline-left .timeline-card::after {
  right: -35px;
}

.timeline-right .timeline-card::after {
  left: -35px;

  transform: rotate(180deg);
}


/* Left */

.timeline-left .timeline-card {
  grid-column: 1;
  grid-row: 1;

  justify-self: end;
}


/* Right */

.timeline-right .timeline-card {
  grid-column: 3;
  grid-row: 1;

  justify-self: start;
}


.timeline-left .timeline-year,
.timeline-right .timeline-year {
  grid-row: 1;
}


/* Hover */

.timeline-card:hover {
  transform: translateY(-8px);

  border-color: rgba(41,155,109,.18);

  box-shadow:
    0 25px 55px rgba(20,50,38,.10);
}


/* Card content */

.timeline-number {
  display: inline-block;

  margin-bottom: .6rem;

  color: #299b6d;

  font-size: .68rem;
  font-weight: 800;

  letter-spacing: .1em;
}

.timeline-card h3 {
  margin: 0 0 .65rem;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 1.15rem;

  letter-spacing: -.025em;
}

.timeline-card p {
  margin: 0;

  color: #71807a;

  font-size: .86rem;

  line-height: 1.75;
}

.timeline-tag {
  display: inline-flex;

  margin-top: 1.1rem;

  padding: .4rem .7rem;

  border-radius: 999px;

  background: #eff8f4;

  color: #299b6d;

  font-size: .68rem;
  font-weight: 700;
}


/* Current */

.timeline-current .timeline-card {
  background:
    linear-gradient(
      135deg,
      #f1faf6,
      #fff
    );
}

.timeline-stats {
  display: flex;

  gap: 2rem;

  margin-top: 1.5rem;

  padding-top: 1.3rem;

  border-top:
    1px solid rgba(41,155,109,.12);
}

.timeline-stats strong {
  display: block;

  color: #299b6d;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 1.2rem;
}

.timeline-stats small {
  font-size: .65rem;
}

.timeline-stats > div > span {
  display: block;

  margin-top: .15rem;

  color: #7c8984;

  font-size: .65rem;
}


/* =========================================================
   GROWTH
   ========================================================= */

.growth-section {
  padding: 8rem 0;

  background: #f7faf9;
}

.growth-grid {
  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    minmax(0,1fr);

  gap: 5rem;

  align-items: center;
}

.growth-image {
  position: relative;

  min-height: 550px;

  overflow: hidden;

  border-radius: 30px;

  box-shadow:
    0 30px 70px rgba(20,50,38,.13);
}

.growth-image img {
  width: 100%;
  height: 100%;

  min-height: 550px;

  object-fit: cover;

  transition:
    transform 1s cubic-bezier(.22,1,.36,1);
}

.growth-image:hover img {
  transform: scale(1.06);
}

.growth-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(8,25,18,.65),
      transparent 55%
    );
}

.growth-caption {
  position: absolute;

  left: 2rem;
  bottom: 2rem;

  color: white;
}

.growth-caption span {
  display: block;

  margin-bottom: .3rem;

  color: rgba(255,255,255,.7);

  font-size: .72rem;
  font-weight: 700;
}

.growth-caption strong {
  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 1.35rem;
}

.growth-content h2 {
  max-width: 600px;

  margin: 0 0 1.3rem;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(2rem,4vw,3.2rem);

  line-height: 1.12;

  letter-spacing: -.045em;
}

.growth-content > p {
  color: #71807a;

  font-size: .9rem;

  line-height: 1.8;
}

.growth-points {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  margin-top: 2rem;
}

.growth-point {
  display: flex;

  gap: .9rem;

  padding: .9rem;

  border-radius: 14px;

  transition:
    transform .3s ease,
    background .3s ease;
}

.growth-point:hover {
  transform: translateX(6px);

  background: white;
}

.growth-check {
  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #299b6d;

  color: white;

  font-size: .75rem;
  font-weight: 800;
}

.growth-point strong {
  display: block;

  color: #299b6d;

  font-size: .85rem;
}

.growth-point p {
  margin: .2rem 0 0;

  color: #7a8882;

  font-size: .76rem;

  line-height: 1.5;
}


/* =========================================================
   VALUES
   ========================================================= */

.values-section {
  padding: 9rem 0;

  background: white;
}

.values-heading {
  max-width: 700px;

  margin: 0 auto 4rem;

  text-align: center;
}

.values-heading h2 {
  margin: 0;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(2.2rem,4vw,3.5rem);

  line-height: 1.1;

  letter-spacing: -.05em;
}

.values-heading h2 span {
  color: #299b6d;
}

.values-heading p {
  margin: 1rem auto 0;

  color: #71807a;

  font-size: .9rem;

  line-height: 1.7;
}

.values-modern-grid {
  display: grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap: 1.2rem;
}

.value-modern-card {
  position: relative;

  min-height: 300px;

  padding: 2rem;

  overflow: hidden;

  border-radius: 24px;

  background: #f7faf9;

  border:
    1px solid rgba(20,50,38,.06);

  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    box-shadow .4s ease,
    background .4s ease;
}

.value-modern-card:hover {
  transform: translateY(-9px);

  background: white;

  box-shadow:
    0 25px 55px rgba(20,50,38,.09);
}

.value-modern-card::after {
  content: "";

  position: absolute;

  right: -50px;
  bottom: -60px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: rgba(41,155,109,.055);

  transition:
    transform .5s ease;
}

.value-modern-card:hover::after {
  transform: scale(1.5);
}

.value-number {
  position: absolute;

  right: 1.5rem;
  top: 1.5rem;

  color: rgba(41,155,109,.13);

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 2.3rem;
  font-weight: 800;
}

.value-modern-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 2rem;

  border-radius: 16px;

  background: rgba(41,155,109,.10);

  color: #299b6d;

  transition:
    transform .4s ease,
    background .4s ease;
}

.value-modern-card:hover .value-modern-icon {
  transform:
    rotate(-5deg)
    scale(1.08);

  background: #299b6d;

  color: white;
}

.value-modern-icon svg {
  width: 25px;
}

.value-modern-card h3 {
  position: relative;

  z-index: 2;

  margin: 0 0 .6rem;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 1.1rem;
}

.value-modern-card p {
  position: relative;

  z-index: 2;

  max-width: 280px;

  margin: 0;

  color: #71807a;

  font-size: .82rem;

  line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.profile-final-cta {
  padding: 0 0 8rem;
}

.profile-cta-card {
  position: relative;

  overflow: hidden;

  padding: 5rem;

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      #053a1d,
      #2c8f58
    );

  color: white;

  box-shadow:
    0 30px 70px rgba(20,63,48,.18);
}

.cta-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  right: -180px;
  top: -200px;

  border-radius: 50%;

  background:
    rgba(76,175,109,.486);

  animation:
    ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {

  0%,
  100% {
    transform: translate(0,0);
  }

  50% {
    transform: translate(-20px,25px);
  }

}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 700px;
}

.cta-content > span {
  display: block;

  margin-bottom: .7rem;

  color: rgba(237,245,238,.952);

  font-size: .72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .13em;
}

.cta-content h2 {
  margin: 0;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(2.3rem,5vw,4rem);

  line-height: 1.05;

  letter-spacing: -.055em;
}

.cta-content h2 em {
  color: #eee6e6;

  font-style: normal;
}

.cta-content p {
  max-width: 550px;

  margin: 1.2rem 0 2rem;

  color: rgba(243,238,238,.911);

  font-size: .9rem;

  line-height: 1.8;
}

.profile-cta-button {
  display: inline-flex;
  align-items: center;

  gap: 1rem;

  padding: .9rem 1.2rem;

  border-radius: 12px;

  background: white;

  color: #196e3f;

  text-decoration: none;

  font-size: .82rem;
  font-weight: 800;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.profile-cta-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(0,0,0,.16);
}

.profile-cta-button span {
  font-size: 1.1rem;

  transition:
    transform .3s ease;
}

.profile-cta-button:hover span {
  transform: translateX(5px);
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(35px);

  filter: blur(4px);

  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .8s ease;

  transition-delay:
    var(--reveal-delay,0ms);
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);

  filter: blur(0);
}

.reveal[data-delay="80"] {
  --reveal-delay: 80ms;
}

.reveal[data-delay="100"] {
  --reveal-delay: 100ms;
}

.reveal[data-delay="150"] {
  --reveal-delay: 150ms;
}

.reveal[data-delay="160"] {
  --reveal-delay: 160ms;
}

.reveal[data-delay="200"] {
  --reveal-delay: 200ms;
}

.reveal[data-delay="240"] {
  --reveal-delay: 240ms;
}

.reveal[data-delay="300"] {
  --reveal-delay: 300ms;
}

.reveal[data-delay="320"] {
  --reveal-delay: 320ms;
}

.reveal[data-delay="400"] {
  --reveal-delay: 400ms;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .profile-hero {
    min-height: 620px;
  }

  .about-layout {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .about-visual {
    min-height: 520px;
  }

  .vision-card {
    padding: 3rem;

    gap: 2rem;
  }

  .growth-grid {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .values-modern-grid {
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }

}


/* =========================================================
   TABLET TIMELINE
   ========================================================= */

@media (max-width: 760px) {

  .history-section {
    padding: 6rem 0;
  }

  .history-heading {
    margin-bottom: 4rem;
  }

  .history-timeline {
    padding-left: 42px;
    padding-right: 10px;
  }

  .timeline-road {
    left: 14px;

    transform: none;

    width: 4px;
  }

  .timeline-item {
    display: block;

    min-height: auto;

    margin-bottom: 3rem;

    padding-left: 28px;
  }

  .timeline-year {
    position: absolute;

    left: -13px;
    top: 20px;

    width: 54px;
    height: 54px;

    border-width: 5px;

    font-size: .62rem;
  }

  .timeline-left .timeline-card,
  .timeline-right .timeline-card {

    display: block;

    width: 100%;

    margin: 0;

    justify-self: auto;
  }

  .timeline-card {
    padding: 1.4rem;

    border-radius: 18px;
  }

  .timeline-card::after {
    top: 45px;

    left: -28px !important;
    right: auto !important;

    width: 28px;

    transform: none !important;
  }

  .timeline-stats {
    gap: 1.2rem;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .profile-hero {
    min-height: 580px;
  }

  .profile-hero h1 {
    font-size: 2.8rem;
  }

  .profile-hero p {
    font-size: .9rem;
  }


  .profile-about,
  .history-section,
  .values-section {
    padding: 5rem 0;
  }


  .about-visual {
    min-height: 440px;
  }

  .about-image-wrapper {
    width: 88%;
  }

  .about-floating-card {
    left: 0;
    bottom: 15px;
  }

  .about-ring {
    width: 280px;
    height: 280px;

    right: -10px;
  }


  .vision-card {
    flex-direction: column;

    align-items: flex-start;

    padding: 2rem;

    border-radius: 24px;
  }

  .vision-text h2 {
    font-size: 2rem;
  }


  /* Growth */

  .growth-section {
    padding: 5rem 0;
  }

  .growth-image {
    min-height: 400px;
  }

  .growth-image img {
    min-height: 400px;
  }


  /* Values */

  .values-modern-grid {
    grid-template-columns: 1fr;
  }

  .value-modern-card {
    min-height: 250px;
  }


  /* CTA */

  .profile-cta-card {
    padding: 2.5rem 1.5rem;

    border-radius: 24px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .profile-hero h1 {
    font-size: 2.4rem;
  }

  .history-timeline {
    padding-left: 34px;
  }

  .timeline-road {
    left: 10px;
  }

  .timeline-item {
    padding-left: 24px;
  }

  .timeline-year {
    left: -14px;

    width: 48px;
    height: 48px;
  }

  .timeline-card {
    padding: 1.2rem;
  }

  .timeline-card h3 {
    font-size: 1rem;
  }

  .timeline-card p {
    font-size: .78rem;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;

    transform: none;

    filter: none;
  }

}

