:root {
    --bg-pure-white: #ffffff;
    --bg-light-sky: #f0f9ff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --accent-blue: #10428e;
    --accent-sky-blue: #38bdf8;
    --accent-sky-dark: #0284c7;
    --accent-sky-light: #bae6fd;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-pure-white);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: var(--text-dark);
}
a {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.form-control,
.form-select {
    border: 1px solid #a2a2a2;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.form-control {
    padding: 10px 16px;
}
.form-select {
    padding-top: 8px;
    padding-left: 12px;
    padding-bottom: 8px;
}
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}
.navbar-brand {
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--text-dark) !important;
    line-height: normal;
}
.navbar-brand span {
    color: var(--accent-sky-blue);
}
.navbar-brand img {
    width: auto;
    height: 45px;
    margin-right: 8px;
}
.nav-link {
    color: var(--text-dark) !important;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent-sky-blue) !important;
}
.text-sky {
    color: var(--accent-sky-blue) !important;
}
.btn-sky {
    background-color: var(--accent-sky-blue);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(56, 189, 248, 0.2);
}
.btn-sky:hover {
    background-color: var(--accent-sky-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 132, 199, 0.3);
}
.hero-section {
    background-color: var(--bg-light-sky);
    background: linear-gradient(
        0deg,
        var(--bg-light-sky) 0%,
        var(--accent-sky-blue) 700%
    );
    padding: 120px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("../imgs/aceh1.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: top;
    z-index: 1;
}
.hero-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(56, 189, 248, 0.09);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
    filter: blur(1px);
}
/*
.hero-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(56, 189, 248, 0.075);
    border-radius: 50%;
    top: -200px;
    left: -100px;
    z-index: 0;
    filter: blur(1px);
}
*/
.hero-content {
    padding: 0px 18px;
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.7rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #10428e;
}
.hero-title span {
    color: var(--accent-sky-blue);
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 9px;
    text-decoration-color: var(--accent-sky-light);
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}
.app-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.3rem;
    background-color: #fff;
    color: var(--text-dark);
    border: 1px solid var(--accent-sky-light);
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 1rem;
    width: 210px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.app-btn {
    /* Bypass hover effect */
    border-color: var(--accent-sky-blue);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
    color: var(--text-dark);
}
.app-btn:hover {
    transform: translateY(-4px);
}
.app-btn i {
    font-size: 2rem;
    margin-right: 0.75rem;
    color: var(--accent-sky-blue);
    flex-shrink: 0;
}
.app-btn-text {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    line-height: 1.2;
    margin-left: auto;
    width: 120px;
}
.app-btn-text small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.app-btn-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}
.hero-mockup-container {
    position: relative;
    z-index: 1;
}
.hero-mockup-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.15) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.2);
}
.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card {
    /* Bypass hover effect */
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
    border-color: var(--accent-sky-light);
}
.feature-card:hover {
    transform: translateY(-8px);
}
.feature-icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--bg-light-sky);
    color: var(--accent-sky-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.feature-card .feature-icon-box {
    /* Bypass hover effect */
    background-color: var(--accent-sky-blue);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}
.alur-section {
    background-color: var(--bg-pure-white);
    position: relative;
    z-index: 1;
}
.badge-sky {
    background-color: var(--bg-light-sky);
    color: var(--accent-sky-dark);
    border: 1px solid var(--accent-sky-light);
}
.alur-container {
    position: relative;
}
.alur-line {
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(
        to right,
        var(--accent-sky-blue) 50%,
        transparent 50%
    );
    background-size: 16px 2px;
    background-repeat: repeat-x;
    opacity: 0.3;
    z-index: -1;
    max-width: calc(100% - 12%);
}
.alur-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
    border: 1px solid #f8fafc;
    text-align: center;
}
.alur-card {
    /* Bypass hover effect */
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.12);
    border-color: var(--accent-sky-light);
}
.alur-card:hover {
    transform: translateY(-10px);
}
.alur-number {
    position: absolute;
    top: -15px;
    right: -5px;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(56, 189, 248, 0.05);
    line-height: 1;
    z-index: 0;
    transition: color 0.4s ease;
}
.alur-card .alur-number {
    /* Bypass hover effect */
    color: rgba(56, 189, 248, 0.15);
}
.alur-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, var(--bg-light-sky));
    border: 2px solid var(--accent-sky-light);
    color: var(--accent-sky-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.05);
    transition: all 0.4s ease;
}
.alur-card .alur-icon {
    /* Bypass hover effect */
    background: linear-gradient(
        135deg,
        var(--accent-sky-blue),
        var(--accent-sky-dark)
    );
    background: var(--accent-sky-blue);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 15px 25px rgba(2, 132, 199, 0.25);
}
.alur-card h5,
.alur-card p {
    position: relative;
    z-index: 1;
}
.about-section {
    padding: 60px 0;
    position: relative;
    background-color: var(--bg-pure-white);
    overflow: hidden;
}
.about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    max-width: 500px;
    color: var(--accent-blue);
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
}
.about-img-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}
.about-img-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-img-wrapper::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: var(--bg-light-sky);
    border-radius: 20px;
    top: 20px;
    right: -20px;
    z-index: -1;
}
.focus-section {
    background-color: var(--bg-light-sky);
    padding: 60px 0;
    border-radius: 40px;
    margin: 0 1rem 4rem;
}
.point-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.point-card {
    /* Bypass hover effect */
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.08);
    border-color: var(--accent-sky-light);
}
.point-card:hover {
    transform: translateY(-5px);
}
.point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--accent-sky-blue),
        var(--accent-sky-dark)
    );
    background: var(--accent-sky-blue);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 15px rgba(2, 132, 199, 0.2);
}
.point-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.point-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}
.page-header {
    background-color: var(--bg-light-sky);
    background: linear-gradient(
        0deg,
        var(--bg-light-sky) 0%,
        var(--accent-sky-blue) 700%
    );
    padding: 110px 0;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--accent-sky-light);
    position: relative;
}
.page-header::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("../imgs/aceh1.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: top;
    z-index: 1;
}
.page-title {
    font-size: clamp(1.9rem, 5vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-blue);
}
.last-updated {
    display: inline-block;
    color: var(--accent-sky-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.page-content {
    margin: -40px auto 80px;
    background: #fff;
    padding: 1.75rem;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}
.page-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.page-content h4 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.page-content p,
.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.faq-section {
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 14px !important;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-item {
    /* Bypass hover effect */
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.08);
    border-color: var(--accent-sky-light) !important;
    /* transform: translateY(-2px); */
}
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 1.5rem;
    background-color: transparent;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-sky-dark);
    background-color: rgba(56, 189, 248, 0.03);
}
.accordion-body {
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem;
    background-color: rgba(56, 189, 248, 0.03);
}
footer {
    background-color: #003046;
    color: #94a3b8;
    font-size: 0.95rem;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--accent-sky-blue),
        var(--accent-sky-dark)
    );
}
footer h5 {
    color: #f8fafc;
    margin-top: 1rem;
    margin-bottom: 0.95rem;
    font-size: 0.95rem;
}
footer a {
    color: #94a3b8;
    text-decoration: underline;
    transition: color 0.3s;
}
footer a:hover {
    color: var(--accent-sky-blue);
    text-decoration: none;
}
.footer-logo {
    margin-bottom: 0.7rem;
}
.footer-logo img {
    width: auto;
    height: 40px;
}
.footer-bottom {
    border-top: 1px solid #02425f;
    margin-top: 3rem;
    padding-top: 1.3rem;
    font-size: 0.9rem;
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        margin-top: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #f1f5f9;
    }
    .hero-section {
        padding: 110px 0 80px;
        text-align: center;
    }
    .hero-section::before {
        top: -10px;
        height: 50px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-mockup-container {
        margin-top: 4rem;
    }
    .feature-card {
        padding: 2rem;
        text-align: center;
    }
    .feature-card .feature-icon-box {
        margin: 0 auto 1.5rem;
    }
    .about-title,
    .about-text p {
        max-width: 100%;
    }
}
@media (max-width: 767.98px) {
    .feature-card {
        padding: 1.5rem;
        text-align: center;
        margin: 0px 10px;
    }
    .alur-card {
        margin: 0px 10px;
    }
    .alur-line {
        display: none;
    }
    .focus-section {
        padding: 40px 0;
    }
    .point-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-content {
        padding: 1.15rem;
    }
    footer {
        padding: 3rem 0.75rem 2rem;
    }
}
