
        :root {
            --primary: #084175;
            --primary-dark: #05305a;
            --secondary: #2bcfcf;
            --secondary-light: #67dfdf;
            --accent: #ff6b9d;
            --dark: #0a0e27;
            --light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #333;
            overflow-x: hidden;
            background: #fff;

        }
        
        .img-logo{
            width: 70px;
        }

        .layer{
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .layer-width{
            width: 100%;
            max-width: 1940px;
        }

        /* Animated Background */
        .bg-main {
            position: fixed;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            z-index: -1;
            background: linear-gradient(135deg, #c3cfe2 0%, #c3cfe2 100%);
            transform: translate(30px, -30px) rotate(120deg)
        }


        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            width: 100%;
            display: flex;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, rgba(43, 207, 207, 0.2), rgba(8, 65, 117, 0.2));
            border-radius: 50%;
            filter: blur(100px);
            top: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(43, 207, 207, 0.15), rgba(8, 65, 117, 0.15));
            border: 2px solid var(--secondary);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 20px;
            animation: slideInDown 0.8s ease;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 30px;
            animation: slideInLeft 1.2s ease;
        }

        /* Price Box */
        .price-box {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            backdrop-filter: blur(10px);
            border: 2px solid rgba(43, 207, 207, 0.3);
            border-radius: 20px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            animation: slideInLeft 1.4s ease;
        }

        .price-old {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2rem;
        }

        .price-new {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Buttons */
        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            padding: 15px 40px;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(43, 207, 207, 0.3);
        }

        .btn-testimoni {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(43, 207, 207, 0.3);
        }

        .btn-primary-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(43, 207, 207, 0.4);
        }

        .btn-primary-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary-gradient:hover::before {
            left: 100%;
        }

        .btn-outline-gradient {
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            padding: 15px 40px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-outline-gradient:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
        }

        /* Hero Image */
        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-img-main {
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 500px;
        }

        .hero-img-float {
            position: absolute;
            bottom: -30px;
            left: 0px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: floatImage 3s ease-in-out infinite;
        }

        @keyframes floatImage {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .text-scroll{
            display: none;
        }

        /* Problem Section */
        .problem-section {
            background: white;
            padding: 100px 0;
            position: relative;
        }

        .problem-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .problem-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
        }

        /* Solution Cards */
        .solution-card {
            background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 40px;
            height: 100%;
            border: 2px solid rgba(43, 207, 207, 0.2);
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .solution-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary);
        }

        .solution-card i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--secondary-light);
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Target Section */
        .target-card {
            background: white;
            border-radius: 25px;
            padding: 35px;
            height: 100%;
            border: 2px solid rgba(43, 207, 207, 0.2);
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .target-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(8, 65, 117, 0.2);
        }

        .target-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 10px 30px rgba(43, 207, 207, 0.3);
        }

        .gallery-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .gallery-track {
            display: flex;
            gap: 20px;
            animation: scrollGallery 55s linear infinite;
        }

        .gallery-track img {
            height: 180px;
            width: auto;
            border-radius: 14px;
            object-fit: cover;
        }

        @keyframes scrollGallery {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-100%);
            }
        }


        /* Testimonial */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            border: 2px solid rgba(43, 207, 207, 0.2);
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary)
        }



        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;

        }

        .accordion-item {
            border: none;
            margin-bottom: 14px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,.05);
        }

    .accordion-button {
      border-radius: 14px;
      font-weight: 700;
      padding: 18px 22px;
      background: #fff;
    }

    .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(8,65,117,.1), rgba(43,207,207,.1));
      color: var(--primary);
      box-shadow: none;
      border-radius: 14px 14px 0 0
    }

    .accordion-body {
      padding: 20px 26px;
    }


        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
            animation: pulse 4s ease-in-out infinite;
        }


        .cta-box {
            background: white;
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }


        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
        }

        footer a:hover {
            color: var(--secondary);
        }

        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Section Titles */
        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(43, 207, 207, 0.15), rgba(8, 65, 117, 0.15));
            border: 2px solid var(--secondary);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-img-float {
            position: absolute;
            bottom: -70px;
            left: 0px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: floatImage 3s ease-in-out infinite;
            max-width: 250px;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(43, 207, 207, 0.3);
        }

        .scroll-top.show {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(43, 207, 207, 0.4);
        }
        
                /* d-block = tampil, d-lg-none = hilang di layar lg ke atas */

        @media (max-width: 768px) {
            .bg-main {
                position: fixed;
                display: none;
                width: 200%;
                height: 200%;
                z-index: -1;

            }

            .hero::before {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }


            .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 431px) {
            .hero-img-float {
                max-width: 180px;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

             .hero-badge {
             font-size: 0.9rem;   
            }
            p{
                font-size: 1.2rem;
            }
            .price-old {
            font-size: 1.2rem;
            }

            .price-new {
            font-size: 1.2rem;
            }
            .btn-primary-gradient{
                font-size: 1.2rem;
            }
            .btn-outline-gradient{
                font-size: 1.2rem;
            }
            .section-badge{
                font-size: 0.9rem;
            }
            .section-title{
                font-size: 1.8rem;
            }
            h4{
                font-size: 1.4rem;
            }
            
            .gallery-wrapper{
                overflow: scroll;
            }
            .gallery-track {
            animation: none;
        }
        .text-scroll{
            display: block;
        }
        }

        @media (max-width: 376px) {
            .hero-img-float {
                max-width: 180px;
            }
              .hero h1{
                font-size: 2rem;
            }
            .hero-badge {
             font-size: 0.9rem;   
            }
            p{
                font-size: 1.2rem;
            }
            .price-old {
            font-size: 1.2rem;
            }

            .price-new {
            font-size: 1.2rem;
            }
            .btn-primary-gradient{
                font-size: 1.2rem;
            }
            .btn-outline-gradient{
                font-size: 1.2rem;
            }
            .section-badge{
                font-size: 0.9rem;
            }
            .section-title{
                font-size: 1.8rem;
            }
            h4{
                font-size: 1.4rem;
            }
        }

        @media (max-width: 321px) {
            .hero h1{
                font-size: 1.7rem;
            }
            .hero-badge {
             font-size: 0.8rem;   
            }
            p{
                font-size: 1.1rem;
            }
            .price-old {
            font-size: 1.1rem;
            }

            .price-new {
            font-size: 1.1rem;
            }
            .btn-primary-gradient{
                font-size: 1.1rem;
            }
            .btn-outline-gradient{
                font-size: 1.1rem;
            }
            .section-badge{
                font-size: 0.8rem;
            }
            .section-title{
                font-size: 1.7rem;
            }
            h4{
                font-size: 1.3rem;
            }

        }
        


        