* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background-color: #f7f7f4;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}
/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    align-items: center;
    background: #f7f7f4;
    max-width: 1280px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(0px); /* posisi awal turun 50px */
    animation: fadeInUp 1s ease-out forwards; /* jalankan animasi */
    animation-delay: 0.3s; /* jeda sebelum muncul */
}
nav img {
    width: 50%;
    cursor: pointer;
    border-radius: 50%;
}

/* Hero Banner */
.hero-banner {
    padding: 24px 0;
}
.hero-banner .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;

}
.hero-banner .container h1 {
    max-width: 685px;
    width: 100%;
    color: #222;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    opacity: 0;
    transform: translateY(0px); /* posisi awal turun 50px */
    animation: fadeInUp 1s ease-out forwards; /* jalankan animasi */
    animation-delay: 0.6s; /* jeda sebelum muncul */
}
.hero-banner .container img {
    width: 100%;
    display: block;
    opacity: 0;
    transform: translateY(0px); /* posisi awal turun 50px */
    animation: fadeInUp 1s ease-out forwards; /* jalankan animasi */
    animation-delay: 0.8s; /* jeda sebelum muncul */
}

/* Background */
.section {
    padding: 64px 0;
    opacity: 0;
    transform: translateY(0px); /* posisi awal turun 50px */
    animation: fadeInUp 1s ease-out forwards; /* jalankan animasi */
    animation-delay: 0.3s; /* jeda sebelum muncul */
}
.section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.container .title {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.container .title h3 {
    color: #717171;
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
}
.container .title h1 {
    color: #222;
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
}
.container p {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 856px;
    width: 100%;
}
.container ul {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.container li {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #222;
}
.container .image-wrapper {
    overflow: hidden;
    border: 1px solid #ddd;
}
.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}
.image-wrapper:hover img {
    transform: scale(1.2);
}
.impact-number {
    display: flex;
    gap: 24px;
}
.impact-number .card-number {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 333px;
    background-color: #F2F2EE;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 24px;
}
.card-number h3 {
    color: #222;
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
}
.card-number p {
    color: #717171;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
}

.container .final-design-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.container .final-design {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.final-design h3 {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}
.final-design p {
    color: #222;
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
}
.final-design img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.offering-visual {
    position: relative;
    width: 100%;
    border-radius: 8px;
    display: flex;
  justify-content: center;
}
.offering-visual img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}
.video-modal {
    z-index: 2;
    position: relative;
    padding: 24px;
    box-sizing: border-box;
}
.offering-visual .auto-play-video {
    width: 349px;
  aspect-ratio: 9 / 16;
  object-fit: contain; 
}

.section .reflection {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 12px;
}
.reflection ul li {
    color: #222;
    font-size: 18px;
    line-height: 1.6;
}
.reflection ul {
    color: #222;
    font-size: 18px;
    line-height: 30px;
}