body {
    --color-highlight: #ffc107; 
}

.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);
}

.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);
}

.pawspa-link {
    color: var(--color-primary-teal);
    font-weight: 700;
}

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

.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;
}

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

.persona-container {
    display: flex;
    gap: 4rem;
    align-items: stretch; 
}

.persona-details {
    flex: 2;
}

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

.highlight {
    color: var(--color-highlight);
}

.content-subtitle {
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.persona-cards-container {
    display: flex;
    gap: 1.5rem;
}

.info-card {
    flex: 1;
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius-normal);
    padding: 1.5rem;
    background-color: var(--color-background-light);
    transition: transform 0.3s ease;
}

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

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 7px 20px;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
    background-color: var(--color-primary-teal); 
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.info-card-header object {
    fill: #ffffff;
    width: 24px;
    height: 24px;
    color: white;
}

.info-card-list {
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.info-card-list li {
    margin-bottom: 1rem;
}

.persona-profile-wrapper {
    flex: 1;
    position: relative;
    padding-left: 2rem;
}

.vertical-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    color: var(--color-border);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.profile-card {
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-normal);
    padding: 1.5rem;
    text-align: center;
    padding-top: 90px;
    border: 2px dashed var(--color-primary-teal);
    box-sizing: border-box;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--color-white);
    box-shadow: var(--box-shadow);
    margin-top: -4rem;
}

.profile-name {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-highlight);
}

.profile-age {
    margin: 0 0 1.5rem 0;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 14px;
}

.profile-info-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
}

.profile-info-list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.profile-info-list strong {
    font-weight: 600;
    color: var(--color-text-dark);
}

.profile-info-list span {
    color: var(--color-text-light);
}

.problem-statement-section {
    --color-highlight: #F59E0B; 
    background-color: var(--color-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

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

.problem-statement-icon {
    flex-shrink: 0;
}

.problem-statement-icon img {
    width: 200px;
    height: auto;
}

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

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

.section-title .highlight {
    color: var(--color-highlight);
}

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

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

.problem-statement-content .background-text {
    bottom: 0;
    right: 0;
}

.story-container .background-text-ideate {
    text-align: center;
    position: relative;
    z-index: 0;
}

.feedback-container .background-text-testing {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 800;
}

.story-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% );
}

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

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

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

.story-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;
}

.story-image-column img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-normal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: block;
}

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

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

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

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

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

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

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

.prototype-section {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--color-white);
}

.prototype-header {
    margin: 0 auto 3rem auto;
}

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

.mockup-wrapper {
    margin-bottom: 3rem;
    height: 700px;
}

.phone-mockup {
    height: 100%;
    margin: 0 auto;
}

.prototype-link {
    font-size: 0.875rem;
}

.prototype-link a {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.prototype-link a:hover {
    color: var(--color-text-dark);
}

.prototype-link .frame-info {
    color: var(--color-text-light);
    font-weight: 400;
}

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

.feedback-header {
    position: relative;
    z-index: 1;
}

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

.feedback-intro {
    text-align: justify;
    margin: 0 auto 1rem auto;
    position: relative;
    z-index: 1;
}

.feedback-grid {
    margin-top: 0.1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feedback-card {
    border: 2px dashed var(--color-primary-teal);
    border-radius: var(--border-radius-normal);
    padding: 1.5rem 2rem;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.feedback-card h4 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.feedback-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

.final-part-section {
    padding: 8rem 0;
}

.final-part-container {
    text-align: center;
    margin: 0 auto;
}

.final-part-title {
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .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;
    }

    .persona-title { order: 1; }
    .content-subtitle { order: 2; }
    .persona-description { order: 3; }

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

    .persona-container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .persona-profile-wrapper {
        order: 4;
        width: 100%;
        max-width: 400px;
        padding-left: 0;
    }
    .profile-card:hover {
        transform: none;
    }
    .vertical-text {
        display: none;
    }

    .persona-cards-container {
        flex-direction: column;
        order: 5;
    }

    .persona-details {
        display: contents;
    }

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

    .problem-statement-icon img {
        width: 150px;
    }

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

    .section-description {
        font-size: 16px;
        text-align: left;
    }

    .background-text {
        display: none;
    }

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

    .story-image-column {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .story-wrapper:first-of-type .story-image-column {
        order: 2;
        /* [DIHAPUS] Baris ini menyebabkan ruang kosong yang besar */
        /* padding-bottom: 500px; */
    }

    .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;
    }
}