:root {
    --vy-dark-forest: #1e3f20;
    --vy-sage: #4a7c59;
    --vy-light-sage: #8fc0a9;
    --vy-bg-tint: #f4f6f4;
    --vy-text-main: #2b3a2f;
    --vy-white: #ffffff;
    --vy-font: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--vy-font);
    color: var(--vy-text-main);
    background-color: var(--vy-bg-tint);
    line-height: 1.6;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    color: var(--vy-sage);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--vy-dark-forest);
}

/* Header */
.vy-top-nav {
    position: sticky;
    top: 0;
    background: var(--vy-white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vy-brand-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--vy-dark-forest);
}

.vy-nav-links {
    display: flex;
    gap: 2rem;
}

.vy-nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--vy-text-main);
}

.vy-nav-links a:hover {
    color: var(--vy-light-sage);
}

/* Hero */
.vy-main-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 5% 4rem;
    background: linear-gradient(to bottom, var(--vy-white), var(--vy-bg-tint));
}

.vy-banner-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.vy-banner-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--vy-dark-forest);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.vy-banner-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--vy-sage);
}

.vy-cta-button {
    display: inline-block;
    background: var(--vy-dark-forest);
    color: var(--vy-white) !important;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

.vy-cta-button:hover {
    background: var(--vy-sage);
}

.vy-banner-visual {
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 63, 32, 0.15);
}

.vy-banner-visual img {
    height: 60vh;
}

/* About */
.vy-about-region {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 7rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.vy-about-text h2 {
    font-size: 2.5rem;
    color: var(--vy-dark-forest);
    margin-bottom: 1.5rem;
}

.vy-about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vy-stat-counter {
    font-weight: 700;
    color: var(--vy-sage);
    font-size: 1.2em;
}

.vy-inline-link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.vy-business-hours {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--vy-white);
    border-left: 4px solid var(--vy-light-sage);
    font-size: 0.95rem;
}

.vy-about-visual {
    border-radius: 8px;
    overflow: hidden;
}

/* Solutions */
.vy-solutions-zone {
    background: var(--vy-dark-forest);
    color: var(--vy-white);
    padding: 7rem 5%;
}

.vy-solutions-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.vy-solutions-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vy-solutions-intro p {
    color: var(--vy-light-sage);
    font-size: 1.1rem;
}

.vy-solutions-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.vy-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vy-solution-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(143, 192, 169, 0.2);
}

.vy-solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--vy-light-sage);
}

.vy-process-sidebar {
    background: var(--vy-white);
    color: var(--vy-text-main);
    border-radius: 8px;
    overflow: hidden;
}

.vy-process-steps {
    padding: 2rem;
}

.vy-process-steps h4 {
    color: var(--vy-dark-forest);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.vy-process-steps ol {
    padding-left: 1.2rem;
}

.vy-process-steps li {
    margin-bottom: 1rem;
}

/* Advantages */
.vy-advantages-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5rem;
    align-items: center;
}

.vy-advantages-visual {
    position: relative;
}

.vy-advantages-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--vy-light-sage);
    z-index: -1;
    border-radius: 8px;
}

.vy-advantages-visual img {
    border-radius: 8px;
}

.vy-advantages-content h2 {
    font-size: 2.5rem;
    color: var(--vy-dark-forest);
    margin-bottom: 2rem;
}

.vy-benefits-list {
    list-style: none;
}

.vy-benefits-list li {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(74, 124, 89, 0.2);
}

.vy-benefits-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vy-benefits-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--vy-sage);
    margin-bottom: 0.5rem;
}

/* Feedback */
.vy-client-feedback {
    background: var(--vy-white);
    padding: 6rem 5%;
    text-align: center;
}

.vy-client-feedback h2 {
    font-size: 2.5rem;
    color: var(--vy-dark-forest);
    margin-bottom: 4rem;
}

.vy-feedback-carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.vy-feedback-card {
    background: var(--vy-bg-tint);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    text-align: left;
    position: relative;
}

.vy-feedback-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--vy-text-main);
}

.vy-feedback-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vy-feedback-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.vy-feedback-author strong {
    display: block;
    color: var(--vy-dark-forest);
}

.vy-feedback-author span {
    font-size: 0.85rem;
    color: var(--vy-sage);
}

/* Contact */
.vy-contact-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--vy-dark-forest);
}

.vy-contact-form-wrapper {
    padding: 6rem 10%;
    color: var(--vy-white);
}

.vy-contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.vy-form-group {
    margin-bottom: 1.5rem;
}

.vy-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--vy-light-sage);
}

.vy-form-group input,
.vy-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(143, 192, 169, 0.3);
    color: var(--vy-white);
    border-radius: 4px;
    font-family: inherit;
}

.vy-form-group input:focus,
.vy-form-group textarea:focus {
    outline: none;
    border-color: var(--vy-light-sage);
}

.vy-submit-btn {
    background: var(--vy-light-sage);
    color: var(--vy-dark-forest);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 1.5rem;
}

.vy-submit-btn:hover {
    background: var(--vy-white);
}

.vy-disclaimer {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.vy-contact-visual img {
    height: 100%;
}

/* Footer */
.vy-base-footer {
    background: #142a15;
    color: rgba(255,255,255,0.8);
    padding: 4rem 5% 2rem;
}

.vy-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.vy-footer-col strong {
    display: block;
    color: var(--vy-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vy-footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.vy-footer-col a:hover {
    color: var(--vy-light-sage);
}

.vy-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .vy-about-region,
    .vy-solutions-layout,
    .vy-advantages-block,
    .vy-contact-area {
        grid-template-columns: 1fr;
    }
    
    .vy-banner-content h1 {
        font-size: 2.8rem;
    }
    
    .vy-advantages-visual::before {
        display: none;
    }
    
    .vy-nav-links {
        display: none;
    }
}
