:root {
    --primary: #92400e;
    --primary-light: #b45309;
    --primary-dark: #78350f;
    --accent: #f59e0b;
    --text: #451a03;
    --text-light: #78350f;
    --bg: #fffbeb;
    --bg-dark: #fef3c7;
    --white: #ffffff;
    --border: #fcd34d;
    --shadow: 0 4px 20px rgba(146, 64, 14, 0.1);
    --shadow-hover: 0 8px 30px rgba(146, 64, 14, 0.2);
}

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.nav127 {
    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(120, 53, 15, 0.3);
}

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

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

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

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

.nav-menu127 a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

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

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

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

.mobile-toggle127 span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
}

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

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

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

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

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

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

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

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

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

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

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

.stats127 {
    padding: 60px 20px;
    background: var(--white);
}

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

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

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

.stat-icon127 {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

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

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

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

.module127 { padding: 80px 20px; }

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

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

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

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

.features-grid127 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

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

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

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

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

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

.process-grid127 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card127 {
    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-card127:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.process-icon127 {
    width: 70px;
    height: 70px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    border: 3px solid var(--border);
}

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

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

.contact-grid127 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card127 {
    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-card127:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon127 {
    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-icon127 svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

.footer-bottom127 {
    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;
}

@media (max-width: 1024px) {
    .features-grid127 { grid-template-columns: repeat(2, 1fr); }
    .process-grid127 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu127 {
        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-menu127.active { transform: translateY(0); }
    .mobile-toggle127 { display: flex; }
    .hero127 h1 { font-size: 32px; }
    .stats-container127 { grid-template-columns: repeat(2, 1fr); }
    .features-grid127, .process-grid127, .contact-grid127 { grid-template-columns: 1fr; }
    .footer-main127 { grid-template-columns: 1fr; gap: 30px; }
}
