* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #fefaf5;
    color: #2d3e2b;
    scroll-behavior: smooth;
    line-height: 1.5;
}
:root {
    --primary: #e67e22;
    --primary-dark: #b85e0a;
    --secondary: #2a6b47;
    --accent: #f9c74f;
    --light-bg: #fff7ef;
    --gray-text: #5a5a5a;
    --border-light: #ede0d4;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
    border-bottom: 1px solid var(--border-light);
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}
.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.logo p {
    font-size: 0.75rem;
    color: var(--gray-text);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2d3e2b;
    transition: 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}
.btn-outline {
    border: 1.5px solid var(--primary);
    background: transparent;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    color: var(--primary);
    transition: 0.2s;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(230,126,34,0.25);
}
.btn-secondary {
    background: var(--secondary);
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}
.hero {
    background: linear-gradient(105deg, #fff1e0 0%, #fdebd0 100%);
    border-radius: 0 0 48px 48px;
    margin-bottom: 2rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0 4rem 0;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c5a2e;
}
.hero-highlight {
    color: var(--primary);
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 1.5rem;
}
.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
}
.hero-img {
    border-radius: 32px;
    height: 320px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    position: relative;
}
section {
    padding: 4rem 0;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.section-sub {
    text-align: center;
    color: var(--gray-text);
    max-width: 680px;
    margin: 0 auto 3rem auto;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    border: 1px solid var(--border-light);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.1);
}
.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.card-content {
    padding: 1.5rem;
}
.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.tag {
    display: inline-block;
    background: #f5e6d3;
    color: var(--primary-dark);
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    margin-bottom: 0.75rem;
}
.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.honor-bar {
    background: var(--secondary);
    color: white;
    border-radius: 56px;
    padding: 2rem;
    margin: 2rem 0;
    background-image: radial-gradient(circle at 10% 30%, rgba(255,215,150,0.2) 2%, transparent 2.5%);
    background-size: 28px 28px;
}
.honor-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.honor-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
}
.contact-info i {
    width: 32px;
    color: var(--primary);
}
.contact-info p {
    margin: 12px 0;
}
.demo-form input, .demo-form select, .demo-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 28px;
    border: 1px solid #e2d9d0;
    margin-bottom: 12px;
    font-family: inherit;
}
.footer {
    background: #2c4b35;
    color: #e2e2c9;
    padding: 2.5rem 0;
    margin-top: 2rem;
    text-align: center;
}
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-stats { justify-content: center; }
    .nav-flex { flex-direction: column; gap: 1rem; }
    .nav-links { gap: 1.2rem; justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
}