:root {
    --mk-green: #719e32;
    --mk-orange: #f09810;
    --mk-cream: #f8f6f0;
    --mk-dark: #44444a;
    --mk-dark-2: #2f3137;
    --mk-white: #ffffff;
    --mk-muted: #6a6a72;
    --mk-radius-md: 14px;
    --mk-radius-lg: 22px;
    --mk-shadow-soft: 0 10px 26px rgba(32, 34, 39, 0.08);
    --mk-shadow-card: 0 14px 34px rgba(32, 34, 39, 0.1);
}

.mekanisme-page {
    background: #ffffff;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.mekanisme-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
}

.mekanisme-head__kicker {
    font-family: "Poppins", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mk-orange);
    margin-bottom: 10px;
}

.mekanisme-head__title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--mk-dark);
    margin-bottom: 12px;
}

.mekanisme-head__desc {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--mk-muted);
}

.mekanisme-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.mekanisme-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.mekanisme-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(26, 28, 33, 0.86) 0%, rgba(26, 28, 33, 0.74) 48%, rgba(26, 28, 33, 0.62) 100%);
    z-index: 1;
}

.mekanisme-hero__content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding: 60px 0;
}

.mekanisme-hero__kicker {
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.mekanisme-hero__title {
    font-family: "Montserrat", sans-serif;
    color: var(--mk-white);
    font-size: 3.15rem;
    line-height: 1.17;
    font-weight: 800;
    margin-bottom: 18px;
}

.mekanisme-hero__desc {
    font-family: "Poppins", sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin-bottom: 28px;
}

.mekanisme-hero__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.btn--hero-primary,
.btn--hero-ghost {
    font-family: "Poppins", sans-serif;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--hero-primary {
    background: var(--mk-orange);
    color: #2c2d31;
    box-shadow: 0 10px 20px rgba(240, 152, 16, 0.32);
}

.btn--hero-primary:hover {
    transform: translateY(-2px);
    background: #e08c0f;
}

.btn--hero-ghost {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--mk-white);
    background: rgba(255, 255, 255, 0.06);
}

.btn--hero-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.mekanisme-hero__trust {
    display: inline-flex;
    gap: 8px;
}

.mekanisme-hero__trust-item {
    font-family: "Poppins", sans-serif;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.mekanisme-subnav {
    position: sticky;
    top: 76px;
    z-index: 60;
    background: rgba(248, 246, 240, 0.95);
    border-top: 1px solid rgba(68, 68, 74, 0.09);
    border-bottom: 1px solid rgba(68, 68, 74, 0.09);
    backdrop-filter: blur(8px);
}

.mekanisme-subnav__inner {
    display: flex;
    gap: 10px;
    padding: 12px 0;
}

.mekanisme-subnav__link {
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    color: #50525a;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mekanisme-subnav__link:hover,
.mekanisme-subnav__link.is-active {
    background: var(--mk-green);
    color: var(--mk-white);
}

.business-model-section,
.flow-section,
.terms-section,
.faq-section,
.mekanisme-cta-section {
    padding: 88px 0;
}

.business-model-section {
    background: #ffffff;
}

.model-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.model-card {
    border-radius: var(--mk-radius-lg);
    padding: 30px 24px;
    box-shadow: var(--mk-shadow-soft);
    border: 1px solid rgba(68, 68, 74, 0.08);
    background: #ffffff;
}

.model-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.model-card__title {
    font-family: "Montserrat", sans-serif;
    color: var(--mk-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.model-card__text {
    font-family: "Poppins", sans-serif;
    color: #61636c;
    line-height: 1.65;
    margin-bottom: 12px;
}

.model-card__list {
    margin: 0;
    padding-left: 16px;
    color: #50525c;
    font-family: "Poppins", sans-serif;
    font-size: 0.93rem;
    line-height: 1.6;
}

.model-card__list li {
    margin-bottom: 6px;
}

.model-card__note {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.83rem;
    background: rgba(240, 152, 16, 0.1);
    color: #6a4a12;
}

.model-card--green .model-card__icon {
    background: rgba(113, 158, 50, 0.14);
    color: var(--mk-green);
}

.model-card--orange .model-card__icon {
    background: rgba(240, 152, 16, 0.14);
    color: var(--mk-orange);
}

.model-card--dark {
    background: linear-gradient(145deg, #3a3d44, #2f3137);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.model-card--dark .model-card__icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.model-card--dark .model-card__title,
.model-card--dark .model-card__text,
.model-card--dark .model-card__list,
.model-card--dark .role-split__title {
    color: rgba(255, 255, 255, 0.92);
}

.role-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.role-split__title {
    font-family: "Montserrat", sans-serif;
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.flow-section {
    background: var(--mk-cream);
}

.flow-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.flow-timeline::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(113, 158, 50, 0.45), rgba(240, 152, 16, 0.55));
}

.flow-step {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(68, 68, 74, 0.1);
    box-shadow: var(--mk-shadow-soft);
    padding: 18px 16px 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 2;
}

.flow-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--mk-green);
    color: #ffffff;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    margin-bottom: 10px;
}

.flow-step__title {
    font-family: "Montserrat", sans-serif;
    color: var(--mk-dark);
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.flow-step__list {
    margin: 0;
    padding-left: 14px;
    font-family: "Poppins", sans-serif;
    color: #565964;
    font-size: 0.9rem;
    line-height: 1.56;
}

.flow-note {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #535661;
    background: #ffffff;
    border: 1px dashed rgba(113, 158, 50, 0.4);
    border-radius: 14px;
    padding: 14px 16px;
}

.terms-section {
    background: #ffffff;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.terms-card {
    background: var(--mk-cream);
    border-radius: 14px;
    border: 1px solid rgba(68, 68, 74, 0.08);
    padding: 16px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 6px 16px rgba(36, 39, 45, 0.05);
}

.terms-card__icon {
    color: var(--mk-green);
    font-size: 1.05rem;
    margin-top: 2px;
}

.terms-card p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #565964;
    font-size: 0.9rem;
    line-height: 1.58;
}

.faq-section {
    background: var(--mk-cream);
}

.faq-wrap {
    max-width: 980px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(68, 68, 74, 0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(36, 39, 45, 0.05);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--mk-dark);
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 18px 16px;
    font-family: "Poppins", sans-serif;
    color: #5f626d;
    font-size: 0.92rem;
    line-height: 1.65;
}

.mekanisme-cta-section {
    background: #ffffff;
}

.mekanisme-cta {
    background: linear-gradient(135deg, #3b3d43 0%, #2f3137 46%, #719e32 100%);
    border-radius: 24px;
    padding: 52px;
    color: #ffffff;
    box-shadow: var(--mk-shadow-card);
    position: relative;
    overflow: hidden;
}

.mekanisme-cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 152, 16, 0.25), rgba(240, 152, 16, 0));
    right: -120px;
    top: -100px;
}

.mekanisme-cta__kicker,
.mekanisme-cta__title,
.mekanisme-cta__desc,
.mekanisme-cta__actions {
    position: relative;
    z-index: 2;
}

.mekanisme-cta__kicker {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.82rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.86);
}

.mekanisme-cta__title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.mekanisme-cta__desc {
    font-family: "Poppins", sans-serif;
    max-width: 760px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}

.mekanisme-cta__actions {
    display: flex;
    gap: 10px;
}

.mekanisme-btn {
    border-radius: 999px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 12px 20px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mekanisme-btn:hover {
    transform: translateY(-2px);
}

.mekanisme-btn--primary {
    background: var(--mk-orange);
    color: #2d2f33;
}

.mekanisme-btn--light {
    background: #ffffff;
    color: #2d2f33;
}

.mekanisme-btn--ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.delay-1 {
    transition-delay: 0.12s;
}

.fade-up.delay-2 {
    transition-delay: 0.22s;
}

.fade-up.delay-3 {
    transition-delay: 0.32s;
}

.fade-up.delay-4 {
    transition-delay: 0.42s;
}

.fade-up.delay-5 {
    transition-delay: 0.52s;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1279px) {
    .container {
        padding: 0 24px;
    }

    .mekanisme-hero {
        min-height: 70vh;
    }

    .mekanisme-hero__content {
        max-width: 680px;
        padding: 52px 0;
    }

    .mekanisme-hero__title {
        font-size: 2.78rem;
    }

    .mekanisme-head {
        margin-bottom: 36px;
    }

    .mekanisme-head__title {
        font-size: 2.15rem;
    }

    .business-model-section,
    .flow-section,
    .terms-section,
    .faq-section,
    .mekanisme-cta-section {
        padding: 76px 0;
    }

    .model-card-grid {
        gap: 16px;
    }

    .flow-timeline::before {
        left: 10%;
        right: 10%;
    }

    .terms-grid {
        gap: 12px;
    }

    .mekanisme-cta {
        padding: 44px;
    }

    .mekanisme-cta__title {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .mekanisme-hero {
        min-height: 62vh;
    }

    .mekanisme-hero__bg {
        background-position: center right;
    }

    .mekanisme-hero__content {
        max-width: 640px;
        padding: 44px 0;
    }

    .mekanisme-hero__title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .mekanisme-hero__desc {
        font-size: 0.98rem;
        line-height: 1.72;
        max-width: 560px;
    }

    .mekanisme-hero__actions {
        flex-wrap: wrap;
    }

    .mekanisme-hero__trust {
        flex-wrap: wrap;
    }

    .mekanisme-subnav {
        top: 72px;
    }

    .mekanisme-subnav__inner {
        gap: 8px;
        padding: 10px 0;
    }

    .mekanisme-subnav__link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .mekanisme-head {
        margin-bottom: 32px;
    }

    .mekanisme-head__title {
        font-size: 1.95rem;
    }

    .mekanisme-head__desc {
        font-size: 0.97rem;
    }

    .business-model-section,
    .flow-section,
    .terms-section,
    .faq-section,
    .mekanisme-cta-section {
        padding: 66px 0;
    }

    .model-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .model-card--dark {
        grid-column: 1 / -1;
    }

    .flow-timeline {
        gap: 12px;
    }

    .flow-timeline::before {
        left: 9%;
        right: 9%;
    }

    .flow-step {
        padding: 16px 14px;
    }

    .terms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .faq-wrap {
        max-width: 100%;
    }

    .faq-question {
        padding: 15px 16px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 16px 15px;
    }

    .mekanisme-cta {
        padding: 38px 30px;
    }

    .mekanisme-cta__title {
        font-size: 1.86rem;
    }

    .mekanisme-cta__actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .mekanisme-hero {
        min-height: 56vh;
        align-items: flex-end;
    }

    .mekanisme-hero__overlay {
        background: linear-gradient(120deg, rgba(26, 28, 33, 0.9) 0%, rgba(26, 28, 33, 0.82) 56%, rgba(26, 28, 33, 0.68) 100%);
    }

    .mekanisme-hero__content {
        max-width: 100%;
        padding: 36px 0 32px;
    }

    .mekanisme-hero__kicker {
        font-size: 0.76rem;
        margin-bottom: 10px;
    }

    .mekanisme-hero__title {
        font-size: 1.86rem;
        margin-bottom: 12px;
    }

    .mekanisme-hero__desc {
        font-size: 0.94rem;
        line-height: 1.66;
        margin-bottom: 20px;
    }

    .mekanisme-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }

    .btn--hero-primary,
    .btn--hero-ghost {
        width: 100%;
        text-align: center;
        padding: 11px 18px;
    }

    .mekanisme-hero__trust {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .mekanisme-hero__trust-item {
        font-size: 0.79rem;
        padding: 7px 10px;
    }

    .mekanisme-subnav {
        top: 68px;
    }

    .mekanisme-subnav__inner {
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .mekanisme-subnav__inner::-webkit-scrollbar {
        height: 4px;
    }

    .mekanisme-subnav__link {
        flex: 0 0 auto;
        font-size: 0.88rem;
        padding: 9px 13px;
        white-space: nowrap;
    }

    .business-model-section,
    .flow-section,
    .terms-section,
    .faq-section,
    .mekanisme-cta-section {
        padding: 56px 0;
    }

    .mekanisme-head {
        margin-bottom: 26px;
    }

    .mekanisme-head__kicker {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }

    .mekanisme-head__title {
        font-size: 1.62rem;
        margin-bottom: 10px;
    }

    .mekanisme-head__desc {
        font-size: 0.93rem;
        line-height: 1.64;
    }

    .model-card-grid,
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .model-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .model-card__icon {
        width: 42px;
        height: 42px;
        font-size: 1.16rem;
    }

    .model-card__title {
        font-size: 1.1rem;
    }

    .model-card__text,
    .model-card__list {
        font-size: 0.9rem;
    }

    .role-split {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .flow-timeline {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 16px;
    }

    .flow-timeline::before {
        display: none;
    }

    .flow-step {
        padding: 16px 14px;
        transform: translateY(14px);
    }

    .flow-step__number {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
        margin-bottom: 8px;
    }

    .flow-step__title {
        font-size: 0.98rem;
    }

    .flow-step__list {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .flow-note {
        font-size: 0.9rem;
        line-height: 1.64;
        padding: 12px 13px;
    }

    .terms-card {
        padding: 14px 12px;
        gap: 8px;
    }

    .terms-card__icon {
        font-size: 1rem;
    }

    .terms-card p {
        font-size: 0.88rem;
    }

    .faq-accordion {
        gap: 8px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 14px 14px;
        font-size: 0.92rem;
        gap: 10px;
    }

    .faq-answer p {
        padding: 0 14px 14px;
        font-size: 0.89rem;
    }

    .mekanisme-cta {
        border-radius: 20px;
        padding: 28px 20px;
        text-align: center;
    }

    .mekanisme-cta__title {
        font-size: 1.56rem;
    }

    .mekanisme-cta__desc {
        margin-bottom: 18px;
        font-size: 0.94rem;
    }

    .mekanisme-cta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .mekanisme-btn {
        width: 100%;
        text-align: center;
        padding: 11px 16px;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 14px;
    }

    .mekanisme-hero {
        min-height: 54vh;
    }

    .mekanisme-hero__title {
        font-size: 1.64rem;
    }

    .mekanisme-head__title {
        font-size: 1.48rem;
    }

    .mekanisme-subnav__link {
        padding: 8px 11px;
        font-size: 0.85rem;
    }

    .mekanisme-cta {
        padding: 24px 16px;
    }
}
