@font-face {
    font-family: 'Telegraf';
    src: url('fonts/Telegraf-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #5f7a61;
    --primary-light: #7d9d85;
    --accent: #d4a373;
    --bg-cream: #fefae0;
    --bg-white: #ffffff;
    --text-main: #283618;
    --text-muted: #606c38;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Telegraf', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 15px 8%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    z-index: 1001;
}

.logo span { color: var(--primary); }

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
    color: var(--text-main);
}

.close-icon { display: none; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.nav-cta-mobile { display: none; }

.btn-small {
    padding: 10px 22px;
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 0 8%;
    gap: 50px;
    padding-top: 80px;
}

.hero-badge {
    background: white;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hero h1 {
    font-size: clamp(40px, 5vw, 67px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight { color: var(--primary); }

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(95, 122, 97, 0.3);
}

.btn-outline {
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.hero-visual { position: relative; }

.gif-container {
    width: 100%;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.gif-container img { width: 100%; display: block; }

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.floating-card i { color: var(--primary); width: 18px; height: 18px; }

.card-1 { top: 15%; left: -30px; }
.card-2 { bottom: 15%; right: -25px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about {
    padding: 120px 8%;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.sub-title {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 50px 40px;
    background: var(--bg-cream);
    border-radius: 35px;
    transition: var(--transition);
}

.feature-box .icon i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.feature-box h3 { margin-bottom: 15px; font-weight: 800; }

.feature-box:hover {
    transform: translateY(-12px);
    background: var(--primary);
    color: white;
}

.feature-box:hover .icon i { color: white; }

.consult { padding: 100px 8%; }

.consult-card {
    background: var(--text-main);
    padding: 80px 40px;
    border-radius: 55px;
    color: white;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}

.consult-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; font-weight: 800; }
.consult-info p { margin-bottom: 45px; opacity: 0.85; font-size: 1.15rem; max-width: 600px; margin: 0 auto 45px auto; }

.btn-ig {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--text-main);
    padding: 18px 45px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
}

footer {
    padding: 80px 8% 40px;
    text-align: center;
    background: var(--bg-cream);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .navbar { padding: 15px 5%; }
    
    .menu-toggle { display: block; }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }

    .nav-container.active { right: 0; }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-links a { font-size: 1.2rem; }

    .nav-cta { display: none; }
    .nav-cta-mobile { display: block; }

    .hero { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding-top: 120px; 
        gap: 40px;
        padding-bottom: 50px;
    }
    
    .hero-content { order: 2; }
    .hero-visual { order: 1; max-width: 450px; margin: 0 auto; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; padding: 16px; }

    .floating-card { font-size: 0.75rem; padding: 10px 15px; }
    .card-1 { left: -10px; }
    .card-2 { right: -10px; }

    .about { padding: 80px 5%; }
    .consult { padding: 60px 5%; }
    .consult-card { padding: 50px 20px; border-radius: 30px; }
    .btn-ig { width: 100%; justify-content: center; }
}