/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #1e293b;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #e5e7eb;
    padding: 8px 12px;
}

.btn-login {
    border: 1px solid #38bdf8;
    border-radius: 6px;
}

.btn-register {
    background: #38bdf8;
    color: #000;
    border-radius: 6px;
}

.hero {
    background: linear-gradient(120deg, #2563eb, #38bdf8);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 25px;
}

.btn-primary {
    background: #fff;
    color: #2563eb;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}


.section {
    padding: 60px 30px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
}

.section-desc {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
}

.gray {
    background: #eef2ff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step {
    background: #fff;
    width: 220px;
    padding: 20px;
    border-radius: 10px;
}

.step span {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.footer {
    background: #1e293b;
    color: #e5e7eb;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
} */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #f8fafc;
            color: #334155;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        button, input, textarea {
            font-family: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            padding: 0 clamp(1rem, 15vw, 2rem) !important;
            margin-bottom: 1rem;
            margin-top: 1rem;
        }
        
        
        .text-center { text-align: center; }
        .text-right { text-align: right; }
        .text-left { text-align: left; }
        
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .flex-wrap { flex-wrap: wrap; }
        .gap-4 { gap: 1rem; }
        .gap-6 { gap: 1.5rem; }
        .gap-8 { gap: 2rem; }
        
        .hidden { display: none; }
        .block { display: block; }
        .inline-block { display: inline-block; }
        
        .relative { position: relative; }
        .absolute { position: absolute; }
        .fixed { position: fixed; }
        .sticky { position: sticky; }
        
        .w-full { width: 100%; }
        .h-auto { height: auto; }
        
        .mx-auto { margin-left: auto; margin-right: auto; }
        .my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
        .mt-1 { margin-top: 0.25rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-6 { margin-top: 1.5rem; }
        .mt-8 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mr-2 { margin-right: 0.5rem; }
        .mr-3 { margin-right: 0.75rem; }
        .mr-4 { margin-right: 1rem; }
        
        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .px-8 { padding-left: 2rem; padding-right: 2rem; }
        .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
        .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
        .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
        
        .rounded { border-radius: 0.25rem; }
        .rounded-lg { border-radius: 0.5rem; }
        .rounded-xl { border-radius: 0.75rem; }
        .rounded-2xl { border-radius: 1rem; }
        .rounded-full { border-radius: 9999px; }
        
        .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
        .shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
        .shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
        .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
        .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        
        .border { border: 1px solid #e2e8f0; }
        .border-t { border-top: 1px solid #e2e8f0; }
        .border-b { border-bottom: 1px solid #e2e8f0; }
        
        .bg-white { background-color: white; }
        .bg-gray-50 { background-color: #f8fafc; }
        .bg-gray-100 { background-color: #f1f5f9; }
        .bg-gray-900 { background-color: #0f172a; }
        
        .bg-blue-50 { background-color: #eff6ff; }
        .bg-blue-100 { background-color: #dbeafe; }
        .bg-blue-500 { background-color: #3b82f6; }
        .bg-blue-600 { background-color: #2563eb; }
        .bg-blue-700 { background-color: #1d4ed8; }
        
        .bg-indigo-50 { background-color: #eef2ff; }
        .bg-indigo-100 { background-color: #e0e7ff; }
        .bg-indigo-500 { background-color: #6366f1; }
        .bg-indigo-600 { background-color: #4f46e5; }
        
        .bg-green-50 { background-color: #f0fdf4; }
        .bg-green-100 { background-color: #dcfce7; }
        .bg-green-500 { background-color: #22c55e; }
        .bg-green-600 { background-color: #16a34a; }
        
        .bg-yellow-50 { background-color: #fefce8; }
        .bg-yellow-100 { background-color: #fef9c3; }
        .bg-yellow-500 { background-color: #eab308; }
        .bg-yellow-600 { background-color: #ca8a04; }
        
        .bg-purple-100 { background-color: #f3e8ff; }
        .bg-purple-500 { background-color: #a855f7; }
        .bg-red-100 { background-color: #fee2e2; }
        .bg-red-500 { background-color: #ef4444; }
        .bg-red-600 { background-color: #dc2626; }
        
        .text-white { color: white; }
        .text-gray-500 { color: #64748b; }
        .text-gray-600 { color: #475569; }
        .text-gray-700 { color: #334155; }
        .text-gray-800 { color: #1e293b; }
        .text-gray-900 { color: #0f172a; }
        
        .text-blue-500 { color: #3b82f6; }
        .text-blue-600 { color: #2563eb; }
        .text-blue-700 { color: #1d4ed8; }
        .text-blue-800 { color: #1e40af; }
        
        .text-green-500 { color: #22c55e; }
        .text-green-600 { color: #16a34a; }
        
        .text-yellow-500 { color: #eab308; }
        .text-yellow-600 { color: #ca8a04; }
        
        .text-purple-500 { color: #a855f7; }
        .text-purple-600 { color: #9333ea; }
        
        .text-red-500 { color: #ef4444; }
        .text-red-600 { color: #dc2626; }
        
        .text-sm { font-size: 0.875rem; }
        .text-base { font-size: 1rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }
        .text-5xl { font-size: 3rem; }
        .text-6xl { font-size: 3.75rem; }
        
        .font-light { font-weight: 300; }
        .font-normal { font-weight: 400; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        
        .z-10 { z-index: 10; }
        .z-20 { z-index: 20; }
        .z-30 { z-index: 30; }
        .z-40 { z-index: 40; }
        .z-50 { z-index: 50; }
        
        .transition { transition: all 0.3s ease; }
        .transition-all { transition: all 0.3s ease; }
        .duration-300 { transition-duration: 0.3s; }
        
        .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
        .hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
        .hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
        
        .hover\:bg-blue-600:hover { background-color: #2563eb; }
        .hover\:bg-blue-700:hover { background-color: #1d4ed8; }
        .hover\:bg-gray-50:hover { background-color: #f8fafc; }
        .hover\:bg-gray-100:hover { background-color: #f1f5f9; }
        
        .hover\:text-blue-600:hover { color: #2563eb; }
        .hover\:text-blue-700:hover { color: #1d4ed8; }
        .hover\:text-white:hover { color: white; }
        
        .hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
        .hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
        .hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes pulseGlow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .animate-float {
            /* animation: float 3s ease-in-out infinite; */
        }
        
        .animate-pulse {
            /* animation: pulseGlow 2s ease-in-out infinite; */
        }
        
        
        .gradient-text {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .blue-glow {
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        }
        
        .blue-glow:hover {
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
        }
        
        
        .grid {
            display: grid;
        }
        
        .grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
        
        
        @media (min-width: 640px) {
            .sm\:flex-row { flex-direction: row; }
            .sm\:flex-col { flex-direction: column; }
            .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (min-width: 768px) {
            .md\:flex { display: flex; }
            .md\:hidden { display: none; }
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
            .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
            .md\:flex-row { flex-direction: row; }
            .md\:text-5xl { font-size: 3rem; }
        }
        
        @media (min-width: 1024px) {
            .lg\:flex-row { flex-direction: row; }
            .lg\:w-1\/2 { width: 50%; }
            .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
            .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
            .lg\:text-6xl { font-size: 3.75rem; }
        }
        
        
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #2563eb;
        }
        
        
        nav {
            background: white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-icon {
            width: 50px;
            height: 40px;
            /* background: #3b82f6; */
            /* border-radius: 0.5rem; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .logo-text span:first-child {
            color: #3b82f6;
        }
        
        .logo-text span:last-child {
            color: #1e40af;
        }
        
        .logo-text p {
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: -0.25rem;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-link {
            color: #4b5563;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #3b82f6;
        }
        
        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .btn-login {
            color: #3b82f6;
            font-weight: 500;
        }
        
        .btn-login:hover {
            color: #2563eb;
        }
        
        .btn-register {
            background: #3b82f6;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        
        .btn-register:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #4b5563;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-menu {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid #e5e7eb;
        }
        
        .mobile-menu.active {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu, .nav-buttons {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                display: none;
            }
        }
        
        
        .hero {
            padding-top: 6rem;
            padding-bottom: 4rem;
            background: linear-gradient(135deg, #eff6ff 0%, white 50%, #e0e7ff 100%);
        }
        
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        
        @media (min-width: 1024px) {
            .hero-content {
                flex-direction: row;
                align-items: center;
            }
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #dbeafe;
            color: #1e40af;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        
        .hero-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        .hero-title span {
            color: #3b82f6;
        }
        
        .hero-description {
            font-size: 1.125rem;
            color: #475569;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
            
            .hero-title {
                font-size: 3rem;
            }
        }
        
        .btn-primary {
            background: #3b82f6;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        
        .btn-primary:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: #3b82f6;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            border: 2px solid #3b82f6;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .btn-secondary:hover {
            background: #f8fafc;
            transform: translateY(-2px);
        }
        
        .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #3b82f6;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .hero-image {
            flex: 1;
            position: relative;
        }
        
        /* .hero-illustration {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        } */
         .welcome-illustration{
            width:100%;
            max-width:800px;
        }

        
        .floating-element {
            position: absolute;
            background: white;
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .floating-element i {
            font-size: 1.5rem;
        }
        
        .floating-1 {
            top: -1.5rem;
            left: -1.5rem;
            background: #dbeafe;
            color: #3b82f6;
            /* animation: float 3s ease-in-out infinite; */
        }
        
        .floating-2 {
            bottom: -1.5rem;
            right: -1.5rem;
            background: #e0e7ff;
            color: #4f46e5;
            /* animation: float 3s ease-in-out infinite 0.3s; */
        }
        
        .floating-3 {
            top: 50%;
            right: -3rem;
            background: #dbeafe;
            color: #1d4ed8;
            /* animation: float 3s ease-in-out infinite 0.7s; */
        }
        
        
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.25rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.125rem;
            color: black;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-dampak {
            color: white !important;
        }

        .section-dampak p {
            color: rgba(255, 255, 255, 0.9) !important;
        }

        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .feature-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #3b82f6;
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: #eff6ff;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon i {
            font-size: 1.5rem;
            color: #3b82f6;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: #64748b;
            margin-bottom: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }
        
        .feature-list i {
            color: #3b82f6;
        }
        
        /* ===== ADDITIONAL FEATURES ===== */
        .additional-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .additional-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .additional-features {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .mini-feature {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .mini-feature:hover {
            background: white;
            border-color: #3b82f6;
            transform: translateY(-0.25rem);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .mini-feature i {
            font-size: 1.5rem;
            color: #3b82f6;
            margin-bottom: 1rem;
        }
        
        .mini-feature h4 {
            font-size: 1rem;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }
        
        .mini-feature p {
            font-size: 0.875rem;
            color: #64748b;
        }
        
        .how-it-works {
            background: #eff6ff;
        }
        
        .steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            position: relative;
        }
        
        @media (min-width: 768px) {
            .steps {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .steps::before {
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 75%;
                height: 2px;
                background: #bfdbfe;
            }
        }
        
        .step-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .step-icon {
            width: 64px;
            height: 64px;
            background: #eff6ff;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .step-icon i {
            font-size: 1.5rem;
            color: #3b82f6;
        }
        
        .step-card h3 {
            font-size: 1.25rem;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }
        
        .step-card p {
            color: #64748b;
        }
        
        
        .stats-section {
            background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%);
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .stat-box {
            text-align: center;
        }
        
        .stat-box .number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .stat-box .label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
        }
        
        .progress-bars {
            max-width: 800px;
            margin: 4rem auto 0;
        }
        
        .progress-bar {
            margin-bottom: 1.5rem;
        }
        
        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .progress-track {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            border-radius: 4px;
        }
    
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .testimonial-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            background: #eff6ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e40af;
            font-weight: 700;
        }
        
        .testimonial-info h4 {
            color: #0f172a;
            margin-bottom: 0.25rem;
        }
        
        .testimonial-info p {
            color: #3b82f6;
            font-size: 0.875rem;
        }
        
        .testimonial-text {
            color: #64748b;
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-stars {
            color: #fbbf24;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
        }
        
        .cta-content p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }
        
        .cta-primary {
            background: white;
            color: #3b82f6;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .cta-primary:hover {
            background: #f8fafc;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .cta-secondary {
            background: transparent;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .cta-secondary:hover {
            background: white;
            color: #3b82f6;
            transform: translateY(-2px);
        }
        
        .cta-note {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        @media (min-width: 1024px) {
            .contact-content {
                grid-template-columns: repeat(2, 1fr);
                align-items: center;
            }
        }
        
        .contact-info h2 {
            font-size: 2rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }
        
        .contact-info > p {
            color: #64748b;
            margin-bottom: 2rem;
        }
        
        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .contact-icon {
            width: 48px;
            height: 48px;
            background: #eff6ff;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
        }
        
        .contact-details h4 {
            color: #0f172a;
            margin-bottom: 0.25rem;
        }
        
        .contact-details p {
            color: #64748b;
        }
        
        .contact-details .note {
            font-size: 0.875rem;
            color: #94a3b8;
        }
        
        .contact-form-container {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 2rem;
        }
        
        .contact-form-container h3 {
            font-size: 1.5rem;
            color: #0f172a;
            margin-bottom: 1.5rem;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .form-group label {
            display: block;
            color: #475569;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-submit {
            background: #3b82f6;
            color: white;
            padding: 0.875rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        
        .form-submit:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        
        footer {
            background: #0f172a;
            color: white;
            padding-top: 3rem;
            padding-bottom: 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-company {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .footer-logo-icon {
            width: 80px;
            height: 80px;
            /* background: #3b82f6; */
            /* border-radius: 0.5rem; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .footer-logo-text h3 {
            font-size: 1.25rem;
        }
        
        .footer-logo-text p {
            font-size: 0.75rem;
            color: #94a3b8;
        }
        
        .footer-company p {
            color: #94a3b8;
            font-size: 0.875rem;
            line-height: 1.5;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social a {
            color: #94a3b8;
            font-size: 1.125rem;
            transition: color 0.3s ease;
        }
        
        .footer-social a:hover {
            color: #3b82f6;
        }
        
        .footer-section h4 {
            font-size: 1.125rem;
            margin-bottom: 1rem;
        
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #94a3b8;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #3b82f6;
        }

        .footer-section-p  {
            padding-bottom: 1rem;
        }
        
        .footer-newsletter p {
            color: #94a3b8;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .newsletter-input {
            padding: 0.5rem 1rem;
            border: 1px solid #334155;
            border-radius: 0.5rem;
            background: #1e293b;
            color: white;
            font-size: 0.875rem;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: #3b82f6;
        }
        
        .newsletter-btn {
            background: #3b82f6;
            color: white;
            padding: 0.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        
        .newsletter-btn:hover {
            background: #2563eb;
        }
        
        .footer-divider {
            border-top: 1px solid #334155;
            padding-top: 2rem;
        }
        
        .footer-bottom-ifd {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
            }
        }
        
        .copyright {
            color: #94a3b8;
            font-size: 0.875rem;
            
        }
        
        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-legal a {
            color: #94a3b8;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: #3b82f6;
        }
        
        .footer-credits {
            text-align: center;
            color: #64748b;
            font-size: 0.75rem;
            margin-top: 1.5rem;
        }
        
        
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .toast.show {
            transform: translateX(0);
        }
        
        .toast.success {
            background: #3b82f6;
            color: white;
        }
        
        .toast.error {
            background: #ef4444;
            color: white;
        }
   
        .floating-contact {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 9999;
        }

        .whatsapp-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 10px 16px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all .3s ease;
        }

        .whatsapp-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .wa-icon {
            width: 45px;
            height: 45px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wa-icon i {
            color: white;
            font-size: 22px;
        }

        .wa-text {
            display: flex;
            flex-direction: column;
        }

        .wa-text strong{
        font-size: 14px;
        color: #0f172a;
        }

        .wa-text span{
        font-size: 12px;
        color: #64748b;
        }

        .transparency-faq-section {
            padding: 80px 0;
        }

        .transparency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }

        .trans-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .trans-card:hover {
            background: #eef2ff;
            transform: translateY(-4px);
        }

        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 22px;
        }

        .faq-item {
            border-bottom: 1px solid #e5e7eb;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 0;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-question .icon {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer p {
            padding-bottom: 16px;
            color: #4b5563;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(45deg);
        }

        .alert-success-custom{
            background: #d4edda;
            color: #155724;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 14px;
            border-left: 4px solid #28a745;
            animation: fadeIn .4s ease;
        }

        .form-submit:disabled{
            opacity: 0.8;
            cursor: not-allowed;
        }

        @keyframes fadeIn{
            from{
                opacity: 0;
                transform: translateY(-10px);
            }
            to{
                opacity: 1;
                transform: translateY(0);
            }
        }

#contact {
    scroll-margin-top: 100px;
}