:root {
    --vy-dark-green: #1B3B36;
    --vy-primary-green: #2C5E50;
    --vy-light-bg: #E8F1EC;
    --vy-earthy-accent: #D4A373;
    --vy-white: #FFFFFF;
    --vy-text-main: #333333;
    --vy-text-light: #666666;
    --vy-font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--vy-font-family);
    color: var(--vy-text-main);
    background-color: var(--vy-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--vy-dark-green);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 600; }

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* Buttons */
.vy-btn-primary, .vy-btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.vy-btn-primary {
    background-color: var(--vy-earthy-accent);
    color: var(--vy-white);
}
.vy-btn-primary:hover {
    background-color: #c29161;
}

.vy-btn-secondary {
    background-color: transparent;
    border: 2px solid var(--vy-primary-green);
    color: var(--vy-primary-green);
}
.vy-btn-secondary:hover {
    background-color: var(--vy-primary-green);
    color: var(--vy-white);
}

/* Header */
.vy-nav-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.vy-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--vy-dark-green);
}

.vy-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.vy-nav-links a:not(.vy-btn-primary) {
    font-weight: 600;
    color: var(--vy-text-main);
}
.vy-nav-links a:not(.vy-btn-primary):hover {
    color: var(--vy-earthy-accent);
}

@media (max-width: 768px) {
    .vy-nav-links { display: none; }
}

/* Hero Section */
.vy-hero-stage {
    display: flex;
    min-height: 85vh;
    background-color: var(--vy-light-bg);
    align-items: center;
    padding: 4rem 5%;
    gap: 4rem;
}

.vy-hero-text {
    flex: 1;
    max-width: 600px;
}

.vy-badge {
    display: inline-block;
    background-color: rgba(44, 94, 80, 0.1);
    color: var(--vy-primary-green);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vy-hero-text p {
    font-size: 1.1rem;
    color: var(--vy-text-light);
    margin-bottom: 2rem;
}

.vy-hero-actions {
    display: flex;
    gap: 1rem;
}

.vy-hero-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(27, 59, 54, 0.15);
}

.vy-hero-visual img {
    height: 600px;
}

@media (max-width: 992px) {
    .vy-hero-stage {
        flex-direction: column;
        padding-top: 6rem;
    }
    .vy-hero-visual img { height: 400px; }
}

/* Origin Story (About) */
.vy-origin-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    padding: 7rem 8%;
    align-items: center;
}

.vy-origin-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--vy-text-light);
}

.vy-inline-link {
    color: var(--vy-primary-green);
    font-weight: 600;
    border-bottom: 1px solid var(--vy-primary-green);
}

.vy-stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.vy-stat-box {
    display: flex;
    flex-direction: column;
}

.vy-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vy-earthy-accent);
    line-height: 1;
}

.vy-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vy-text-light);
    margin-top: 0.5rem;
}

.vy-origin-image img {
    border-radius: 8px;
    height: 500px;
}

@media (max-width: 992px) {
    .vy-origin-story {
        grid-template-columns: 1fr;
        padding: 4rem 5%;
        gap: 3rem;
    }
    .vy-stats-row { flex-wrap: wrap; gap: 2rem; }
}

/* Solutions Matrix */
.vy-solutions-matrix {
    padding: 6rem 5%;
    background-color: var(--vy-dark-green);
    color: var(--vy-white);
}

.vy-matrix-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.vy-matrix-header h2 {
    color: var(--vy-light-bg);
}

.vy-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vy-sol-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.vy-sol-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,0.08);
}

.vy-sol-card img {
    height: 180px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.vy-sol-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vy-sol-card h3 {
    color: var(--vy-earthy-accent);
    margin-bottom: 1rem;
}

.vy-sol-card p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Feedback Panel */
.vy-feedback-panel {
    padding: 8rem 8%;
    background-color: var(--vy-light-bg);
}

.vy-feedback-panel h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.vy-voices-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.vy-voice {
    background: var(--vy-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.vy-voice p {
    font-style: italic;
    color: var(--vy-text-main);
    margin-bottom: 2rem;
}

.vy-voice-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vy-voice-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.vy-voice-author strong {
    display: block;
    color: var(--vy-dark-green);
}

.vy-voice-author span {
    font-size: 0.85rem;
    color: var(--vy-text-light);
}

/* Inquiry Zone */
.vy-inquiry-zone {
    padding: 6rem 5%;
}

.vy-inquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--vy-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.vy-inquiry-info {
    padding: 4rem;
    background-color: var(--vy-primary-green);
    color: var(--vy-white);
}

.vy-inquiry-info h2 {
    color: var(--vy-earthy-accent);
}

.vy-inquiry-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.vy-inquiry-info img {
    border-radius: 8px;
    height: 250px;
}

.vy-inquiry-form-wrapper {
    padding: 4rem 4rem 4rem 0;
}

.vy-input-group {
    margin-bottom: 1.5rem;
}

.vy-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--vy-dark-green);
}

.vy-input-group input, .vy-input-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.vy-input-group input:focus, .vy-input-group textarea:focus {
    outline: none;
    border-color: var(--vy-primary-green);
}

.vy-submit-btn {
    width: 100%;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .vy-inquiry-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .vy-inquiry-form-wrapper {
        padding: 3rem;
    }
}

/* Footer */
.vy-site-footer {
    background-color: #122925;
    color: #a0aab2;
    padding: 5rem 5% 2rem 5%;
}

.vy-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.vy-footer-brand h3 {
    color: var(--vy-white);
    margin-bottom: 1rem;
}

.vy-footer-contact h4, .vy-footer-legal h4 {
    color: var(--vy-earthy-accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vy-footer-contact p, .vy-footer-legal a {
    margin-bottom: 0.8rem;
    display: block;
}

.vy-footer-legal a:hover {
    color: var(--vy-white);
}

.vy-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vy-disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    max-width: 500px;
    text-align: right;
}

@media (max-width: 768px) {
    .vy-footer-grid {
        grid-template-columns: 1fr;
    }
    .vy-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .vy-disclaimer {
        text-align: center;
    }
}

/* Simple page styling for privacy/terms */
.vy-simple-page {
    padding: 8rem 5%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
}
.vy-simple-page h1 {
    margin-bottom: 2rem;
}
.vy-simple-page p {
    margin-bottom: 1rem;
    color: var(--vy-text-light);
}
