:root {
    --primary: #1e293b;
    /* Deep Navy - Professional */
    --accent: #b49b67;
    /* Soft Gold - Premium/Trust */
    --accent-hover: #9c8555;
    --text-dark: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --white: #ffffff;
    --success: #10b981;

    --font-main: 'Inter', sans-serif;
    --container-max: 1000px;
    /* Reduced width for better readability focus */
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-white-mute {
    color: rgba(255, 255, 255, 0.8);
}

.section-white {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.section-light {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.section-dark {
    background-color: var(--primary);
    padding: 80px 0;
    color: var(--white);
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: #334155;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--bg-light);
}

.btn-text {
    color: var(--text-light);
    font-weight: 400;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 34px;
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    .navbar .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 6px;
        max-width: fit-content;
        white-space: nowrap;
    }
}





/* Hero */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e2e8f0;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.trust-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
}

.trust-item i {
    color: var(--accent);
}

.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* About Section */
.row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
    height: 300px;
    background-color: #cbd5e1;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
}

/* Akad Section */
.akad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.akad-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius);
    position: relative;
    border: 1px solid #f1f5f9;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
}

.alert-box {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 16px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin-top: 20px;
}

.alert-box i {
    font-size: 1.2rem;
}

.alert-box p {
    margin: 0;
    color: #065f46;
    font-size: 0.95rem;
}

/* Details Section */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.role-list li,
.spec-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.role-list p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-list span {
    color: var(--text-light);
}

.spec-list strong {
    color: var(--primary);
}

/* Profit Section */
.profit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.profit-item {
    flex: 1;
}

.profit-item .label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--accent);
}

.profit-item .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.profit-item .value small {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.profit-item .desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.profit-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
}

/* Risk & Suitability */
.col-half {
    width: 50%;
    padding: 0 15px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.check-list i {
    color: var(--accent);
    margin-top: 5px;
}

/* CTA & Footer */
.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid #e2e8f0;
}

.action-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-logo {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .row {
        flex-direction: column;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .profit-card {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .profit-divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }

    .col-half {
        width: 100%;
        margin-bottom: 40px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Image */
.image-wrapper {
    position: relative;
    text-align: center;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-size: 0.8rem;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 300px;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}