body {
    --color-highlight: #97CB56; 
}

.hero {
    padding: 96px 0;
    background-color: var(--color-white);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero__avatar {
    width: 250px;
    height: 350px;
    border: 2px dashed var(--color-primary-teal);
    border-radius: var(--border-radius-normal);
    padding: 5px;
    box-sizing: border-box;
}

.hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-normal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.content-wrapper {
    width: 100%;
    max-width: 720px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    border: 2px solid var(--color-border);
    border-radius: 999px;
    text-decoration: none;
    background-color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-teal);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.back-button:hover {
    background-color: var(--color-primary-teal);
    color: #fff;
    border-color: var(--color-primary-teal);
}

.back-button i {
    font-size: 16px;
    line-height: 1;
}

.hero__text {
    flex-grow: 1; 
}

.hero__title {
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.subtitle {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    color: #9CA3AF;
    margin-bottom: 16px;
}

.product-subtitle {
    text-align: left;
}

.hero__description {
    font-size: 15px;
    font-weight: 200;
    line-height: 1.8;
    color: var(--color-text-dark);
    text-align: justify;
}

.hero__description + .hero__description {
    margin-top: 1.5rem;
}

.hero__description b {
    font-weight: 700;
    color: var(--color-text-dark);
}

.highlight {
    color: var(--color-highlight);
    font-weight: 700;
}

.project-details {
    margin-top: 1rem; /* Jarak dari deskripsi di atasnya */
    margin-bottom: 2rem; /* Jarak jika ada konten lain di bawahnya dalam hero */
}

/* Container untuk Role dan Company */
.project-meta {
    display: flex;
    flex-wrap: wrap; /* Agar responsif di layar kecil */
    gap: 1.5rem; /* Jarak antar item (Role & Company) */
}

.project-meta__item {
    display: flex;
    flex-direction: column;
}

.project-meta__label {
    font-size: 0.8rem; /* Ukuran lebih kecil untuk label */
    font-weight: 600;
    color: var(--color-text-light); /* Gunakan variabel warna Anda */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-meta__tag {
    /* Style 'pil' Anda */
    background-color: var(--color-highlight); /* Gunakan variabel warna Anda */
    color: #ffffff; /* Gunakan variabel warna Anda */
    font-size: 0.9rem; /* Sesuaikan ukuran font */
    font-weight: 600;
    padding: 0.5rem 1rem; /* Padding pil */
    border-radius: 9999px; 
    display: inline-block; 
    white-space: nowrap; 
    line-height: 1.4; /* Atur line-height agar teks di tengah */
}

/* Banner 'Please Note' */
.project-confidentiality-note {
    background-color: #F59E0B; /* Warna Oranye/Kuning */
    color: #ffffff; /* Gunakan variabel warna Anda */
    padding: 0.7rem 1rem; /* Padding banner */
    border-radius: var(--border-radius-small); /* Gunakan variabel border-radius Anda */
    font-size: 0.9rem; /* Ukuran font banner */
    font-weight: 500;
    width: 100%;
}

.card-specific-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 4rem;
}

.process-card {
    position: relative;
    width: 320px;
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: rotate(4deg) scale(0.8);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
}

.process-card.miring-kiri {
    transform: rotate(-4deg) scale(0.8);
}

.process-card:hover {
    transform: rotate(0) scale(0.9);
}

.card-dot {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-highlight);
    border-radius: 50%;
    border: none;
    box-shadow: none;
}

.card-bg-number {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-weight: 800;
    color: #e9ecef;
    z-index: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif; 
    font-size: 200px;
    right: 15px;
    transition: opacity 0.4s ease;
}

body[data-theme='dark'] .card-bg-number {
    opacity: 0.2; /* 20% Opacity */
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin: 24px 0 4px;
}

.card-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #adb5bd;
    margin: 0 0 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 7px;
}

.tag {
    background-color: #48d6d2;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
}

.constraints-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.constraint-description{
    text-align: justify;
}

.constraint-card {
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-normal); /* Radius lebih besar seperti gambar */
    padding: 1.5rem;
    margin: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative; /* Untuk positioning indikator */
    padding-left: 1rem; /* Beri ruang untuk indikator */
    transition: transform 0.3s ease;
}

.constraint-card:hover {
    transform: scale(1.05);
}

/* Indikator lingkaran hijau di kiri */
.constraint-card__indicator {
    position: absolute;
    left: -0.3rem;
    top: -0.3rem; /* Sesuaikan posisi vertikal */
    width: 16px;
    height: 16px;
    background-color: #97CB56; /* Warna Hijau */
    border-radius: 50%;
}

.constraint-card__title {
    font-size: 1.1rem; /* Ukuran judul kartu */
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.constraint-card__description {
    font-size: 0.9rem; /* Ukuran deskripsi */
    line-height: 1.7;
    color: var(--color-text-light);
    text-align: justify;
}

/* Styling untuk teks bold/italic dalam deskripsi */
.constraint-card__description b,
.constraint-card__description i {
    font-weight: 600; 
    color: var(--color-text-dark);
}

/* ==========================================================================
   DISCOVER SECTION STYLES ('Learning what isn't working...')
   ========================================================================== */

.discover-section {
    padding: 1rem 0;
    background-color: var(--color-white);
}

.discover__intro {
    font-size: 1rem; /* Adjust as needed */
    line-height: 1.7;
    color: var(--color-text-dark);
    margin: 0 auto 3rem auto; /* Center align paragraphs */
}

.discover__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; /* Space between cards */
}

.discover-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-normal); /* Match constraints cards */
    padding: 1.5rem;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid var(--color-border);
    position: relative;
    padding-left: 2.5rem; /* Space for the indicator */
    transition: transform 0.3s ease;
}

.discover-card:hover {
    transform: rotate(-4deg) scale(0.98);
}

/* Green circle indicator */
.discover-card__indicator {
    position: absolute;
    right: -0.3rem; /* Positioned top-right */
    top: -0.3rem;   /* Positioned top-right */
    width: 16px;
    height: 16px;
    background-color: var(--color-highlight); /* Green color */
    border-radius: 50%;
}

.discover-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem; /* Space below title */
}

.discover-card__description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Highlight style for phrases like "too-much-to-think-about" */
.discover-highlight {
    color: var(--color-highlight); /* Use your teal color */
    font-weight: 600;
}

.define-section {
    background-color: var(--color-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.define-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.define-icon {
    flex-shrink: 0;
}

.define-icon img {
    width: 15rem;
    height: auto;
}

.define-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.define-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.define-description {
    font-size: 15px;
    font-weight: 200;
    line-height: 1.8;
    color: var(--color-text-dark);
    text-align: justify;
    margin-bottom: 2.5rem;
}

.define-description b {
    font-weight: 700;
    color: var(--color-text-dark);
}

.develop-section {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient( to bottom, var(--color-white) 0%, var(--color-background-light) 50%, var(--color-white) 100% );
}

.develop-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.develop-wrapper {
    display: flex;
    align-items: center;
    gap: 4.5rem;
}

.develop-wrapper + .story-wrapper {
    margin-top: 4rem;
}

.develop-image-column {
    width: 250px;
    border: 2px dashed var(--color-primary-teal);
    border-radius: var(--border-radius-normal);
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.develop-image-column img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-normal);
    display: block;
}

.develop-image-column:hover {
    transform: scale(1.05);
}

.develop-text-column {
    flex: 2; 
}

.develop-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.develop-description {
    font-size: 15px;
    font-weight: 200;
    line-height: 1.8;
    color: var(--color-text-dark);
    text-align: justify;
    margin-bottom: 1rem;
}

.develop-text-column ul {
    padding-left: 18px;
    margin-top: 0.1rem;
    margin-bottom: 3rem;
}

.develop-text-column li {
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    text-align: justify;
}

.conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.deliver-section {
    padding: 1rem 0;
    background-color: var(--color-white);
    padding: 5rem 0;
}

.deliver__intro {
    font-size: 1rem; /* Adjust as needed */
    line-height: 1.7;
    color: var(--color-text-dark);
}

.deliver__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; /* Space between cards */
    margin: 2rem 0;
}

.deliver-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-normal); /* Match constraints cards */
    padding: 1.5rem;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid var(--color-border);
    position: relative;
    padding-left: 2.5rem; /* Space for the indicator */
    transition: transform 0.3s ease;
}

.deliver-card:hover {
    transform: scale(1.05);
}

.deliver-card:hover .deliver-card__indicator{
    display: none ;
}

/* Green circle indicator */
.deliver-card__indicator {
    position: absolute;
    right: -0.3rem; /* Positioned top-right */
    top: -0.3rem;   /* Positioned top-right */
    width: 16px;
    height: 16px;
    background-color: var(--color-highlight); /* Green color */
    border-radius: 50%;
}

.deliver-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem; /* Space below title */
}

.deliver-card__description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Highlight style for phrases like "too-much-to-think-about" */
.deliver-highlight {
    color: var(--color-highlight); /* Use your teal color */
    font-weight: 600;
}

@media (min-width: 1071px) {
    .order-belakang {
        order: 1;
    }
}

@media (max-width: 768px) {
    .project-meta {
        gap: 1rem; /* Kurangi gap di layar kecil */
    }

    .project-meta__item {
        width: 100%;
    }

    .project-meta__tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .process-card,
    .process-card.miring-kiri {
        transform: rotate(-1deg) scale(0.8);
    }
    
    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .define-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .define-icon img {
        width: 250px;
    }

    .define-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .define-description {
        font-size: 16px;
    }

    .develop-container{
        gap: 1rem;
    }

    .develop-wrapper {
        flex-direction: column;
    }

    .develop-image-column {
        display: none;
    }

    .develop-wrapper:first-of-type .develop-text-column {
        order: 1;
    }

    .develop-wrapper:first-of-type .develop-image-column {
        order: 2;
    }

    .mockup-wrapper,
    .phone-mockup {
        height: auto;
    }
    .phone-mockup {
        max-width: 400px;
    }

    .feedback-section {
        padding: 3rem 0;
    }

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

    .feedback-card:hover {
        transform: none;
    }
}