:root {
    --cream: #FAF9F6;
    --beige: #F5F5DC;
    --light-green: #E2F0D9;
    --sage-green: #5b9a96;
    --dark-green: #3B4D3C;
    --accent-green: #6B8E23;
    --text-primary: #2C3531;
    --text-secondary: #586B63;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Kurale', serif;
    color: var(--dark-green);
}

/* Header & Nav */
header {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-green);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Kurale', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--sage-green);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

/* Псевдо-элементы для "космическо-весеннего" эффекта */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 154, 91, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1.2s ease-out;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease-out;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-tg {
    background-color: #24A1DE;
    color: var(--white);
}

.btn-wa {
    background-color: #25D366;
    color: var(--white);
}

/* Sections General */
section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

h2::after {
    content: '✺';
    display: block;
    font-size: 1.2rem;
    color: var(--sage-green);
    margin-top: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-green);
}

/* Services */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    transition: border 0.3s;
    border: 1px solid transparent;
    text-align: center;
}

.service-card:hover {
    border: 1px solid var(--light-green);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Social Section */
.social {
    background: var(--beige);
    max-width: 100%;
    text-align: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.social-item {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 500;
    transition: background 0.3s;
}

.social-item:hover {
    background: var(--light-green);
}

/* Footer */
footer {
    background: var(--dark-green);
    color: var(--cream);
    padding: 6rem 5% 3rem;
    text-align: center;
}

footer h2,
footer p {
    color: var(--cream);
}

.footer-cta {
    margin: 3rem 0;
}

.btn-large {
    background: var(--cream);
    color: var(--dark-green);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
}

.footer-info {
    margin-top: 4rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 5%;
    }
}