:root {
    --primary-blue: #0C5A96;
    --green: #57B600;
    --accent-orange: #F68B1F;
    --dark-blue: #12243A;
    --light-gray: #F2F5F9;
    --white: #FFFFFF;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--dark-blue);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -60px) scale(1.1); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.animate-scale-up {
    animation: scaleUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.float-on-hover {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.float-on-hover:hover {
    transform: translateY(-10px) scale(1.02);
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Ambient Blobs */
.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: floatBlob 12s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.ambient-blob.blob-blue {
    background-color: var(--primary-blue);
}
.ambient-blob.blob-green {
    background-color: var(--green);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Spacing */
.section-padding {
    padding: 100px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-blue);
}

h1 {
    font-weight: 900;
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h3 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.01em;
}

.text-primary-blue { color: var(--primary-blue) !important; }
.text-green { color: var(--green) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }

.bg-light-gray { background-color: var(--light-gray) !important; }
.bg-primary-blue { background-color: var(--primary-blue) !important; }

.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--green) 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 24px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 182, 0, 0.35);
    color: var(--white);
}

.btn-secondary-custom {
    background-color: var(--white);
    color: var(--primary-blue);
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 24px;
    border: 1px solid var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.navbar.glass-nav {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 15px;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(12, 90, 150, 0.04);
    border: 1px solid rgba(12, 90, 150, 0.08);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(12, 90, 150, 0.03);
}

.hero-bg-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    z-index: -1;
    opacity: 0.1; /* Adjust based on asset or use CSS shapes */
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Trust Strip */
.trust-strip {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 20px;
}
.trust-text h4 {
    font-size: 16px;
    margin: 0;
    font-family: var(--font-body);
}
.trust-text p {
    font-size: 13px;
    color: #718096;
    margin: 0;
}

/* Section Headings */
.section-subtitle {
    color: var(--green);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    margin-bottom: 20px;
}
.section-desc {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Cards Grid */
.audit-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.audit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 90, 150, 0.08), 0 4px 12px rgba(12, 90, 150, 0.04);
}
.audit-card-img {
    height: 160px;
    object-fit: cover;
    width: 100%;
}
.audit-card-body {
    padding: 20px;
}
.audit-card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
    margin-bottom: 15px;
    border: 3px solid var(--white);
    position: relative;
}
.audit-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.audit-card-text {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
}

/* How It Works */
.steps-container {
    position: relative;
}
.step-item {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}
.step-icon-wrapper img {
    width: 40px;
    height: 40px;
}
.step-icon-wrapper i {
    font-size: 32px;
    color: var(--primary-blue);
}
.step-number {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background-color: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.step-text {
    font-size: 16px;
    color: #4a5568;
}

/* Desktop Connector Lines */
@media (min-width: 992px) {
    .step-item::after {
        content: '';
        position: absolute;
        top: 94px;
        left: 50%;
        width: 100%;
        height: 2px;
        background-image: linear-gradient(to right, var(--primary-blue) 50%, transparent 50%);
        background-size: 15px 100%;
        z-index: 1;
    }
    .step-item:last-child::after {
        display: none;
    }
}

/* Report & Founder Section */
.report-list li {
    margin-bottom: 10px;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.report-list li i {
    color: var(--green);
    margin-top: 4px;
}

.founder-quote {
    background-color: rgba(12, 90, 150, 0.03);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    font-style: italic;
    color: #4a5568;
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.6;
}

/* Why Choose Us & Who is this for */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.02);
    border-radius: 24px;
    height: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 90, 150, 0.08);
}
.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(12, 90, 150, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.1);
    background: rgba(12, 90, 150, 0.08);
}
.feature-box i {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 0;
}
.feature-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.feature-box p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

/* Swiper Carousel */
.swiper-pagination-bullet-active {
    background-color: var(--primary-blue) !important;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.02);
}
.testimonial-quote-icon {
    font-size: 40px;
    color: rgba(12, 90, 150, 0.05);
    position: absolute;
    top: 30px;
    right: 30px;
}
.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}
.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
}
.testimonial-author {
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0;
}
.testimonial-author-title {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 0;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--primary-blue);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--green) 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    margin: 60px 15px;
    box-shadow: 0 10px 30px rgba(12, 90, 150, 0.15);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}
.cta-section h2 {
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}
footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: white;
}
.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
}
.social-icons a:hover {
    background-color: var(--primary-blue);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 28px;
    }
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }
    .cta-section {
        margin: 40px 0;
        border-radius: 0;
    }
}

/* Premium Footer */
.footer-premium {
    background-color: #0F172A;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--white);
}
.footer-social {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.btn-shimmer {
    background: linear-gradient(90deg, var(--green) 0%, var(--primary-blue) 100%);
    border: none;
    box-shadow: 0 8px 20px rgba(12, 90, 150, 0.3);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    color: white !important;
}
.btn-shimmer:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(12, 90, 150, 0.4);
}

@keyframes modalZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/* Premium Modal */
.modal.fade .modal-dialog {
    transition: none;
}
.modal.show .modal-dialog {
    animation: modalZoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.modal-content-premium {
    background: #ffffff;
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.modal-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(12, 90, 150, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 16px rgba(12, 90, 150, 0.1);
}
.premium-input {
    background-color: #F8FAFC;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: none !important;
}
.premium-input:focus {
    background-color: #ffffff;
    border-color: rgba(12, 90, 150, 0.3);
    box-shadow: 0 0 0 4px rgba(12, 90, 150, 0.08) !important;
}
.premium-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 8px;
}
