/* ==========================================================================
   1. MAIN & HERO SECTION
   ========================================================================== */
#main {
    margin-top: 70px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fd 100%);
}

.hero-bg-shape {
    position: absolute;
    top: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(rgba(66, 139, 202, .12), transparent 70%);
    z-index: 1;
}

.hero-content,
.hero-slider-wrapper {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(66, 139, 202, .1);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 20px;
}

.hero-title span {
    color: #f7aa47;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-hero-primary {
    background: #f7aa47;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(247, 170, 71, .2);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: #e09433;
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: #fff;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
}

.hero-authority {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.authority-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    font-weight: 700;
    width: 100%;
    margin-bottom: 2px;
}

.authority-logo {
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
    border: 1px solid #f3f4f6;
}

.authority-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.heroSwiper {
    border-radius: 24px;
    overflow: hidden;
}

.hero-slide-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.hero-slide-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 40px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .92) 0%,
            rgba(0, 0, 0, .65) 40%,
            rgba(0, 0, 0, .10) 100%);

    color: #fff;
}

.hero-slide-overlay span {
    display: inline-block;

    background: #F4B04F;
    color: #fff;

    padding: 12px 24px;
    border-radius: 50px;

    margin-bottom: 20px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
}

.hero-slide-overlay h3 {
    margin: 0;
    max-width: 700px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.heroSwiper .swiper-pagination {
    bottom: 20px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: .6;
}

.heroSwiper .swiper-pagination-bullet-active {
    transform: scale(1.3);
    opacity: 1;
}

/* TABLET */
@media (max-width: 991.98px) {

    .heroSwiper,
    .hero-slide-card {
        border-radius: 20px;
    }

    .hero-slide-card img {
        height: 400px;
    }

    .hero-slide-overlay {
        padding: 30px;
    }

    .hero-slide-overlay span {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hero-slide-overlay h3 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.2;
    }

}

/* MOBILE */
@media (max-width: 767.98px) {

    .heroSwiper,
    .hero-slide-card {
        border-radius: 16px;
    }

    .hero-slide-card img {
        height: 300px;
    }

    .hero-slide-overlay {
        padding: 20px;
    }

    .hero-slide-overlay span {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero-slide-overlay h3 {
        max-width: 100%;
        font-size: 24px;
        line-height: 1.3;
    }

    .heroSwiper .swiper-pagination {
        bottom: 12px !important;
    }

    .heroSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

}

/* MOBILE KECIL */
@media (max-width: 480px) {

    .heroSwiper,
    .hero-slide-card {
        border-radius: 14px;
    }

    .hero-slide-card img {
        height: 240px;
    }

    .hero-slide-overlay {
        padding: 15px;
    }

    .hero-slide-overlay span {
        padding: 7px 14px;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .hero-slide-overlay h3 {
        font-size: 20px;
        line-height: 1.3;
    }

}

.hero-stats-row {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.hero-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-3px);
}

.hero-stat-card h3 {
    margin: 0 0 6px;
    color: #0d6efd;
    font-size: 28px;
    font-weight: 800;
}

.hero-stat-card span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

@media(max-width:991px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-slider-wrapper {
        margin-top: 35px;
    }

    .hero-slide-card {
        min-height: 340px;
    }

    .hero-slide-overlay {
        padding: 25px;
    }

    .hero-slide-overlay h3 {
        font-size: 20px;
    }

    .hero-stats-row {
        margin-top: 40px;
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-stat-card h3 {
        font-size: 22px;
    }

    .hero-stat-card span {
        font-size: 12px;
    }

    .hero-authority {
        justify-content: center;
    }
}

/* ==========================================================================
   2. SUPPORT / TRUST BUILDER SECTION
   ========================================================================== */
.support-section {
    padding: 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(66, 139, 202, .08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title {
    font-size: 46px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

.support-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.support-slider::before,
.support-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.support-slider::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.support-slider::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.support-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: supportMarquee 40s linear infinite;
}

.support-item {
    flex-shrink: 0;
    margin: 0 50px;
}

/* KUNCI: Efek abu-abu dan opacity dihapus. Logo tampil full color secara default */
.support-item img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Ditambahkan sedikit efek zoom saat dihover agar tetap elegan */
.support-item img:hover {
    transform: scale(1.05);
}

@keyframes supportMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.support-slider:hover .support-track {
    animation-play-state: paused;
}

@media(max-width:991px) {
    .support-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 14px;
    }

    .support-item {
        margin: 0 25px;
    }

    .support-item img {
        max-height: 50px;
    }

    .support-slider::before,
    .support-slider::after {
        width: 60px;
    }
}

@media(max-width:576px) {
    .section-title {
        font-size: 26px;
    }

    .section-heading {
        margin-bottom: 30px;
    }
}

/*3. PROJECT*/

.projects-section {
    padding: clamp(50px, 6vw, 80px) 0;
    background-color: #fcfdfe;
}

.projects-section .section-title-wrapper {
    margin-bottom: 40px;
}

.projects-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    position: relative;
}

.projects-section .project-card-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.projects-section .project-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
}

.projects-section .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.projects-section .card-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #e5e7eb;
    border-radius: 20px 20px 0 0;
    overflow: visible;
}

.projects-section .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 20px 20px 0 0;
}

.projects-section .status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border-radius: 20px 20px 0 0;
}

.projects-section .status-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
}

.projects-section .overlay-success span {
    background-color: #1ec675;
}

.projects-section .overlay-warning span {
    background-color: #f7aa47;
}

.projects-section .rating-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 6;
    padding: 6px 14px;
    border-radius: 50px;
    color: #ffffff;
}

.projects-section .rating-badge h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

.projects-section .emiten-logo {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 7;
    object-fit: cover;
}

.projects-section .prelaunch-countdown-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    transition: all 0.5s ease;
}

.projects-section .fomo-glass-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 85%;
    max-width: 290px;
}

.projects-section .fomo-header {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

@keyframes fomo-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.projects-section .fomo-header i {
    color: #f7aa47;
    animation: fomo-pulse 1s infinite ease-in-out;
}

.projects-section .fomo-timer-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.projects-section .timer-block {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 6px 0;
    width: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.projects-section .timer-block span {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 900;
    color: #f7aa47;
    line-height: 1.1;
}

.projects-section .timer-block small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.projects-section .timer-divider {
    font-size: 18px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
}

.projects-section .card-body-content {
    padding: 35px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.projects-section .card-body-content>* {
    margin-bottom: 0 !important;
}

.projects-section .project-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.projects-section .project-title a {
    color: #1f2937;
    text-decoration: none;
}

.projects-section .project-title a:hover {
    color: #0d6efd;
}

.projects-section .emiten-name {
    font-size: 13px;
    color: #9ca3af;
}

.projects-section .badge-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.projects-section .pill-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    background-color: #f3f4f6;
    color: #4b5563;
}

.projects-section .pill-badge.bg-primary-light {
    background-color: rgba(66, 139, 202, 0.1);
    color: #0d6efd;
}

.projects-section .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #374151;
}

.projects-section .progress-label span:first-child {
    font-weight: 800;
}

.projects-section .progress.small-bar {
    height: 8px;
    border-radius: 50px;
    background-color: #f3f4f6;
    overflow: hidden;
}

.projects-section .mitra-penerbitan {
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.projects-section .mitra-label {
    font-size: 11px;
    font-weight: 800;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.projects-section .colab-stamp {
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.projects-section .colab-stamp:hover {
    opacity: 0.7;
}

.projects-section .colab-stamp img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.projects-section .metrics-grid {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
}

.projects-section .metric-item {
    text-align: left;
    margin-bottom: 12px;
}

.projects-section .metric-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.projects-section .metric-label {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 2px;
    display: block;
    white-space: nowrap;
}

.projects-section .metric-value {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    word-break: break-word;
}

.projects-section .metric-value.highlight-blue {
    color: #1b61d5;
}

.projects-section .metric-value.highlight-green {
    color: #1ec675;
}

.projects-section .info-penting-container {
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.projects-section .info-penting-label {
    font-size: 11px;
    font-weight: 800;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.projects-section .history-text {
    font-size: 11px;
    font-weight: 700;
    color: #1ec675;
    line-height: 1.4;
    display: inline-block;
}

.projects-section .action-area {
    padding: 10px 20px 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    margin-top: auto;
}

.projects-section .btn-action {
    width: 100%;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.projects-section .btn-primary-scf {
    background-color: #0d6efd;
    color: #fff;
}

.projects-section .btn-primary-scf:hover {
    background-color: #3370a5;
    color: #fff;
}

.projects-section .btn-exclusive {
    background-color: #1ec675;
    color: #fff;
}

.projects-section .btn-exclusive:hover {
    background-color: #17a35f;
    color: #fff;
}

.projects-section .exclusive-countdown-info {
    margin-top: 10px;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}

@keyframes skeleton-pulse {
    0% {
        background-color: #f3f4f6;
    }

    50% {
        background-color: #e5e7eb;
    }

    100% {
        background-color: #f3f4f6;
    }
}

.projects-section .skeleton-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.projects-section .skeleton-img {
    height: 220px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.projects-section .skeleton-body {
    padding: 35px 20px 20px;
}

.projects-section .skeleton-title {
    height: 22px;
    width: 75%;
    border-radius: 4px;
    margin-bottom: 12px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.projects-section .skeleton-text {
    height: 14px;
    width: 45%;
    border-radius: 4px;
    margin-bottom: 20px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.projects-section .skeleton-grid {
    height: 90px;
    background: #f8fafc;
    border-radius: 12px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.projects-section .fade-in-card {
    animation: fadeInSmooth 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInSmooth {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:767px) {
    .projects-section .section-title {
        font-size: 26px;
    }

    .projects-section .card-body-content {
        padding: 25px 15px 10px;
        gap: 12px;
    }

    .projects-section .project-title {
        font-size: 16px;
    }

    .projects-section .metric-value {
        font-size: 11px;
    }

    .projects-section .metric-label {
        font-size: 10px;
    }

    .projects-section .fomo-glass-box {
        padding: 12px 16px;
    }

    .projects-section .timer-block {
        width: 40px;
        padding: 4px 0;
    }

    .projects-section .timer-block span {
        font-size: 16px;
    }

    .projects-section .mitra-penerbitan {
        padding-top: 12px;
    }

    .projects-section .mitra-label {
        font-size: 10px;
    }

    .projects-section .colab-stamp img {
        height: 40px;
    }

    .projects-section .action-area {
        padding: 5px 15px 20px;
    }

    .projects-section .metrics-grid .col-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ==========================================================================
   4. INVESTMENT CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fcfdfe 0%, #f4f8fc 100%);
    border-bottom: 1px solid #eef2f7;
}

.calculator-section .calc-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(247, 170, 71, 0.1);
    color: #e09433;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.calculator-section .calc-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.calculator-section .calc-description {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.calculator-section .calc-box {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.calculator-section .control-panel {
    padding-right: 20px;
}

.calculator-section .input-group-label {
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 10px;
    display: block;
}

.calculator-section .amount-input-container {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.calculator-section .amount-input-container:focus-within {
    border-color: #0d6efd;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(66, 139, 202, 0.15);
}

.calculator-section .currency-prefix {
    font-size: 32px;
    font-weight: 800;
    color: #0d6efd;
    margin-right: 10px;
    user-select: none;
}

.calculator-section .amount-input-field {
    border: none;
    background: transparent;
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    width: 100%;
    outline: none;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

.calculator-section .custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 50px;
    background: #e5e7eb;
    outline: none;
    margin-bottom: 35px;
}

.calculator-section .custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f7aa47;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(247, 170, 71, 0.4);
    transition: transform 0.1s;
}

.calculator-section .custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-section .emotional-alert-box {
    background-color: rgba(30, 198, 117, 0.06);
    border-left: 4px solid #1ec675;
    border-radius: 0 12px 12px 0;
    padding: 15px 20px;
    margin-top: 20px;
}

.calculator-section .emotional-alert-box p {
    margin: 0;
    font-size: 13px;
    color: #17a35f;
    line-height: 1.6;
}

.calculator-section .comparison-panel {
    border-left: 1px solid #eef2f7;
    padding-left: 40px;
}

.calculator-section .graph-row {
    margin-bottom: 25px;
}

.calculator-section .graph-row:last-child {
    margin-bottom: 0;
}

.calculator-section .graph-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.calculator-section .instrument-name {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.calculator-section .instrument-return {
    font-size: 15px;
    font-weight: 800;
}

.calculator-section .comp-bar-wrapper {
    height: 35px;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.calculator-section .comp-bar-fill {
    height: 100%;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.calculator-section .bar-urun {
    background: linear-gradient(90deg, #f7aa47 0%, #f1931b 100%);
    box-shadow: 0 4px 15px rgba(247, 170, 71, 0.25);
}

.calculator-section .bar-gold {
    background-color: #d1a12c;
}

.calculator-section .bar-deposit {
    background-color: #9ca3af;
}

@media(max-width:991px) {
    .calculator-section {
        padding: 50px 0;
    }

    .calculator-section .calc-title {
        font-size: 28px;
    }

    .calculator-section .calc-box {
        padding: 25px;
        border-radius: 18px;
    }

    .calculator-section .comparison-panel {
        border-left: none;
        border-top: 1px solid #eef2f7;
        padding-left: 0;
        padding-top: 30px;
        margin-top: 30px;
    }

    .calculator-section .control-panel {
        padding-right: 0;
    }

    .calculator-section .amount-input-container {
        padding: 8px 15px;
    }

    .calculator-section .currency-prefix,
    .calculator-section .amount-input-field {
        font-size: 24px;
    }
}

@media(max-width:576px) {

    .calculator-section .currency-prefix,
    .calculator-section .amount-input-field {
        font-size: 20px;
    }

    .calculator-section .instrument-name {
        font-size: 12px;
    }

    .calculator-section .instrument-return {
        font-size: 13px;
    }

    .calculator-section .comp-bar-fill {
        font-size: 10px;
        padding-left: 10px;
    }
}

/* ==========================================================================
   5. HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
    padding: 90px 0;
    background-color: #ffffff;
    position: relative;
}

.how-it-works-section .badge-step {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(66, 139, 202, 0.08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.how-it-works-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.how-it-works-section .section-description {
    max-width: 600px;
    margin: 0 auto 60px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.how-it-works-section .steps-grid-row {
    position: relative;
}

@media (min-width: 992px) {
    .how-it-works-section .steps-grid-row::before {
        content: "";
        position: absolute;
        top: 25%;
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
        z-index: 1;
    }
}

.how-it-works-section .step-card {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works-section .icon-box-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
}

.how-it-works-section .icon-box {
    width: 100%;
    height: 100%;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.how-it-works-section .step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background-color: #f7aa47;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(247, 170, 71, 0.3);
    border: 2px solid #ffffff;
}

.how-it-works-section .step-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.how-it-works-section .step-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.how-it-works-section .step-card:hover .icon-box {
    background-color: #0d6efd;
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(66, 139, 202, 0.25);
}

.how-it-works-section .step-card:hover h4 {
    color: #0d6efd;
}

@media(max-width:991px) {
    .how-it-works-section {
        padding: 50px 0;
    }

    .how-it-works-section .section-title {
        font-size: 28px;
    }

    .how-it-works-section .section-description {
        margin-bottom: 40px;
        font-size: 14px;
    }

    .how-it-works-section .step-card {
        padding: 20px 10px;
    }

    .how-it-works-section .icon-box-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .how-it-works-section .icon-box {
        font-size: 22px;
        border-radius: 18px;
    }

    .how-it-works-section .step-card h4 {
        font-size: 15px;
    }

    .how-it-works-section .step-card p {
        font-size: 12px;
    }
}

/* ==========================================================================
   6. KPI / TRANSPARENCY SECTION
   ========================================================================== */
.kpi-section {
    padding: 90px 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #eef2f7;
}

.kpi-section .kpi-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(30, 198, 117, 0.08);
    color: #1ec675;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.kpi-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.kpi-section .section-description {
    max-width: 650px;
    margin: 0 auto 60px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.kpi-section .kpi-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.kpi-section .kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.kpi-section .kpi-card.ojk-mandated {
    border: 2px solid rgba(66, 139, 202, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.kpi-section .kpi-card.ojk-mandated::before {
    content: "Keberhasilan";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(66, 139, 202, 0.2);
}

.kpi-section .kpi-icon {
    font-size: 32px;
    color: #9ca3af;
    margin-bottom: 20px;
    display: inline-block;
}

.kpi-section .kpi-card.ojk-mandated .kpi-icon {
    color: #0d6efd;
}

.kpi-section .kpi-value-wrapper {
    margin-bottom: 10px;
}

.kpi-section .kpi-value {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.kpi-section .text-green-premium {
    color: #1ec675;
}

.kpi-section .text-blue-premium {
    color: #0d6efd;
}

.kpi-section .kpi-label {
    font-size: 15px;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 8px;
}

.kpi-section .kpi-subtext {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 0;
}

@media(max-width:991px) {
    .kpi-section {
        padding: 50px 0;
    }

    .kpi-section .section-title {
        font-size: 28px;
    }

    .kpi-section .section-description {
        margin-bottom: 40px;
        font-size: 14px;
    }

    .kpi-section .kpi-card {
        padding: 25px 15px;
        border-radius: 18px;
    }

    .kpi-section .kpi-value {
        font-size: 30px;
    }

    .kpi-section .kpi-label {
        font-size: 14px;
    }

    .kpi-section .kpi-subtext {
        font-size: 11px;
    }
}

/* ==========================================================================
   7. VIDEO / EDUCATION SECTION
   ========================================================================== */
.video-section {
    padding: 90px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eef2f7;
}

.video-section .video-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(66, 139, 202, 0.08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.video-section .section-description {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.video-section .slider-relative-container {
    position: relative;
    padding: 0 45px;
}

.video-section .video-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 10px 5px 25px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.video-section .video-slider-track::-webkit-scrollbar {
    display: none;
}

.video-section .video-slide-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
}

.video-section .video-wrapper-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    background-color: #1f2937;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.video-section .video-wrapper-card:hover {
    transform: translateY(-5px);
}

.video-section .aspect-ratio-16x9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-section .video-facade-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: filter 0.3s ease;
}

.video-section .video-wrapper-card:hover .video-facade-thumb {
    filter: brightness(0.75);
}

.video-section .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.15);
}

.video-section .play-btn-circle {
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7aa47;
    font-size: 22px;
    padding-left: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-section .video-wrapper-card:hover .play-btn-circle {
    background-color: #f7aa47;
    color: #ffffff;
    transform: scale(1.1);
}

.video-section .aspect-ratio-16x9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 3;
}

.video-section .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #eef2f7;
    color: #4b5563;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    z-index: 10;
    transition: all 0.3s ease;
    user-select: none;
}

.video-section .nav-arrow:hover {
    background-color: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 8px 25px rgba(66, 139, 202, 0.3);
}

.video-section .nav-arrow.arrow-left {
    left: -5px;
}

.video-section .nav-arrow.arrow-right {
    right: -5px;
}

@media(max-width: 991px) {
    .video-section {
        padding: 50px 0;
    }

    .video-section .section-title {
        font-size: 28px;
    }

    .video-section .section-description {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .video-section .video-slide-item {
        flex: 0 0 calc(50% - 12px);
    }

    .video-section .slider-relative-container {
        padding: 0 25px;
    }

    .video-section .nav-arrow.arrow-left {
        left: -10px;
    }

    .video-section .nav-arrow.arrow-right {
        right: -10px;
    }
}

@media(max-width: 768px) {
    .video-section .video-slide-item {
        flex: 0 0 85%;
    }

    .video-section .slider-relative-container {
        padding: 0;
    }

    .video-section .nav-arrow {
        display: none;
    }
}

/* ==========================================================================
   8. TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-bottom: 1px solid #eef2f7;
}

.testimonial-section .testi-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(66, 139, 202, 0.08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.testimonial-section .section-description {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-section .slider-container-relative {
    position: relative;
    padding: 0 45px;
}

.testimonial-section .testi-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 10px 5px 30px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.testimonial-section .testi-track::-webkit-scrollbar {
    display: none;
}

.testimonial-section .testi-slide-item {
    flex: 0 0 calc(50% - 12px);
    min-width: 320px;
}

.testimonial-section .testi-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-section .testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.testimonial-section .quote-mark {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 34px;
    color: rgba(66, 139, 202, 0.12);
    line-height: 1;
    pointer-events: none;
}

.testimonial-section .user-profile-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-section .avatar-wrapper {
    position: relative;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    aspect-ratio: 1 / 1;
}

.testimonial-section .user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: block;
}

.testimonial-section .company-badge-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50% !important;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    padding: 2px;
    display: block;
}

.testimonial-section .profile-meta {
    overflow: hidden;
}

.testimonial-section .profile-meta h5 {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-section .user-about {
    font-size: 13px;
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-section .user-loc {
    font-size: 11px;
    color: #9ca3af;
}

.testimonial-section .review-content-area {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    flex-grow: 1;
}

.testimonial-section .show-more-wrapper {
    margin-top: 8px;
}

.testimonial-section .show-more {
    font-size: 12px;
    font-weight: 700;
    color: #f7aa47;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.testimonial-section .show-more:hover {
    color: #e09433;
}

.testimonial-section .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #eef2f7;
    color: #4b5563;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    z-index: 10;
    transition: all 0.3s ease;
    user-select: none;
}

.testimonial-section .nav-arrow:hover {
    background-color: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 8px 25px rgba(66, 139, 202, 0.3);
}

.testimonial-section .nav-arrow.arrow-left {
    left: -5px;
}

.testimonial-section .nav-arrow.arrow-right {
    right: -5px;
}

@media(max-width: 991px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-section .section-title {
        font-size: 28px;
    }

    .testimonial-section .section-description {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .testimonial-section .testi-slide-item {
        flex: 0 0 100%;
        min-width: 280px;
    }

    .testimonial-section .slider-container-relative {
        padding: 0 20px;
    }

    .testimonial-section .nav-arrow.arrow-left {
        left: -10px;
    }

    .testimonial-section .nav-arrow.arrow-right {
        right: -10px;
    }
}

@media(max-width: 768px) {
    .testimonial-section .slider-container-relative {
        padding: 0;
    }

    .testimonial-section .nav-arrow {
        display: none;
    }

    .testimonial-section .testi-card {
        padding: 20px;
        border-radius: 18px;
    }
}

/* ==========================================================================
   9. MEDIA MENTIONS / LOGO GRID SECTION
   ========================================================================== */
.media-section {
    padding: 90px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eef2f7;
}

.media-section .media-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(66, 139, 202, 0.08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.media-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.media-section .section-description {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.media-section .media-filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.media-section .btn-media-pill {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.media-section .btn-media-pill:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.media-section .btn-media-pill.active {
    background-color: #0d6efd;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(66, 139, 202, 0.25);
}

.media-section .media-grid-row {
    transition: all 0.3s ease;
}

.media-section .terliput-card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.media-section .terliput-card-wrapper.is-hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: none;
}

.media-section .media-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    height: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.media-section .media-logo-link:hover {
    border-color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* KUNCI PERUBAHAN: Tampil full color secara default (grayscale & opacity dihapus) */
.media-section .img-media-brand {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Sedikit efek zoom saat kotak dihover */
.media-section .media-logo-link:hover .img-media-brand {
    transform: scale(1.05);
}

@media(max-width: 768px) {
    .media-section {
        padding: 50px 0;
    }

    .media-section .section-title {
        font-size: 28px;
    }

    .media-section .media-filter-container {
        margin-bottom: 25px;
        gap: 6px;
    }

    .media-section .btn-media-pill {
        padding: 8px 16px;
        font-size: 11px;
    }

    .media-section .media-logo-link {
        height: 85px;
        padding: 15px;
    }

    .media-section .img-media-brand {
        max-height: 35px;
    }
}

/* ==========================================================================
   10. INSIGHTS & ARTICLE SECTION
   ========================================================================== */
.article-section {
    padding: 90px 0;
    background-color: #fcfdfe;
    border-bottom: 1px solid #eef2f7;
}

.article-section .article-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(66, 139, 202, 0.08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.article-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.article-section .section-description {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.article-section .slider-relative-container {
    position: relative;
    padding: 0 15px;
}

.article-section .article-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 10px 5px 25px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.article-section .article-slider-track::-webkit-scrollbar {
    display: none;
}

.article-section .article-slide-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 310px;
}

.article-section .article-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-section .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.article-section .article-img-link {
    display: block;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background-color: #e5e7eb;
}

.article-section .article-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-section .article-card:hover .article-thumb {
    transform: scale(1.06);
}

.article-section .article-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-section .article-card-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
}

.article-section .article-card-title a {
    color: #1f2937;
    text-decoration: none;
}

.article-section .article-card-title a:hover {
    color: #0d6efd;
}

.article-section .article-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-section .link-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #f7aa47;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: max-content;
}

.article-section .link-read-more:hover {
    color: #e09433;
}

@media(max-width: 991px) {
    .article-section {
        padding: 50px 0;
    }

    .article-section .section-title {
        font-size: 28px;
    }

    .article-section .article-slide-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media(max-width: 768px) {
    .article-section .article-slide-item {
        flex: 0 0 82%;
    }

    .article-section .article-body {
        padding: 15px;
    }

    .article-section .article-card-title {
        font-size: 15px;
    }

    .article-section .article-excerpt {
        font-size: 12px;
    }
}

/* ==========================================================================
   11. CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta-section {
    padding: 90px 0 40px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-section .glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 139, 202, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.cta-section .circle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -10px;
}

.cta-section .circle-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -50px;
}

.cta-section .cta-box {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-section .cta-description {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-section .cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-section .btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cta-section .btn-register-investor {
    background-color: #f7aa47;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(247, 170, 71, 0.3);
}

.cta-section .btn-register-investor:hover {
    background-color: #e09433;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(247, 170, 71, 0.45);
    color: #ffffff;
}

.cta-section .btn-raise-issuer {
    background-color: #f8fafc;
    color: #0d6efd;
    border: 1px solid #e2e8f0;
}

.cta-section .btn-raise-issuer:hover {
    background-color: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 139, 202, 0.2);
}

.cta-section .cta-trust-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 25px;
    border-top: 1px solid #eef2f7;
    flex-wrap: wrap;
}

.cta-section .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.cta-section .trust-item i {
    font-size: 14px;
    color: #1ec675;
}

@media(max-width: 768px) {
    .cta-section {
        padding: 50px 0 30px;
    }

    .cta-section .cta-title {
        font-size: 26px;
    }

    .cta-section .cta-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-section .btn-cta-main {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 14px;
    }

    .cta-section .cta-btn-group {
        gap: 12px;
        margin-bottom: 25px;
    }

    .cta-section .cta-trust-footer {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }
}