


:root {
    --tea-green: #D0F0C0;
    --sage-green: #9DC183;
    --dark-green: #6B8E5C;
    --deep-green: #4A6B3E;
    
    
    --bg-dark:  #f0e9e9;
    --bg-dark-secondary: #abeeeeff;
    --bg-dark-card: #57b0beff;
    --bg-dark-hover: #69c5b6ff;
    --text-light: #000000ff;
    --text-muted: #3e453eff;
    --accent: #83cfedff;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(157, 193, 131, 0.2);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(86, 234, 231, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(131, 193, 188, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #006045ff;
    cursor: pointer;
    
    transition: var(--transition);
    text-shadow: 0 0 20px rgba(192, 240, 240, 0.3);
}

.logo:hover {
    color: #006045ff;
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(131, 179, 193, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tea-green);
    box-shadow: 0 0 10px var(--tea-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #006045ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #006045ff;
    border-radius: 3px;
    transition: var(--transition);
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f0e9e9 0%, #abeeeeff 100%);
    padding: 8rem 0 4rem;
}

.hero-small {
    min-height: 60vh;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(208, 240, 192, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.highlight {
    color: #106799ff;
    font-weight: 600;
    position: relative;
    text-shadow: 0 0 20px rgba(208, 240, 192, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #42abdbff 0%, #106799ff 100%);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(2, 26, 100, 0.4);
}

.btn-secondary {
    background: transparent;
    color: black;
    border: 2px solid #005242ff;
}

.btn-secondary:hover {
    background: #005242ff;
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: #006045ff;
    border: 2px solid var(--sage-green);
}

.btn-outline:hover {
    background: var(--sage-green);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}


section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #000000ff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(208, 240, 192, 0.2);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4rem;
}


.services {
    background: var(--bg-dark-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid rgba(157, 193, 131, 0.2);
}

.service-card:hover {
    border-color: var(--tea-green);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-dark-hover);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(208, 240, 192, 0.3));
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #21283dff;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(157, 193, 131, 0.5);
}


.benefits {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    color: var(--text-light);
    border-top: 1px solid rgba(157, 193, 131, 0.2);
    border-bottom: 1px solid rgba(157, 193, 131, 0.2);
}

.benefits .section-title {
    color: #001248ff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: #001d75ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 167, 176, 0.4);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.benefit-item p {
    color: var(--text-muted);
    line-height: 1.6;
}


.pricing {
    background: var(--bg-dark-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-dark-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(157, 193, 131, 0.2);
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--sage-green);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-dark-hover);
}

.pricing-card.featured {
    border-color: var(--tea-green);
    background: linear-gradient(135deg, rgba(0, 111, 147, 1) 0%, rgba(0, 6, 97, 1) 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00598dff 0%, #083d8cff 100%);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--tea-green);
    margin-bottom: 1rem;
}

.pricing-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(157, 193, 131, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(157, 193, 131, 0.5);
}


.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    color: #0a088cff;
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid rgba(157, 193, 131, 0.2);
    border-bottom: 1px solid rgba(157, 193, 131, 0.2);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #060459ff;
    text-shadow: 0 0 30px rgba(208, 240, 192, 0.3);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}


.footer {
    background: var(--bg-dark-secondary);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(157, 193, 131, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #060459ff;
    text-shadow: 0 0 20px rgba(208, 240, 192, 0.2);
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #060459ff;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--tea-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(157, 193, 131, 0.1);
    color: var(--text-muted);
}


.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
}




.logo {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(208, 240, 192, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(208, 240, 192, 0.6), 0 0 60px rgba(157, 193, 131, 0.4);
    }
}


.service-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


.btn-primary {
    background: linear-gradient(135deg, #0082e6ff 0%, #083d8cff 50%, #0082e6ff 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


.section-title {
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(208, 240, 192, 0.2);
    }
    50% {
        text-shadow: 0 0 50px rgba(208, 240, 192, 0.4), 0 0 70px rgba(157, 193, 131, 0.3);
    }
}


.benefit-number {
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 30px rgba(208, 240, 192, 0.4);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(208, 240, 192, 0.7), 0 0 70px rgba(157, 193, 131, 0.5);
    }
}


.service-card:hover,
.pricing-card:hover,
.mission-item:hover,
.faq-item:hover,
.info-card:hover {
    animation: cardGlow 1.5s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(157, 193, 131, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(157, 193, 131, 0.4), 0 0 60px rgba(208, 240, 192, 0.2);
    }
}


.step-number {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


.highlight {
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        text-shadow: 0 0 20px rgba(208, 240, 192, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(208, 240, 192, 0.6), 0 0 60px rgba(157, 193, 131, 0.4);
    }
}


.mission-icon:hover,
.service-icon:hover {
    animation: rotate 0.6s ease-in-out;
}

@keyframes rotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(157, 193, 131, 0.2);
    }
    50% {
        border-color: rgba(208, 240, 192, 0.6);
    }
}

.pricing-card.featured {
    animation: borderPulse 2s ease-in-out infinite;
}


.navbar {
    animation: navGlow 4s ease-in-out infinite;
}

@keyframes navGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(157, 193, 131, 0.1);
    }
}


.story {
    background: var(--bg-dark-secondary);
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.mission {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 90%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mission-item {
    background: var(--bg-dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(157, 193, 131, 0.2);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--tea-green);
    background: var(--bg-dark-hover);
}

.mission-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(208, 240, 192, 0.3));
}

.mission-item h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #060459ff;
    margin-bottom: 1rem;
}

.mission-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.approach {
    background: var(--bg-dark-secondary);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.approach-step {
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #060459ff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(208, 240, 192, 0.4);
}

.approach-step h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.approach-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

.stats {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    color: var(--text-light);
    border-top: 1px solid rgba(157, 193, 131, 0.2);
    border-bottom: 1px solid rgba(157, 193, 131, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: #060459ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(208, 240, 192, 0.4);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
}


.contact-section {
    background: var(--bg-dark-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #060459ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(208, 240, 192, 0.2);
}

.form-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(157, 193, 131, 0.3);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-dark-card);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bg-dark);
    background: var(--bg-dark-hover);
    box-shadow: 0 0 10px rgba(208, 240, 192, 0.2);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(157, 193, 131, 0.2);
    color: var(--tea-green);
    border: 1px solid var(--sage-green);
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid #dc3545;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(157, 193, 131, 0.2);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--tea-green);
    box-shadow: var(--shadow-glow);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #060459ff;
    margin-bottom: 1rem;
}

.info-card p {
    color: #001248ff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(208, 240, 192, 0.3));
}

.info-details h4 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-details p {
    color: var(--text-muted);
    margin: 0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(157, 193, 131, 0.5);
}

.faq {
    background: var(--bg-dark-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid rgba(157, 193, 131, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--tea-green);
    background: var(--bg-dark-hover);
}

.faq-item h3 {
    color: #060459ff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}


@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(18, 24, 22, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(157, 193, 131, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .services-grid,
    .benefits-grid,
    .pricing-grid,
    .mission-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
}
