/* styles.css */
:root {
    --primary: #0f766e;
    --primary-dark: #0b4f4a;
    --accent: #c8a24d;
    --bg: #fff8ee;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --border: #e7e2d8;

    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.06);

    --radius: 16px;
    --radius-sm: 12px;

    --container: 1120px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto,
        Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    transform: translateY(-200%);
    transition: transform 0.2s ease;
    z-index: 9999;
}
.skip-link:focus {
    transform: translateY(0);
}
.muted {
    color: var(--muted);
}
.accent {
    color: var(--primary);
}
.w-full {
    width: 100%;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 238, 0.78);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 226, 216, 0.7);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}
.brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        180deg,
        rgba(15, 118, 110, 0.14),
        rgba(200, 162, 77, 0.1)
    );
    border: 1px solid rgba(15, 118, 110, 0.18);
    color: var(--primary);
    font-weight: 700;
}
.brand__name {
    font-weight: 700;
}
.brand__tagline {
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav__toggle {
    display: none;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}
.nav__toggleLines {
    display: block;
    width: 18px;
    height: 12px;
    position: relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}
.nav__toggleLines::before {
    top: 0;
}
.nav__toggleLines::after {
    bottom: 0;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav__link {
    font-size: 14px;
    color: var(--muted);
    padding: 10px 10px;
    border-radius: 12px;
}
.nav__link:hover {
    color: var(--text);
    background: rgba(15, 118, 110, 0.06);
}
.nav__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.12s ease, background 0.12s ease,
        border-color 0.12s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
.btn:active {
    transform: translateY(1px);
}
.btn--primary {
    background: var(--primary);
    color: white;
    border-color: rgba(15, 118, 110, 0.5);
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.22);
}
.btn--primary:hover {
    background: var(--primary-dark);
}
.btn--outline {
    background: transparent;
    border-color: rgba(15, 118, 110, 0.35);
    color: var(--primary-dark);
}
.btn--outline:hover {
    background: rgba(15, 118, 110, 0.06);
}
.btn--ghost {
    background: rgba(15, 118, 110, 0.06);
    border-color: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
}
.btn--ghost:hover {
    background: rgba(15, 118, 110, 0.1);
}

.hero {
    position: relative;
    padding: 56px 0 22px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -200px;
    background: radial-gradient(
            circle at 30% 30%,
            rgba(15, 118, 110, 0.2),
            transparent 55%
        ),
        radial-gradient(
            circle at 70% 10%,
            rgba(200, 162, 77, 0.16),
            transparent 45%
        );
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            45deg,
            rgba(15, 118, 110, 0.04) 25%,
            transparent 25%,
            transparent 75%,
            rgba(15, 118, 110, 0.04) 75%,
            rgba(15, 118, 110, 0.04)
        ),
        linear-gradient(
            45deg,
            rgba(200, 162, 77, 0.03) 25%,
            transparent 25%,
            transparent 75%,
            rgba(200, 162, 77, 0.03) 75%,
            rgba(200, 162, 77, 0.03)
        );
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    opacity: 0.45;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}
.badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(231, 226, 216, 0.9);
    box-shadow: var(--shadow-soft);
    font-size: 13px;
    color: var(--muted);
}
.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.lead {
    font-size: 18px;
    margin: 0 0 10px;
}
.hero__cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.chips {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.chip {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(231, 226, 216, 0.9);
    font-size: 14px;
}

.mediaCard {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 226, 216, 0.9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.mediaCard__image {
    height: 340px;
    background: radial-gradient(
            circle at 30% 20%,
            rgba(15, 118, 110, 0.25),
            transparent 55%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(200, 162, 77, 0.22),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(15, 118, 110, 0.08),
            rgba(255, 255, 255, 0)
        );
    /* Ganti pakai foto:
     background-image: url('assets/hero.jpg');
     background-size: cover; background-position:center;
  */
}
.mediaCard__image--alt {
    height: 360px;
    background: radial-gradient(
            circle at 35% 20%,
            rgba(200, 162, 77, 0.22),
            transparent 55%
        ),
        radial-gradient(
            circle at 70% 60%,
            rgba(15, 118, 110, 0.2),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(15, 118, 110, 0.06),
            rgba(255, 255, 255, 0)
        );
}
.mediaCard__caption {
    padding: 14px 16px;
}
.mediaCard__captionTitle {
    font-weight: 700;
}
.mediaCard__captionText {
    font-size: 13px;
    color: var(--muted);
}
.mediaCard--plain {
    box-shadow: var(--shadow-soft);
}

.trust {
    padding: 14px 0 30px;
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.trust__item {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(231, 226, 216, 0.9);
    font-size: 13px;
    color: var(--muted);
}
.trust__icon {
    margin-right: 8px;
}

.section {
    padding: 54px 0;
}
.section--soft {
    background: rgba(255, 255, 255, 0.32);
    border-top: 1px solid rgba(231, 226, 216, 0.8);
    border-bottom: 1px solid rgba(231, 226, 216, 0.8);
}
.section__head {
    margin-bottom: 18px;
}
.section__head h2 {
    margin: 0 0 6px;
    font-size: clamp(22px, 2.2vw, 32px);
    letter-spacing: -0.01em;
}
.section__head p {
    margin: 0;
}

.grid {
    display: grid;
    gap: 14px;
}
.grid--bento {
    grid-template-columns: repeat(3, 1fr);
}
.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(231, 226, 216, 0.95);
    border-radius: var(--radius);
    padding: 16px 16px;
    box-shadow: var(--shadow-soft);
}
.card h3 {
    margin: 0 0 6px;
    font-size: 16px;
}
.card p {
    margin: 0;
}

.tabs {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(231, 226, 216, 0.9);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-soft);
}
.tabs__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 6px;
    border-radius: 14px;
    background: rgba(15, 118, 110, 0.05);
    border: 1px solid rgba(15, 118, 110, 0.08);
}
.tabs__tab {
    border: 1px solid transparent;
    background: transparent;
    padding: 10px 12px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    color: var(--muted);
}
.tabs__tab.is-active {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(231, 226, 216, 0.95);
    color: var(--text);
    box-shadow: var(--shadow-soft);
}
.tabs__panels {
    padding: 12px 4px 4px;
}
.tabs__panel {
    display: none;
}
.tabs__panel.is-active {
    display: block;
}

.panelGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.list {
    margin: 10px 0 0;
    padding-left: 18px;
}
.list li {
    margin: 6px 0;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.step {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(231, 226, 216, 0.95);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow-soft);
}
.step__num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 10px;
}
.step h3 {
    margin: 0 0 6px;
    font-size: 15px;
}
.step p {
    margin: 0;
}

.note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(200, 162, 77, 0.12);
    border: 1px solid rgba(200, 162, 77, 0.22);
}

.tableCard {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(231, 226, 216, 0.95);
    border-radius: var(--radius);
    overflow: auto;
    box-shadow: var(--shadow-soft);
}
.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.table th,
.table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(231, 226, 216, 0.9);
    text-align: left;
    font-size: 14px;
}
.table th {
    color: var(--muted);
    font-weight: 700;
}
.table tr:last-child td {
    border-bottom: none;
}
.pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(231, 226, 216, 0.9);
    background: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.pill--primary {
    border-color: rgba(15, 118, 110, 0.24);
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
}

.priceCard {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(231, 226, 216, 0.95);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.priceCard__top h3 {
    margin: 0;
}
.priceCard__price {
    font-size: 28px;
    font-weight: 800;
    margin-top: 6px;
}
.priceCard__sub {
    font-size: 13px;
}

.beasiswa {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.beasiswa__right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.checklist {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}
.checklist li {
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
}
.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-dark);
    font-weight: 900;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.timeline {
    margin: 10px 0 0;
    padding-left: 0;
    list-style: none;
}
.timeline li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(231, 226, 216, 0.95);
}
.timeline li:last-child {
    border-bottom: none;
}

.quote {
    margin: 0;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(231, 226, 216, 0.95);
    box-shadow: var(--shadow-soft);
}
.quote blockquote {
    margin: 0 0 12px;
    color: var(--text);
}
.quote figcaption {
    color: var(--muted);
    font-size: 14px;
}

.formWrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 14px;
    align-items: start;
}
.form {
    padding: 16px;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.field {
    display: block;
    margin-bottom: 12px;
}
.field__label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 6px;
}
.field__input {
    width: 100%;
    border-radius: 14px;
    padding: 12px 12px;
    border: 1px solid rgba(231, 226, 216, 0.95);
    background: rgba(255, 255, 255, 0.9);
    outline: none;
    font: inherit;
}
.field__input:focus {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}
.field__hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
}
.form__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.form__msg {
    margin-top: 12px;
    font-size: 14px;
}

.side {
    position: sticky;
    top: 92px;
}
.sep {
    border: none;
    border-top: 1px solid rgba(231, 226, 216, 0.95);
    margin: 14px 0;
}
.status {
    display: flex;
    gap: 10px;
    align-items: center;
}
.status__result {
    margin-top: 10px;
    font-size: 14px;
}

.accordion {
    display: grid;
    gap: 10px;
}
.accItem {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(231, 226, 216, 0.95);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.accBtn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 800;
    text-align: left;
}
.accIcon {
    width: 28px;
    height: 28px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
    font-weight: 900;
}
.accPanel {
    padding: 0 14px 14px;
    color: var(--muted);
}

.closing {
    padding: 46px 0;
    background: radial-gradient(
            circle at 20% 0%,
            rgba(15, 118, 110, 0.18),
            transparent 55%
        ),
        radial-gradient(
            circle at 90% 50%,
            rgba(200, 162, 77, 0.16),
            transparent 55%
        );
    border-top: 1px solid rgba(231, 226, 216, 0.9);
}
.closing__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.closing__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer {
    padding: 30px 0 18px;
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(231, 226, 216, 0.9);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 14px;
}
.footer__brand {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer__title {
    font-weight: 800;
}
.footer__addr {
    margin: 10px 0 0;
}
.footer__list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}
.footer__list li {
    margin: 8px 0;
}
.link {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer__bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(231, 226, 216, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.toTop {
    color: var(--muted);
}
.toTop:hover {
    color: var(--text);
}

.waFloat {
    position: fixed;
    right: 18px;
    bottom: 84px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.28);
    z-index: 60;
}
.waFloat:hover {
    background: var(--primary-dark);
}
.stickyCta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(231, 226, 216, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    gap: 10px;
    z-index: 55;
}
.stickyCta__btn {
    flex: 1;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 800;
    text-align: center;
    border: 1px solid transparent;
}
.stickyCta__btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: rgba(15, 118, 110, 0.45);
}
.stickyCta__btn--ghost {
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
    border-color: rgba(15, 118, 110, 0.1);
}

@media (max-width: 980px) {
    .trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .mediaCard__image {
        height: 300px;
    }
    .grid--bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .panelGrid {
        grid-template-columns: 1fr;
    }
    .feature {
        grid-template-columns: 1fr;
    }
    .formWrap {
        grid-template-columns: 1fr;
    }
    .side {
        position: relative;
        top: auto;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .nav__toggle {
        display: inline-flex;
    }
    .nav__menu {
        display: none;
        position: absolute;
        right: 20px;
        top: 68px;
        width: min(520px, calc(100% - 40px));
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(231, 226, 216, 0.95);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .nav__menu.is-open {
        display: flex;
    }
    .nav__actions {
        justify-content: stretch;
    }
    .nav__actions .btn {
        width: 100%;
    }
    .grid--2 {
        grid-template-columns: 1fr;
    }
    .grid--3 {
        grid-template-columns: 1fr;
    }
    .grid--bento {
        grid-template-columns: 1fr;
    }
    .form__row {
        grid-template-columns: 1fr;
    }
    .closing__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .stickyCta {
        display: flex;
    }
    .waFloat {
        bottom: 140px;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.modal.is-open {
    visibility: visible;
    opacity: 1;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}
.modal__container {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}
.modal.is-open .modal__container {
    transform: scale(1);
}
.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}
.modal__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}
.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
}
.modal__content {
    padding: 24px;
}
