:root {
    --primary: #374151;
    --primary-light: #4b5563;
    --primary-dark: #1f2937;
    --accent: #f59e0b;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #f9fafb;
    --bg-dark: #e5e7eb;
    --white: #ffffff;
    --border: #d1d5db;
    --shadow: 0 4px 20px rgba(55, 65, 81, 0.1);
    --shadow-hover: 0 8px 30px rgba(55, 65, 81, 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 */
.nav125 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container125 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--accent);
}

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

.nav-logo125 svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

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

.nav-menu125 a {
    font-size: 15px;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu125 a:hover,
.nav-menu125 a.active {
    color: var(--white);
    border-bottom-color: var(--accent);
}

.nav-btn125 {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--primary-dark) !important;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: none !important;
}

.nav-btn125:hover {
    background: #d97706;
    transform: translateY(-2px);
}

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

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

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

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

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

.hero125 h1 span {
    color: var(--accent);
}

.hero125 p {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 40px;
}

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

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

.btn-primary125 {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary125:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

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

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

/* Data Table Section */
.data-table125 {
    padding: 60px 20px;
    background: var(--white);
}

.table-container125 {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.data-table125 table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table125 th,
.data-table125 td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table125 th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.data-table125 tr:hover {
    background: var(--bg);
}

.data-table125 .highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Stats Section */
.stats125 {
    padding: 60px 20px;
    background: var(--bg-dark);
}

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

.stat-item125 {
    background: var(--white);
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s;
}

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

.stat-number125 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.stat-label125 {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
    text-transform: uppercase;
}

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

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

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

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

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

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

.feature-card125 {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.feature-card125:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon125 {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.feature-card125 h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

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

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

.process-card125 {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
    position: relative;
}

.process-card125::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}

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

.process-step125 {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 18px;
}

.process-card125 h3 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

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

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

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

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

.contact-icon125 {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.contact-card125 h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card125 p {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Footer */
.footer125 {
    background: var(--primary-dark);
    color: #d1d5db;
    padding: 60px 20px 30px;
}

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

.footer-main125 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #374151;
}

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

.footer-brand125 p {
    font-size: 14px;
    color: #9ca3af;
}

.footer-links125 h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links125 a {
    font-size: 14px;
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-links125 a:hover {
    color: var(--accent);
}

.footer-bottom125 {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

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

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

@media (max-width: 768px) {
    .nav-menu125 {
        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-menu125.active {
        transform: translateY(0);
    }

    .mobile-toggle125 {
        display: flex;
    }

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

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

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

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

    .data-table125 {
        overflow-x: scroll;
    }
}
