:root {
    --primary: #003576;
    --primary-dark: #002a5e;
    --primary-light: #1a4a8a;
    --secondary: #26A69A;
    --secondary-dark: #1d8b80;
    --secondary-light: #4db8ad;
    --gradient: linear-gradient(135deg, #003576 0%, #26A69A 100%);
    --gradient-hover: linear-gradient(135deg, #002a5e 0%, #1d8b80 100%);
    --gradient-light: linear-gradient(135deg, rgba(0, 53, 118, 0.05) 0%, rgba(38, 166, 154, 0.05) 100%);
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #f8fafc;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar-fixed {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 53, 118, 0.08);
    transition: 0.3s;
}

.nav-wrapper {
    padding: 0 40px;
}

.brand-logo {
    font-weight: 800;
    font-size: 1.8rem !important;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.brand-logo i {
    font-size: 2.2rem;
    margin-right: 8px;
    color: var(--secondary);
}

.brand-logo span {
    color: var(--secondary);
}

.nav-links a {
    color: #1e293b !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    padding: 0 15px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a:hover {
    color: var(--primary) !important;
}

.btn-nav {
    background: var(--gradient) !important;
    border-radius: 50px !important;
    padding: 0 30px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 53, 118, 0.3);
    transition: 0.3s;
    letter-spacing: 0.3px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 53, 118, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 53, 118, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 166, 154, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 53, 118, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 53, 118, 0.12);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 0 35px;
    height: 55px;
    line-height: 55px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-primary-hero {
    background: var(--gradient) !important;
    box-shadow: 0 4px 20px rgba(0, 53, 118, 0.35);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 53, 118, 0.45);
}

.btn-outline-hero {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline-hero:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 50px;
    display: flex;
    gap: 50px;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero Image */
.hero-image {

    z-index: 2;
}

.hero-image .img-wrapper {
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 53, 118, 0.12);
    border: 1px solid rgba(0, 53, 118, 0.06);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(0, 53, 118, 0.06);
}

.floating-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 53, 118, 0.08);
    color: var(--primary);
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card.card-1 .icon-circle {
    background: rgba(38, 166, 154, 0.12);
    color: var(--secondary);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
    height: 100%;
    border: 1px solid rgba(0, 53, 118, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 53, 118, 0.08);
    border-color: rgba(0, 53, 118, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(0, 53, 118, 0.06);
    color: var(--primary);
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

.feature-card h5 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #f8fafc;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(0, 53, 118, 0.25);
}

.step-connector {
    position: absolute;
    top: 45px;
    left: 55%;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.15;
}

.step-card h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    border: 2px solid transparent;
    transition: 0.4s;
    text-align: center;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 53, 118, 0.08);
}

.pricing-card.popular {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(0, 53, 118, 0.02), rgba(38, 166, 154, 0.02));
    position: relative;
}

.pricing-card.popular::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 5px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 20px 0 10px;
    letter-spacing: -1px;
}

.pricing-card .price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #94a3b8;
}

.pricing-card ul {
    text-align: left;
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #475569;
    font-weight: 400;
}

.pricing-card ul li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.btn-pricing {
    border-radius: 50px;
    padding: 0 40px;
    height: 50px;
    line-height: 50px;
    text-transform: none;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.btn-pricing-primary {
    background: var(--gradient) !important;
    box-shadow: 0 4px 15px rgba(0, 53, 118, 0.25);
}

.btn-pricing-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 53, 118, 0.35);
}

.btn-pricing-outline {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

.btn-pricing-outline:hover {
    background: var(--primary) !important;
    color: white !important;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 53, 118, 0.04);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 53, 118, 0.06);
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-card .author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.testimonial-card .author .avatar.bg-primary {
    background: var(--primary);
}

.testimonial-card .author .avatar.bg-secondary {
    background: var(--secondary);
}

.testimonial-card .author .avatar.bg-dark {
    background: #1e293b;
}

.testimonial-card .author h6 {
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}

.testimonial-card .author span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-section h2 {
    font-weight: 800;
    color: white;
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
}

.btn-cta {
    background: white !important;
    color: var(--primary) !important;
    border-radius: 50px;
    padding: 0 45px;
    height: 55px;
    line-height: 55px;
    font-weight: 700;
    text-transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
    background: #0f172a;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary);
}

footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.6);
}

footer .social-icons a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

footer .brand-footer {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

footer .brand-footer span {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .step-connector {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .nav-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 120px 0 40px;
    }

    .hero-buttons .btn {
        margin-bottom: 15px;
        width: 100%;
        margin-right: 0;
    }

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

    .hero-stats {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge colors */
.badge-primary {
    background: rgba(0, 53, 118, 0.08) !important;
    color: var(--primary) !important;
}
