/* ==========================================================
   DULUINNOVATION HOMEPAGE — din- prefix
   ========================================================== */

:root {
    --din-primary-500: #155eef;
    --din-primary-800: #0a3995;
    --din-accent-blue: #0e51d4;
    --din-accent-green: #74ec94;
    --din-ring-color: rgba(159, 224, 201, 1);
}

/* Navbar override — the hero on this page is light, so the site-wide
   white nav-link color (stylev1.css) is invisible here. */
header.header--duluinnovation #header-sticky .header-bottom__main-menu nav ul li a,
header.header--duluinnovation .header-bottom__main-menu nav ul li a {
    color: #1f2d3d;
}

header.header--duluinnovation #header-sticky .header-bottom__main-menu nav ul li:hover > a,
header.header--duluinnovation .header-bottom__main-menu nav ul li:hover > a {
    color: var(--din-primary-500);
}

/* Page wrapper — single full-page background layer.
   Guide (homepage_guideline.png 2880×9464) black-line bands:
   hero 0–1328 | tentang 1328–2118 | hadiah 2118–3510 |
   program 3510–5006 | benefit 5006–6144 | faq 6144–7285 | cta+ 7285–9464 */
.din-page {
    --din-guide-w: 2880;
    --din-band-hero: 1328;
    --din-band-tentang: 790;
    --din-band-hadiah: 1392;
    --din-band-program: 1496;
    --din-band-benefit: 1138;
    --din-band-faq: 1141;
    --din-unit: calc(100cqw / var(--din-guide-w));

    container-type: inline-size;
    container-name: din-page;
    background-color: #ffffff;
    background-image: url("../img/duluinnovation/homepage.webp");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

/* Hero — tinggi mengikuti band guide, bukan 100vh (itu penyebab drift) */
.din-homepage-section {
    background: transparent;
    box-shadow: none;
    padding: 124px 0 24px;
    min-height: calc(var(--din-unit) * var(--din-band-hero));
    height: calc(var(--din-unit) * var(--din-band-hero));
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.din-homepage-section > .container {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
}

.din-homepage-section .din-hero-banner {
    max-height: 100%;
    width: 100%;
}

.din-hero-bottom-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

/* Banner layout */
.din-hero-banner {
    max-width: 1280px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    gap: 32px;
    position: relative;
}

/* Right — illustration, digedein & sedikit digeser ke kiri */
.din-hero-visual {
    flex: 0 0 auto;
    width: min(520px, 42cqw);
    height: min(520px, 42cqw);
    max-height: calc(100% - 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    margin-right: -24px;
    margin-left: -20px;
}

.din-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(10, 57, 149, 0.12));
}

/* Left — text content */
.din-hero-content {
    flex: 1;
    min-width: 0;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Heading */
.din-hero-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 0%;
    margin: 0;
}

/* First line: "Tunjukkan Potensimu di" */
.din-hero-title--text {
    display: block;
    font-size: 36px;
    line-height: 44px;
    font-weight: 400;
    color: #333333;
}

/* DULUINNOVATION accent — blue → green gradient */
.din-hero-title--accent {
    display: block;
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    background: linear-gradient(180deg, var(--din-accent-blue) 0%, var(--din-accent-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Description: Inter Regular 20/30 */
.din-hero-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #606060;
    margin: 0;
    max-width: 520px;
}

/* CTA Button: primary blue gradient pill */
.din-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(102deg, var(--din-primary-500) 0%, var(--din-primary-800) 100%);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 24px;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
    border: none;
    max-width: fit-content;
    margin-top: 4px;
}

.din-hero-cta__icon {
    flex-shrink: 0;
}

.din-hero-cta:hover {
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(10, 57, 149, 0.35);
    transform: translateY(-2px);
}

/* ---- Responsive Hero ---- */

@media (max-width: 1360px) {
    .din-hero-banner {
        gap: 24px;
    }

    .din-hero-visual {
        width: 480px;
        height: 480px;
        margin-right: -12px;
        margin-left: -12px;
    }
}

@media (max-width: 1280px) {
    .din-hero-visual {
        width: 420px;
        height: 420px;
        margin-right: 0;
        margin-left: 0;
    }

    .din-hero-title--text {
        font-size: 32px;
        line-height: 40px;
    }

    .din-hero-title--accent {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 992px) {
    .din-homepage-section {
        padding: 100px 0 24px;
        height: auto;
        min-height: 0;
    }

    .din-hero-banner {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
        align-items: center;
    }

    .din-hero-visual {
        width: 300px;
        height: 300px;
        max-height: none;
    }

    .din-hero-content {
        width: 100%;
        max-width: 580px;
        align-items: center;
    }

    .din-hero-cta {
        margin-left: auto;
        margin-right: auto;
    }

    .din-hero-desc {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .din-hero-visual {
        width: 260px;
        height: 260px;
    }

    .din-hero-title--text {
        font-size: 28px;
        line-height: 36px;
    }

    .din-hero-title--accent {
        font-size: 34px;
        line-height: 42px;
    }
}

@media (max-width: 576px) {
    .din-homepage-section {
        padding: 80px 0 16px;
    }

    .din-hero-banner {
        gap: 24px;
    }

    .din-hero-visual {
        width: 220px;
        height: 220px;
    }

    .din-hero-title--text {
        font-size: 24px;
        line-height: 32px;
    }

    .din-hero-title--accent {
        font-size: 28px;
        line-height: 36px;
    }

    .din-hero-desc {
        font-size: 15px;
        line-height: 22px;
    }

    .din-hero-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .din-homepage-section {
        padding: 72px 0 32px;
    }

    .din-hero-banner {
        gap: 20px;
    }

    .din-hero-visual {
        width: 180px;
        height: 180px;
    }

    .din-hero-title--text {
        font-size: 20px;
        line-height: 28px;
    }

    .din-hero-title--accent {
        font-size: 24px;
        line-height: 32px;
    }

    .din-hero-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .din-hero-cta {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ==========================================================
   SECTION 2 — Tentang Duluinnovation
   ========================================================== */

.din-info-section {
    background: transparent;
    padding: 40px 0;
    position: relative;
    z-index: 0;
    overflow: visible;
    margin-top: 0;
    min-height: calc(var(--din-unit) * var(--din-band-tentang));
    height: calc(var(--din-unit) * var(--din-band-tentang));
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.din-info-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    min-height: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

/* --- Left: Summit logo (full, uncropped) --- */
.din-tentang-visual {
    flex: 0 1 46%;
    width: auto;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.din-tentang-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: calc(var(--din-unit) * var(--din-band-tentang) - 48px);
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
    display: block;
}

/* --- Right: Content --- */
.din-tentang-content-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.din-tentang-content {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.din-tentang-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin: 0;
}

.din-tentang-heading {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #333333;
    margin: 0;
}

.din-tentang-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #606060;
    margin: 0;
}

.din-tentang-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 48px;
    margin-top: 8px;
}

.din-tentang-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.din-tentang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.din-tentang-btn--outline {
    background: transparent;
    border: 1.5px solid #0c45b5;
    color: #0c45b5;
}

.din-tentang-btn--outline:hover {
    background: rgba(12, 69, 181, 0.06);
    color: #0c45b5;
}

.din-tentang-btn--primary {
    background: linear-gradient(90deg, #447ef2 0%, #0c45b5 100%);
    border: none;
    color: #ffffff;
}

.din-tentang-btn--primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(12, 69, 181, 0.28);
}

.din-tentang-meta__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.din-tentang-meta__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(21, 94, 239, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--din-primary-500);
    flex-shrink: 0;
}

.din-tentang-meta__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.din-tentang-meta__label {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.din-tentang-meta__value {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #606060;
}

/* ---- Responsive Section 2 (Tentang) ---- */

@media (max-width: 1280px) {
    .din-info-wrapper {
        padding: 0 24px;
        gap: 40px;
    }

    .din-tentang-visual {
        max-width: 440px;
    }
}

@media (max-width: 992px) {
    .din-info-section {
        padding: 48px 0 56px;
        margin-top: 0;
        height: auto;
        min-height: 0;
    }

    .din-info-wrapper {
        flex-direction: column;
        gap: 28px;
        align-items: stretch;
        text-align: left;
        min-height: 0;
        padding: 0 24px;
    }

    .din-tentang-visual {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        justify-content: center;
    }

    .din-tentang-img {
        max-width: 100%;
        margin: 0 auto;
    }

    .din-tentang-content-wrap {
        padding: 0;
        justify-content: flex-start;
    }

    .din-tentang-content {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .din-info-section {
        padding: 40px 0 48px;
        margin-top: 0;
    }

    .din-info-wrapper {
        padding: 0 20px;
        gap: 24px;
    }

    .din-tentang-visual {
        max-width: 340px;
    }

    .din-tentang-logo {
        height: 40px;
    }

    .din-tentang-heading {
        font-size: 22px;
        line-height: 30px;
    }

    .din-tentang-meta {
        gap: 20px 32px;
    }

    .din-tentang-meta__icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .din-info-section {
        padding: 32px 0 40px;
    }

    .din-info-wrapper {
        padding: 0 16px;
    }

    .din-tentang-visual {
        max-width: 280px;
    }

    .din-tentang-desc {
        font-size: 15px;
        line-height: 22px;
    }

    .din-tentang-meta__label {
        font-size: 15px;
        line-height: 22px;
    }

    .din-tentang-meta__value {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 400px) {
    .din-info-section {
        padding: 28px 0 36px;
    }

    .din-tentang-visual {
        max-width: 240px;
    }

    .din-tentang-meta {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================================================
   Section 3: Tentang Program — ring ketengah di belakang robot
   ========================================================== */
.din-about-section {
    width: 100%;
    background: transparent;
    position: relative;
    z-index: 3;
    overflow: visible;
    min-height: calc(var(--din-unit) * var(--din-band-program));
    height: calc(var(--din-unit) * var(--din-band-program));
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.din-about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 40px 40px 24px;
    position: relative;
    z-index: 2;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.din-about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    overflow: visible;
}

.din-about-text {
    flex: 1;
    min-width: 0;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.din-about-heading {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0%;
    color: #333333;
    margin: 0;
}

.din-about-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #606060;
    margin: 0;
}

/* CTA Button — same gradient pill as hero */
.din-about-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(102deg, var(--din-primary-500) 0%, var(--din-primary-800) 100%);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 24px;
    border: none;
    align-self: flex-start;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.din-about-cta:hover {
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(10, 57, 149, 0.35);
    transform: translateY(-2px);
}

.din-about-imgbox-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    margin-left: -16px;
}

.din-about-imgbox {
    width: min(560px, 40cqw);
    height: min(560px, 40cqw);
    max-height: calc(100cqw * var(--din-band-program) / var(--din-guide-w) - 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Ring/radar ketengah tepat di belakang robot */
.din-about-imgbox::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: url("../img/duluinnovation/bg_ring_about.png") no-repeat center / contain;
    mix-blend-mode: screen;
    opacity: 0.95;
    z-index: 0;
    pointer-events: none;
}

.din-about-imgbox-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* ---- Responsive Section 3 ---- */
@media (max-width: 1280px) {
    .din-about-inner {
        padding: 32px 32px 32px 16px;
    }

    .din-about-imgbox {
        width: min(480px, 38cqw);
        height: min(480px, 38cqw);
    }

    .din-about-imgbox-wrap {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .din-about-section {
        height: auto;
        min-height: 0;
    }

    .din-about-inner {
        padding: 60px 40px;
    }

    .din-about-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .din-about-text {
        width: 100%;
        max-width: 600px;
        text-align: center;
        align-items: center;
    }

    .din-about-heading {
        font-size: 26px;
        line-height: 36px;
        max-width: 100%;
    }

    .din-about-cta {
        align-self: center;
    }

    .din-about-imgbox {
        width: 420px;
        height: 420px;
    }

    .din-about-imgbox::before {
        width: 140%;
        height: 140%;
    }

    .din-about-imgbox-wrap {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .din-about-inner {
        padding: 60px 24px;
    }

    .din-about-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .din-about-imgbox {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 576px) {
    .din-about-inner {
        padding: 40px 16px;
    }

    .din-about-heading {
        font-size: 20px;
        line-height: 28px;
    }

    .din-about-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .din-about-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .din-about-imgbox {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 400px) {
    .din-about-inner {
        padding: 32px 12px;
    }

    .din-about-heading {
        font-size: 18px;
        line-height: 26px;
    }

    .din-about-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .din-about-imgbox {
        max-width: 220px;
    }
}

/* ==========================================================
   Section 4: Benefit untuk Peserta
   ========================================================== */
.din-benefit-section {
    width: 100%;
    background: transparent;
    position: relative;
    z-index: 4;
    overflow: visible;
    min-height: calc(var(--din-unit) * var(--din-band-benefit));
    height: calc(var(--din-unit) * var(--din-band-benefit));
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.din-benefit-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.din-benefit-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.din-benefit-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: normal;
    color: #333333;
    margin: 0;
}

.din-benefit-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #606060;
    margin: 0;
}

.din-benefit-grid {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.din-benefit-item {
    flex: 1;
    min-width: 0;
    padding: 20px;
    border-radius: 24px;
    background: #f8fafc;
    border: 3px solid var(--din-primary-500);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: visible;
    position: relative;
}

.din-benefit-item--green {
    border-color: #4ad26e;
}

.din-benefit-item__watermark {
    position: absolute;
    top: -20%;
    left: -8%;
    width: 60%;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
}

.din-benefit-item__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.din-benefit-item__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.din-benefit-item__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin: 0;
}

.din-benefit-item__desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #606060;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ---- Responsive Section 4 ---- */
@media (max-width: 1280px) {
    .din-benefit-inner {
        padding: 28px 48px;
    }
}

@media (max-width: 992px) {
    .din-benefit-section {
        height: auto;
        min-height: 0;
    }

    .din-benefit-inner {
        padding: 60px 40px;
        gap: 40px;
    }

    .din-benefit-title {
        font-size: 28px;
    }

    .din-benefit-grid {
        flex-wrap: wrap;
    }

    .din-benefit-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .din-benefit-inner {
        padding: 60px 24px;
        gap: 36px;
    }

    .din-benefit-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .din-benefit-inner {
        padding: 40px 16px;
        gap: 24px;
    }

    .din-benefit-title {
        font-size: 22px;
    }

    .din-benefit-grid {
        flex-direction: column;
    }

    .din-benefit-item {
        flex: 1 1 auto;
        padding: 20px;
        gap: 24px;
    }
}

@media (max-width: 400px) {
    .din-benefit-inner {
        padding: 32px 12px;
        gap: 20px;
    }

    .din-benefit-title {
        font-size: 20px;
    }

    .din-benefit-item__icon {
        width: 64px;
        height: 64px;
    }
}

/* ==========================================================
   Section 5: FAQ
   ========================================================== */

.din-faq-section {
    background: transparent;
    padding: 36px 0;
    position: relative;
    z-index: 4;
    overflow: visible;
    min-height: calc(var(--din-unit) * var(--din-band-faq));
    /* height auto: accordion terbuka boleh memanjang tanpa memotong konten */
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.din-faq-section .container {
    position: relative;
    z-index: 1;
}

.din-faq-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
}

.din-faq-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.din-faq-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.din-faq-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: normal;
    color: #333333;
    margin: 0;
}

.din-faq-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #606060;
    margin: 0;
}

.din-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.din-faq-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 1px 1px 24px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.din-faq-item:hover {
    box-shadow: 1px 4px 28px 0px rgba(0, 0, 0, 0.1);
}

.din-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.din-faq-item__question::-webkit-details-marker {
    display: none;
}

.din-faq-item__chevron {
    flex-shrink: 0;
    color: #606060;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.din-faq-item[open] .din-faq-item__chevron,
.din-faq-item.is-open .din-faq-item__chevron {
    transform: rotate(180deg);
}

.din-faq-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.din-faq-item.is-open .din-faq-item__panel {
    grid-template-rows: 1fr;
}

.din-faq-item__panel-inner {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        opacity 0.3s ease 0.05s,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.din-faq-item.is-open .din-faq-item__panel-inner {
    opacity: 1;
    transform: translateY(0);
}

.din-faq-item__answer {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #606060;
    margin: 0;
    padding: 0 16px 20px;
}

@media (prefers-reduced-motion: reduce) {
    .din-faq-item,
    .din-faq-item__panel,
    .din-faq-item__panel-inner,
    .din-faq-item__chevron {
        transition: none;
    }
}

.din-faq-visual {
    flex: 0 0 auto;
    width: min(360px, 28cqw);
    max-height: calc(var(--din-unit) * var(--din-band-faq) - 48px);
    overflow: visible;
    position: relative;
    z-index: 2;
}

.din-faq-mascot {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transform: scale(1.08);
    transform-origin: bottom center;
}

/* ---- Responsive FAQ ---- */

@media (max-width: 992px) {
    .din-faq-section {
        padding: 40px 0;
        height: auto;
        min-height: 0;
    }

    .din-faq-title {
        font-size: 26px;
    }

    .din-faq-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .din-faq-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .din-faq-section {
        padding: 28px 0 32px;
    }

    .din-faq-title {
        font-size: 22px;
    }

    .din-faq-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .din-faq-wrapper {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .din-faq-section {
        padding: 32px 0;
    }

    .din-faq-title {
        font-size: 22px;
    }

    .din-faq-item__question {
        padding: 16px;
        font-size: 14px;
    }

    .din-faq-item__answer {
        font-size: 13px;
        padding: 0 16px 16px;
    }

    .din-faq-visual {
        width: 200px;
    }
}

/* ==========================================================
   Section Hadiah — Prize Section
   ========================================================== */

.din-hadiah-section {
    background: transparent;
    padding: 24px 0 32px;
    position: relative;
    overflow: visible;
    margin-top: 0;
    min-height: calc(var(--din-unit) * var(--din-band-hadiah));
    height: calc(var(--din-unit) * var(--din-band-hadiah));
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.din-hadiah-section .container {
    overflow: visible;
    position: relative;
    width: 100%;
}

/* Header: title + total prize */
.din-hadiah-header {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
}

.din-hadiah-header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
}

.din-hadiah-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0%;
    text-align: center;
    color: #333333;
    margin: 0;
}

.din-hadiah-total {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0%;
    text-align: center;
    background: linear-gradient(102deg, var(--din-primary-500) 0%, #1fc8db 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

/* Main outer card — podium style */
.din-hadiah-card {
    max-width: 1200px;
    margin: 56px auto 0;
    border-radius: 96px 96px 0 0;
    padding: 108px 40px 0;
    background: radial-gradient(61.06% 56.42% at 50% 70.83%, #2ebb8a 0%, #0c45b5 100%);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.din-hadiah-mascot {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

/* Row of 3 prize cards — side cards nempel bawah */
.din-hadiah-prizes {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding-top: 24px;
}

/* Left / Right side cards (2nd and 3rd place) */
.din-hadiah-side-card {
    flex: 0 0 336px;
    max-width: 336px;
    min-height: 128px;
    border-radius: 36px 36px 0 0;
    padding: 28px 28px 32px;
    background: linear-gradient(0deg, #447ef2 10%, #51e779 100%);
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Card surface layer above the badge (creates "badge behind card" look) */
.din-hadiah-side-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    z-index: 1;
    pointer-events: none;
}

/* Keep side-card content above the surface layer */
.din-hadiah-side-card > :not(.din-hadiah-badge) {
    position: relative;
    z-index: 2;
}

.din-hadiah-side-label {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-align: center;
}

.din-hadiah-side-amount {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* Badge number circle — default: blue → green (for 2nd & 3rd place) */
.din-hadiah-badge {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    border-radius: 48px;
    background: linear-gradient(180deg, #34d399 0%, #155eef 100%);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 68px;
    text-align: center;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
    z-index: 0;
    display: block;
}

/* Center (1st place) wrapper — di atas mascot */
.din-hadiah-center-wrap {
    flex: 0 0 384px;
    max-width: 384px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: flex-end;
    margin-top: 0;
    padding-top: 0;
    z-index: 3;
    margin-bottom: 0;
}

/* Badge override for 1st place — gold */
.din-hadiah-badge--center {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 36px;
    top: -65px;
    background: linear-gradient(180deg, #e1c300 0%, #d4a305 100%);
}

/* Center top card — yellow gradient, fully rounded */
.din-hadiah-center-top {
    width: 100%;
    min-height: 112px;
    border-radius: 36px;
    padding: 20px 16px;
    background: linear-gradient(180deg, #ffa72b 0%, #ffed2b 99.56%);
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.din-hadiah-center-label {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: rgba(60, 35, 0, 0.85);
    margin: 0;
    text-align: center;
}

.din-hadiah-center-amount {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0%;
    color: #513e00;
    margin: 0;
    text-align: center;
}

/* Center wrapper card — satu kartu kuning penuh seperti mockup.
   Bawah rata (tanpa rounded) biar nempel mepet ke dasar podium. */
.din-hadiah-center-bottom {
    width: 100%;
    border-radius: 36px 36px 0 0;
    margin-top: 0;
    padding: 20px 20px 28px;
    background: linear-gradient(180deg, #ffa72b 0%, #ffed2b 99.56%);
    border: none;
    position: relative;
    z-index: 1;
    overflow: visible;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
}

/* Card surface layer above the badge */
.din-hadiah-center-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    z-index: 1;
    pointer-events: none;
}

/* Keep wrapper content above the surface layer */
.din-hadiah-center-bottom > :not(.din-hadiah-badge) {
    position: relative;
    z-index: 2;
}

/* Inner prize block — no separate card chrome */
.din-hadiah-center-bottom .din-hadiah-center-top {
    margin-bottom: 12px;
    min-height: 0;
    border-radius: 0;
    padding: 8px 0 0;
    background: transparent;
    box-shadow: none;
}

.din-hadiah-center-list {
    list-style: disc;
    padding: 0 20px 0 44px;
    margin: 0;
    width: 100%;
}

.din-hadiah-center-list li {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: justify;
    color: rgba(40, 25, 0, 0.9);
    margin-bottom: 10px;
}

/* ---- Responsive Section Hadiah ---- */

@media (max-width: 1280px) {
    .din-hadiah-card {
        padding: 96px 32px 0;
    }

    .din-hadiah-side-card {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .din-hadiah-center-wrap {
        flex: 0 0 320px;
        max-width: 320px;
    }
}

/* ≤992px — tetap 3 kolom, cukup skalakan ukuran */
@media (max-width: 992px) {
    .din-hadiah-section {
        height: auto;
        min-height: 0;
        display: block;
    }

    .din-hadiah-card {
        padding: 88px 24px 0;
    }

    .din-hadiah-mascot {
        width: 110px;
        top: 10px;
    }

    /* Prizes tetap row, gunakan flex: 1 agar proporsional */
    .din-hadiah-prizes {
        gap: 16px;
        padding-top: 48px;
    }

    .din-hadiah-side-card {
        flex: 1 1 0;
        max-width: none;
        min-width: 0;
        padding: 20px 16px;
        border-radius: 28px 28px 0 0;
    }

    .din-hadiah-center-wrap {
        flex: 1.3 1 0;
        max-width: none;
        min-width: 0;
        margin-top: 20px;
    }

    .din-hadiah-subtitle {
        font-size: 26px;
        line-height: 34px;
    }

    .din-hadiah-total {
        font-size: 48px;
        line-height: 56px;
    }

    .din-hadiah-side-amount {
        font-size: 28px;
        line-height: 34px;
    }

    .din-hadiah-center-amount {
        font-size: 28px;
        line-height: 36px;
    }

    .din-hadiah-center-list {
        padding: 0 12px 0 32px;
    }

    .din-hadiah-center-list li {
        font-size: 13px;
        line-height: 20px;
    }
}

/* ≤768px — 3 kolom masih ada, semua diperkecil lagi */
@media (max-width: 768px) {
    .din-hadiah-section {
        padding: 48px 0 64px;
        height: auto;
        min-height: 0;
    }

    .din-hadiah-mascot {
        width: 90px;
        top: 8px;
    }

    .din-hadiah-card {
        padding: 72px 16px 0;
        border-radius: 64px 64px 0 0;
        margin-top: 40px;
    }

    .din-hadiah-prizes {
        gap: 10px;
        padding-top: 42px;
    }

    .din-hadiah-side-card {
        padding: 16px 10px;
        border-radius: 20px 20px 0 0;
    }

    .din-hadiah-side-label {
        font-size: 11px;
        line-height: 16px;
    }

    .din-hadiah-side-amount {
        font-size: 20px;
        line-height: 26px;
    }

    .din-hadiah-badge {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 22px;
        top: -42px;
    }

    .din-hadiah-badge--center {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 22px;
        top: -42px;
    }

    .din-hadiah-center-top {
        border-radius: 20px;
        min-height: 80px;
        padding: 14px 8px;
    }

    .din-hadiah-center-bottom {
        border-radius: 20px;
        padding: 0 0 12px;
    }

    .din-hadiah-center-label {
        font-size: 11px;
        line-height: 16px;
    }

    .din-hadiah-center-amount {
        font-size: 22px;
        line-height: 28px;
    }

    .din-hadiah-center-list {
        padding: 0 8px 0 22px;
    }

    .din-hadiah-center-list li {
        font-size: 11px;
        line-height: 17px;
        margin-bottom: 6px;
    }

    .din-hadiah-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .din-hadiah-total {
        font-size: 36px;
        line-height: 44px;
    }
}

/* ≤576px — masih 3 kolom, kompak */
@media (max-width: 576px) {
    .din-hadiah-section {
        padding: 32px 0 48px;
    }

    .din-hadiah-mascot {
        width: 72px;
        top: 8px;
    }

    .din-hadiah-subtitle {
        font-size: 13px;
        line-height: 18px;
    }

    .din-hadiah-total {
        font-size: 26px;
        line-height: 32px;
    }

    .din-hadiah-card {
        padding: 64px 10px 0;
        border-radius: 48px 48px 0 0;
        margin-top: 32px;
    }

    .din-hadiah-prizes {
        gap: 6px;
        padding-top: 36px;
    }

    .din-hadiah-side-card {
        padding: 12px 8px;
        border-radius: 16px 16px 0 0;
    }

    .din-hadiah-side-label {
        font-size: 10px;
        line-height: 14px;
    }

    .din-hadiah-side-amount {
        font-size: 16px;
        line-height: 20px;
    }

    .din-hadiah-badge {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 18px;
        top: -34px;
    }

    .din-hadiah-badge--center {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 18px;
        top: -34px;
    }

    .din-hadiah-center-top {
        border-radius: 16px;
        min-height: 64px;
        padding: 10px 6px;
    }

    .din-hadiah-center-bottom {
        border-radius: 16px;
        padding: 0 0 10px;
    }

    .din-hadiah-center-label {
        font-size: 10px;
        line-height: 14px;
    }

    .din-hadiah-center-amount {
        font-size: 17px;
        line-height: 22px;
    }

    .din-hadiah-center-list {
        padding: 0 6px 0 16px;
    }

    .din-hadiah-center-list li {
        font-size: 10px;
        line-height: 15px;
        margin-bottom: 4px;
    }
}

/* ≤400px — paling mungil, masih 3 kolom */
@media (max-width: 400px) {
    .din-hadiah-section {
        padding: 24px 0 36px;
    }

    .din-hadiah-mascot {
        width: 56px;
        top: 6px;
    }

    .din-hadiah-subtitle {
        font-size: 11px;
        line-height: 16px;
    }

    .din-hadiah-total {
        font-size: 22px;
        line-height: 28px;
    }

    .din-hadiah-card {
        padding: 52px 8px 0;
        border-radius: 36px 36px 0 0;
        margin-top: 28px;
    }

    .din-hadiah-prizes {
        gap: 4px;
        padding-top: 28px;
    }

    .din-hadiah-side-card {
        padding: 10px 6px;
        border-radius: 12px 12px 0 0;
    }

    .din-hadiah-side-label {
        font-size: 9px;
        line-height: 13px;
    }

    .din-hadiah-side-amount {
        font-size: 14px;
        line-height: 18px;
    }

    .din-hadiah-badge,
    .din-hadiah-badge--center {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 14px;
        top: -26px;
    }

    .din-hadiah-center-top {
        border-radius: 12px;
        min-height: 52px;
        padding: 8px 4px;
    }

    .din-hadiah-center-bottom {
        border-radius: 12px;
        padding: 0 0 8px;
    }

    .din-hadiah-center-label {
        font-size: 9px;
        line-height: 13px;
    }

    .din-hadiah-center-amount {
        font-size: 14px;
        line-height: 18px;
    }

    .din-hadiah-center-list {
        padding: 0 4px 0 12px;
    }

    .din-hadiah-center-list li {
        font-size: 9px;
        line-height: 13px;
        margin-bottom: 3px;
    }
}

/* ==========================================================
   Responsive ≤1199px — lepas guide-lock desktop.
   Background art proporsional desktop tidak cocok untuk konten
   bertumpuk: pakai aksen soft + spacing rapat supaya rapi.
   ========================================================== */
@media (max-width: 1199px) {
    .din-page {
        background-color: #f7fafc;
        background-image:
            linear-gradient(180deg, rgba(247, 250, 252, 0.55) 0%, rgba(255, 255, 255, 0.92) 42%, #ffffff 100%),
            url("../img/duluinnovation/homepage.webp");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 160% auto;
    }

    .din-homepage-section,
    .din-info-section,
    .din-hadiah-section,
    .din-about-section,
    .din-benefit-section,
    .din-faq-section {
        height: auto;
        min-height: 0;
        display: block;
    }

    .din-homepage-section {
        padding: 96px 20px 32px;
    }

    .din-homepage-section > .container {
        height: auto;
        display: block;
    }

    .din-homepage-section .din-hero-banner {
        max-height: none;
    }

    .din-hero-visual,
    .din-about-imgbox,
    .din-faq-visual,
    .din-tentang-img {
        max-height: none;
    }

    .din-info-section {
        padding: 32px 0 40px;
    }

    .din-info-wrapper {
        gap: 24px;
        padding: 0 20px;
    }

    .din-hadiah-section {
        padding: 24px 16px 40px;
    }

    .din-hadiah-card {
        margin-top: 40px;
        padding: 88px 20px 0;
        border-radius: 72px 72px 0 0;
    }

    .din-hadiah-mascot {
        width: 120px;
        top: 10px;
    }

    .din-about-section .din-about-inner {
        padding: 40px 20px;
    }

    .din-about-imgbox {
        width: min(360px, 70vw);
        height: min(360px, 70vw);
    }

    .din-benefit-section .din-benefit-inner {
        padding: 40px 20px;
        gap: 24px;
    }

    .din-faq-section {
        padding: 32px 0 40px;
    }

    .din-faq-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .din-faq-visual {
        display: none;
    }

    .din-faq-content {
        gap: 20px;
        padding: 0 16px;
    }
}

@media (max-width: 992px) {
    .din-page {
        background-size: 200% auto;
    }

    .din-homepage-section {
        padding: 88px 16px 28px;
    }

    .din-hero-banner {
        gap: 20px;
    }

    .din-hero-visual {
        width: 240px;
        height: 240px;
    }

    .din-info-section {
        padding: 28px 0 36px;
    }

    .din-tentang-visual {
        max-width: 280px;
    }

    .din-tentang-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .din-tentang-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .din-hadiah-header {
        margin-bottom: 8px;
    }

    .din-hadiah-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .din-hadiah-total {
        font-size: 36px;
        line-height: 44px;
    }

    .din-about-wrapper {
        gap: 28px;
    }

    .din-about-imgbox {
        width: min(280px, 65vw);
        height: min(280px, 65vw);
    }

    .din-benefit-item {
        padding: 18px;
        gap: 12px;
    }

    .din-benefit-item__icon {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 768px) {
    .din-page {
        background-color: #ffffff;
        background-image:
            radial-gradient(ellipse 90% 28% at 100% 0%, rgba(116, 236, 148, 0.22) 0%, transparent 70%),
            radial-gradient(ellipse 70% 24% at 0% 6%, rgba(68, 126, 242, 0.14) 0%, transparent 65%),
            radial-gradient(ellipse 80% 30% at 85% 55%, rgba(255, 167, 43, 0.1) 0%, transparent 70%),
            linear-gradient(180deg, #f7fafc 0%, #ffffff 28%, #f8fafc 70%, #eef7f2 100%);
        background-size: auto;
        background-position: top center;
    }

    .din-homepage-section {
        padding: 80px 16px 24px;
    }

    .din-hero-visual {
        width: 200px;
        height: 200px;
    }

    .din-hero-title--text {
        font-size: 22px;
        line-height: 30px;
    }

    .din-hero-title--accent {
        font-size: 26px;
        line-height: 34px;
    }

    .din-hero-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .din-info-section {
        padding: 24px 0 32px;
    }

    .din-tentang-visual {
        max-width: 220px;
    }

    .din-tentang-meta {
        gap: 12px;
    }

    .din-hadiah-section {
        padding: 20px 12px 32px;
    }

    .din-hadiah-card {
        margin-top: 32px;
        padding: 72px 12px 0;
        border-radius: 48px 48px 0 0;
    }

    .din-hadiah-mascot {
        width: 88px;
        top: 8px;
    }

    .din-hadiah-prizes {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding-top: 28px;
        padding-bottom: 16px;
    }

    .din-hadiah-side-card,
    .din-hadiah-center-wrap {
        width: 100%;
        max-width: none;
    }

    .din-hadiah-center-wrap {
        order: -1;
    }

    .din-hadiah-side-card {
        border-radius: 20px;
        padding: 20px 16px;
    }

    .din-hadiah-center-bottom {
        border-radius: 20px;
    }

    .din-about-section .din-about-inner {
        padding: 32px 16px;
    }

    .din-about-heading {
        font-size: 20px;
        line-height: 28px;
    }

    .din-about-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .din-about-imgbox {
        width: min(240px, 70vw);
        height: min(240px, 70vw);
    }

    .din-benefit-section .din-benefit-inner {
        padding: 32px 16px;
        gap: 20px;
    }

    .din-benefit-title {
        font-size: 22px;
    }

    .din-benefit-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .din-benefit-grid {
        flex-direction: column;
        gap: 12px;
    }

    .din-benefit-item {
        flex: 1 1 auto;
        width: 100%;
    }

    .din-faq-section {
        padding: 24px 0 32px;
    }

    .din-faq-title {
        font-size: 22px;
    }

    .din-faq-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .din-faq-content {
        padding: 0 12px;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .din-homepage-section {
        padding: 72px 14px 20px;
    }

    .din-hero-banner {
        gap: 16px;
    }

    .din-hero-visual {
        width: 180px;
        height: 180px;
    }

    .din-hero-title--text {
        font-size: 20px;
        line-height: 28px;
    }

    .din-hero-title--accent {
        font-size: 24px;
        line-height: 32px;
    }

    .din-hero-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .din-hero-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .din-info-section {
        padding: 20px 0 28px;
    }

    .din-info-wrapper {
        padding: 0 14px;
        gap: 16px;
    }

    .din-tentang-visual {
        max-width: 180px;
    }

    .din-tentang-heading {
        font-size: 20px;
        line-height: 28px;
    }

    .din-tentang-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .din-hadiah-subtitle {
        font-size: 18px;
        line-height: 26px;
        padding: 0 8px;
    }

    .din-hadiah-total {
        font-size: 32px;
        line-height: 40px;
    }

    .din-hadiah-side-label,
    .din-hadiah-center-label {
        font-size: 12px;
        line-height: 18px;
    }

    .din-hadiah-side-amount,
    .din-hadiah-center-amount {
        font-size: 22px;
        line-height: 28px;
    }

    .din-hadiah-center-list li {
        font-size: 12px;
        line-height: 18px;
    }

    .din-about-imgbox {
        width: 200px;
        height: 200px;
    }

    .din-benefit-item__title {
        font-size: 16px;
        line-height: 24px;
    }

    .din-benefit-item__desc {
        font-size: 13px;
        line-height: 20px;
    }

    .din-faq-item__question {
        padding: 12px 14px;
        font-size: 13px;
        line-height: 20px;
    }
}

/* Debug overlay: ganti url ke homepage_guideline.png untuk cek garis hitam */
/* .din-page { background-image: url("../img/duluinnovation/homepage_guideline.png"); } */
