:root {
    --indigo: #4338ca;
    --indigo-dark: #312e81;
    --navy: #0b1120;
    --hijau: #22c55e;
    --bg-light: #f5f7fb;
    --bg-lightblue: #e8ecfb;
    --text-dark: #111827;
    --text-muted: #6b7280;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: var(--text-dark);
    background: #fff;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    background: #fff;
    border-bottom: 1px solid #eef0f4;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.navbar-brand img {
    height: 32px;
}
.navbar-brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--indigo);
}
.navbar-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}
.navbar-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}
.navbar-menu a.active,
.navbar-menu a:hover {
    color: var(--indigo);
}
.navbar-login {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-login-nav {
    background: var(--indigo);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.navbar-login>i.fa-circle-user,
.navbar-login>i.fa-caret-down {
    color: var(--text-muted);
    cursor: pointer;
}
.login-dropdown {
    display: none;
    position: absolute;
    top: 46px;
    right: 0;
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 16px;
    width: 240px;
    z-index: 200;
}
.login-dropdown.show {
    display: block;
}
.login-dropdown input {
    width: 100%;
    padding: 9px 12px;
    margin-bottom: 10px;
    border: 1px solid #e2e4ea;
    border-radius: 6px;
}
.btn-submit-login {
    width: 100%;
    background: var(--indigo);
    color: #fff;
    border: none;
    padding: 9px 0;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 0 64px;
    background: linear-gradient(rgba(11, 17, 32, 0.35), rgba(11, 17, 32, 0.65)),
    url('/img/alam2.jpg') center/cover no-repeat;
}
.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 640px;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}
.hero-title .text-hijau {
    color: #4ade80;
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
}
.btn-hero-primary,
.btn-hero-secondary {
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.btn-hero-primary {
    background: var(--indigo);
    color: #fff;
}
.btn-hero-primary:hover {
    background: var(--indigo-dark);
}
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}
.features-section {
    padding: 80px 64px;
    background: var(--bg-light);
}
.text-eyebrow {
    color: var(--indigo);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.features-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0 12px;
}
.features-subtitle {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.feature-card {
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 16px;
    padding: 32px;
    min-height: 220px;
}
.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.feature-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
.feature-checklist {
    list-style: none;
    margin-top: 18px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.feature-checklist li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.feature-checklist i {
    color: var(--indigo);
}
.feature-card-dark {
    background: var(--indigo);
    color: #fff;
}
.feature-card-dark .feature-tag,
.feature-card-dark p {
    color: rgba(255, 255, 255, 0.8);
}
.feature-link {
    display: inline-block;
    margin-top: 18px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.03em;
}
.feature-card-light {
    background: #eaf6ec;
}
.feature-card-image {
    position: relative;
    background: linear-gradient(rgba(11, 17, 32, 0.5), rgba(11, 17, 32, 0.75)),
    url('{{ asset("img/after.png") }}') center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.feature-card-image .feature-tag {
    color: rgba(255, 255, 255, 0.75);
}
.feature-card-image h3 {
    margin-bottom: 0;
}
.stats-bar {
    background: var(--navy);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 56px 64px;
}
.stat-item {
    text-align: center;
    color: #fff;
}
.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.site-footer {
    background: var(--bg-lightblue);
    padding: 56px 64px 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-logo {
    height: 28px;
}
.footer-brand h3 {
    color: var(--indigo);
    font-size: 1.1rem;
}
.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    max-width: 320px;
}
.footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.links-col ul {
    list-style: none;
}
.links-col ul li {
    margin-bottom: 10px;
}
.links-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}
.links-col ul li a:hover {
    color: var(--indigo);
}
.footer-contact-item {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
@media (max-width: 900px) {
    .navbar-menu {
        display: none;
    }
    .hero {
        padding: 0 24px;
        text-align: left;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .features-section {
        padding: 56px 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 40px 24px;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .site-footer {
        padding: 40px 24px 0;
    }
}