:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #fbbf24;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #f0f9ff;
    --bg-dark: #e0f2fe;
    --white: #ffffff;
    --border: #bfdbfe;
    --shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    --shadow-hover: 0 8px 30px rgba(30, 64, 175, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
.nav124 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.nav-container124 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo124 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.nav-logo124 svg {
    width: 32px;
    height: 32px;
}

.nav-menu124 {
    display: flex;
    gap: 35px;
}

.nav-menu124 a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu124 a:hover,
.nav-menu124 a.active {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-btn124 {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--text) !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn124:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.mobile-toggle124 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle124 span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero124 {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 50%, var(--white) 100%);
    text-align: center;
}

.hero-container124 {
    max-width: 900px;
    margin: 0 auto;
}

.hero124 h1 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero124 h1 span {
    color: var(--primary);
}

.hero124 p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons124 {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn124 {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary124 {
    background: var(--primary);
    color: var(--white);
}

.btn-primary124:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.btn-secondary124 {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary124:hover {
    background: var(--primary);
    color: var(--white);
}

/* Trust Badges */
.trust-badges124 {
    padding: 50px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.badges-container124 {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-badge124 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.trust-badge124 svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.trust-badge124 span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Stats Section */
.stats124 {
    padding: 60px 20px;
    background: var(--white);
}

.stats-container124 {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item124 {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg);
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.stat-item124:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon124 {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon124 svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.stat-number124 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label124 {
    font-size: 14px;
    color: var(--text-light);
}

/* Module Section */
.module124 {
    padding: 80px 20px;
}

.module-container124 {
    max-width: 1200px;
    margin: 0 auto;
}

.module-header124 {
    text-align: center;
    margin-bottom: 50px;
}

.module-header124 h2 {
    font-size: 36px;
    color: var(--text);
    margin-bottom: 15px;
}

.module-header124 p {
    font-size: 18px;
    color: var(--text-light);
}

/* Features Grid */
.features-grid124 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card124 {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card124::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.feature-card124:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon124 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon124 svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-card124 h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card124 p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Shield Features */
.shield-grid124 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.shield-card124 {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.shield-card124:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.shield-icon124 {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon124 svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.shield-card124 h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
}

.shield-card124 p {
    font-size: 14px;
    color: var(--text-light);
}

/* Process Grid */
.process-grid124 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card124 {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.process-card124:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.process-icon124 {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    border: 4px solid var(--bg);
}

.process-card124 h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
}

.process-card124 p {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Grid */
.contact-grid124 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card124 {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.contact-card124:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon124 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon124 svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.contact-card124 h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
}

.contact-card124 p {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
.footer124 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-container124 {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main124 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand124 h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-brand124 p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-links124 h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links124 ul li {
    margin-bottom: 12px;
}

.footer-links124 a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links124 a:hover {
    color: var(--white);
}

.footer-bottom124 {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid124 {
        grid-template-columns: repeat(2, 1fr);
    }

    .shield-grid124 {
        grid-template-columns: 1fr;
    }

    .process-grid124 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu124 {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s;
    }

    .nav-menu124.active {
        transform: translateY(0);
    }

    .mobile-toggle124 {
        display: flex;
    }

    .hero124 h1 {
        font-size: 32px;
    }

    .badges-container124 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .stats-container124 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid124,
    .process-grid124,
    .contact-grid124 {
        grid-template-columns: 1fr;
    }

    .footer-main124 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
