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

body {
 

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    
    backdrop-filter: blur(8px);
}

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

@media (min-width: 640px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }
}

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

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    color: #64B151;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .logo {
        font-size: 1.5rem;
    }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .nav-links {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 3rem;
    }
}

.nav-link {
    color: #64B151;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .nav-link {
        font-size: 0.875rem;
    }
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #64B151;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

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

.hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(245, 245, 220, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out forwards;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.3em;
        margin-bottom: 2rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out forwards;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6rem;
    }
}

@media (min-width: 1536px) {
    .hero-title {
        font-size: 8rem;
    }
}

.hero-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(245, 245, 220, 0.3);
    animation: fadeIn 0.8s ease-out forwards;
}

/* Services Section */
.services {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .services {
        padding: 5rem 2rem;
    }
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.service-card {
    text-align: center;
    padding: 0 1rem;
    animation: fadeIn 0.8s ease-out forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-number {
    font-size: 4rem;
    font-weight: bold;
    color: #64B151;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
    .service-number {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .service-number {
        font-size: 6rem;
    }
}

.service-card:hover .service-number {
    opacity: 1;
}

.service-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #64B151;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.service-description {
    
    line-height: 1.6;
    font-size: 0.875rem;
    max-width: 20rem;
    margin: 0 auto;
}

.services-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(245, 245, 220, 0.3);
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .services-separator {
        margin-top: 5rem;
    }
}

/* Footer */
.footer {
    padding: 2rem 1rem 3rem;
}

@media (min-width: 640px) {
    .footer {
        padding: 3rem 2rem;
    }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}



@media (min-width: 640px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    
        gap: 0;
        margin-bottom: 2rem;
    }
}

.footer-copyright {
    font-size: 0.75rem;
    color: #64B151;
}

@media (min-width: 640px) {
    .footer-copyright {
        font-size: 0.875rem;
    }
}

.footer-link {
    text-decoration: underline;
    color: #64B151;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .footer-right {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: #64B151;
}

@media (min-width: 640px) {
    .footer-links {
        gap: 1.5rem;
        font-size: 0.875rem;
    }
}

.footer-nav-link {
    color: #64B151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #64B151;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    
}

@media (min-width: 640px) {
    .social-icons {
        gap: 1rem;
    }
}

.social-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(245, 245, 220, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64B151;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.75rem;
    font-weight: bold;
    pointer-events: all;
}

.social-icon:hover {
    background-color: rgba(245, 245, 220, 0.2);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(245, 245, 220, 0.3);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .footer-separator {
        margin-bottom: 4rem;
    }
}

.footer-brand {
    text-align: center;
    
}

.logo-footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logo-footer img {
    width: 50%;
    padding: 0;
    opacity: 0.8;
}

.footer-brand-text {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    color: rgba(245, 245, 220, 0.9);
    letter-spacing: -0.025em;
    word-break: break-all;
}

@media (min-width: 640px) {
    .footer-brand-text {
        font-size: 6rem;
    }
}

@media (min-width: 768px) {
    .footer-brand-text {
        font-size: 8rem;
    }
}

@media (min-width: 1024px) {
    .footer-brand-text {
        font-size: 12rem;
    }
}

@media (min-width: 1280px) {
    .footer-brand-text {
        font-size: 16rem;
    }
}

@media (min-width: 1536px) {
    .footer-brand-text {
        font-size: 20rem;
    }
}

.webflow-credit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(245, 245, 220, 0.5);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .webflow-credit {
        justify-content: flex-end;
        margin-right: 2rem;
    }
}

.webflow-logo {
    width: 1rem;
    height: 0.75rem;
    background-color: #3b82f6;
    border-radius: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webflow-logo span {
    color: white;
    font-size: 0.5rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}
