/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background-color: #121212;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .section-title, .hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Highlight Colors */
.highlight-blue {
    color: #00C2FF;
}

.highlight-green {
    color: #00FF8C;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00C2FF 0%, #00FF8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none !important;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00C2FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00C2FF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #121212;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.cta-button {
    background: #FBC02D;
    color: #121212;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.3);
    animation: float 3s ease-in-out infinite;
}

.cta-button:focus, .cta-button:active, .cta-button:hover {
    background: #FBC02D;
    color: #121212;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.4);
    outline: none;
    border: none;
    transform: translateY(-3px) scale(1.02);
    animation-play-state: paused;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.4);
    animation-play-state: paused;
}

.cta-button, .cta-text {
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: #121212;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.problem-icon {
    color: #FF4444;
    font-size: 1.5rem;
}

.solution-icon {
    color: #00FF8C;
    font-size: 1.5rem;
}

.problem-list, .solution-list {
    list-style: none;
}

.problem-list li, .solution-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    padding-left: 1.5rem;
}

.solution-list li {
    color: rgba(255, 255, 255, 0.8);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #FF4444;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF8C;
}

/* Performance Section */
.performance-section {
    padding: 4rem 0;
    background: #121212;
    position: relative;
}

/* Hapus efek radial pada performance-section */
.performance-section::before {
    content: none !important;
    background: none !important;
}

.performance-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.performance-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.performance-table-container {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.performance-table th {
    background: #FBC02D;
    color: #121212;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.performance-table th:first-child {
    text-align: center;
}

.performance-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.performance-table td:first-child {
    text-align: left;
}

.performance-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.positive {
    color: #00FF8C !important;
    font-weight: 600;
}

.negative {
    color: #FF4444 !important;
    font-weight: 600;
}

.performance-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 2rem 0;
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: #121212;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 194, 255, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    color: #00C2FF;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #121212;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.profile-image {
    flex-shrink: 0;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00C2FF, #00FF8C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #121212;
    border: 4px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00C2FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #00FF8C;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #121212;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: #00C2FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #121212;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 8rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 0 2.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00C2FF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 194, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}
.avatar-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
}

.profile-info h4 {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.profile-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
}

/* Join Section */
.join-section {
    padding: 4rem 0;
    background: #121212;
}

.join-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.join-cta {
    text-align: center;
}

.whatsapp-button, .whatsapp-button:hover, .whatsapp-button i {
    all: unset;
}

/* Footer style dikembalikan ke semula */
.footer {
    background: #0f0f0f !important;
    border-top: 1px solid rgba(102, 64, 64, 0.18) !important;
    box-shadow: none;
    padding: 3rem 0;
}
.footer-content {
    text-align: center;
}
.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00C2FF 0%, #00FF8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-link {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #00C2FF;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.social-link:hover {
    background: #423a3a !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Performance table additional styling */
.other-strategies {
    background: rgba(0, 194, 255, 0.1) !important;
}

.other-strategies td {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
        margin-top: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-profile {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .stats-container {
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .performance-table-container {
        margin: 2rem -1rem;
    }

    .stat-item {
        padding: 0 0.5rem;
    }

    h2, h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .solution-card,
    .benefit-card {
        padding: 2rem;
    }

    .profile-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .whatsapp-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0 0.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }

    h2, h3 {
        font-size: 1.1rem;
    }
}

/* Smooth scrolling and animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #00C2FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00FF8C;
}

/* Font size adjustments for better balance with Montserrat */
h1 {
    font-size: 2.2rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.3rem;
}
h4, h5, h6 {
    font-size: 1.1rem;
}

.program-overview-section {
    padding: 4rem 0;
    background: #121212;
}
.program-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.overview-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.overview-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0;
}
.overview-content {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
}
.overview-code {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2vw 2vw 2vw;
    box-sizing: border-box;
    display: block;
    max-height: 420px;
    overflow-y: auto;
    background: #181818;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.28);
}
.code-sample {
    width: 100%;
    overflow-x: auto;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.code-sample pre, .code-sample code {
    background: #181818 !important;
}
.code-sample-inner {
    background: #181818;
    border-radius: 14px;
    box-shadow: none;
    padding: 2.5em 2em 2em 2em;
    overflow-x: auto;
}
/* Scrollbar styling for code container */
.overview-code::-webkit-scrollbar,
.code-sample-inner::-webkit-scrollbar {
    width: 10px;
    background: #181818;
    border-radius: 8px;
}
.overview-code::-webkit-scrollbar-thumb,
.code-sample-inner::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 8px;
}
.overview-code::-webkit-scrollbar-track,
.code-sample-inner::-webkit-scrollbar-track {
    background: #181818;
    border-radius: 8px;
}
/* Firefox */
.overview-code,
.code-sample-inner {
    scrollbar-color: #fff #181818;
    scrollbar-width: thin;
}
@media (max-width: 900px) {
    .overview-code { max-width: 98vw; padding: 0 1vw 2vw 1vw; max-height: 260px; }
    .code-sample-inner { padding: 1.2em 0.5em; }
}

.program-overview-section,
.faq-section,
.testimonials-section,
.benefits-section,
.performance-section,
.solution-section,
.join-section {
    padding: 4rem 0 !important;
}
@media (max-width: 900px) {
    .program-overview-section,
    .faq-section,
    .testimonials-section,
    .benefits-section,
    .performance-section,
    .solution-section,
    .join-section {
        padding: 2rem 0 !important;
    }
}

/* TITLES: Remove gradient, use solid white */
.nav-logo .logo-text,
.footer-logo .logo-text,
.section-title,
.hero-title {
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  text-fill-color: unset !important;
}

/* ICONS & TEXT: Change all blue to white */
.highlight-blue,
.benefit-icon,
.solution-icon,
.problem-icon,
.stat-number,
.about-link,
.faq-question i,
.performance-table th,
.profile-placeholder,
.profile-avatar {
  color: #fff !important;
  background: none !important;
  border-color: #fff !important;
}

.nav-link,
.nav-link:hover,
.nav-link:focus,
.footer-link:hover,
.social-link:hover {
  color: #fff !important;
}

.performance-table th {
  background: #FBC02D !important;
  color: #121212 !important;
  font-size: 1.05rem !important;
}

/* SOLUTION SECTION: Use red for X and green for checklist */
.problem-icon,
.problem-list li::before {
  color: #FF4444 !important;
}
.solution-icon,
.solution-list li::before {
  color: #00FF8C !important;
}

/* TABLE HEADER: Yellow background, black text, slightly larger font */
.performance-table th {
  background: #FBC02D;
  color: #121212 !important;
  font-size: 1.05rem !important;
}

/* SCROLLBAR: White thumb */
::-webkit-scrollbar-thumb,
.code-sample::-webkit-scrollbar-thumb {
  background: #fff !important;
}
.code-sample {
  scrollbar-color: #fff #181818 !important;
}

/* Risiko Section */
.risk-section {
  background: #121212;
  padding: 64px 0 48px 0;
}
.risk-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.risk-grid {
  display: flex;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
}
.risk-image {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
}

.risk-image img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}
.risk-content {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.risk-content .section-title {
  color: #FBC02D;
  font-size: 2rem;
  font-family: 'Montserrat', 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.risk-content p {
  color: #fffde7;
  margin-bottom: 1.5em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}
.risk-content .cta-button {
  background: #FBC02D;
  color: #181818;
  border: none;
  border-radius: 8px;
  padding: 0.85em 2.2em;
  font-size: 1.08em;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(251,192,45,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  cursor: pointer;
  animation: none;
}
.risk-content .cta-button:hover, .risk-content .cta-button:focus {
  background: #ffd740;
  color: #0d0d0d;
  box-shadow: 0 4px 18px rgba(251,192,45,0.16);
}
.risk-content .cta-button i {
  font-size: 1.1em;
}

@media (max-width: 900px) {
  .risk-grid {
    flex-direction: column;
    gap: 32px;
  }
  .risk-image, .risk-content {
    min-width: 0;
    width: 100%;
  }
  .risk-image {
    margin-bottom: 0;
  }
  .risk-content .section-title {
    font-size: 1.3rem;
  }
}

/* Profil Manajer Investasi Section */
.profile-section {
    padding: 60px 0 40px 0;
    background: #121212;
}
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}
.profile-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-top: 2.2em;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
}
.profile-photo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: unset;
    margin: 0;
    padding: 0;
}
.profile-photo img {
    box-shadow: 0 4px 32px rgba(0,0,0,0.28) !important;
}
.profile-info {
    flex: 2 1 400px;
    min-width: 260px;
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}
.profile-info h3 {
    margin-bottom: 0.7em !important;
}
.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    background: #0077b5;
    color: #fff !important;
    padding: 0.7em 1.5em;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,119,181,0.3);
    border: none;
    cursor: pointer;
}

.linkedin-btn:hover, .linkedin-btn:focus {
    background: #005983;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,119,181,0.4);
}
.linkedin-btn i {
    color: #fff !important;
    font-size: 1.2em;
}
@media (max-width: 900px) {
    .profile-grid {
        flex-direction: column;
        gap: 1.5em;
        text-align: center;
    }
    .profile-photo {
        margin-bottom: 0.5em;
        justify-content: center;
        padding-left: 0;
    }
    .profile-info {
        min-width: 0;
        max-width: 100%;
        text-align: center;
    }

    /* Testimonial: nama dan pekerjaan rata kiri di mobile */
    .testimonials-grid .profile-info {
        text-align: left !important;
        align-items: flex-start !important;
    }
    .testimonial-profile-info {
        text-align: left !important;
        align-items: flex-start !important;
        display: flex;
        flex-direction: column;
    }
}

.solution-card, .performance-table-container, .benefit-card, .testimonial-card {
    box-shadow: 0 4px 32px rgba(0,0,0,0.28) !important;
    border-radius: 18px !important;
}

.solution-section,
.performance-section,
.benefits-section,
.program-overview-section,
.faq-section,
.testimonials-section,
.join-section,
.risk-section,
.profile-section,
.about-section {
    background: #121212 !important;
    box-shadow: none !important;
    border: none !important;
}

