/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #81bed7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 410px;
    background: linear-gradient(180deg, #87C1D7 68.26%, rgba(135, 193, 215, 0) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: url('../img/hero-bg2.png') bottom center/contain no-repeat;
    background-size: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 62px;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.hero-title {
    font-weight: 800;
    font-size: clamp(42px, 6vw, 65px);
    line-height: 1.05;
    text-align: center;
    letter-spacing: -0.06em;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #FFFFFF;
    color: #87C2D9;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.btn-secondary:hover {
    background: #FFFFFF;
    color: #87C2D9;
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Sections */
section {
    padding: 80px 0;
}

.why-matter {
    background: #f8f9fa;
}

.built-for-teams {
    background: #FFFFFF;
}

.made-in-ph {
    background: #f8f9fa;
}

/* Typography */
h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.check-icon {
    font-size: 24px;
    color: #28a745;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Benefits List */
.benefits-list {
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.benefit-item:last-child {
    border-bottom: none;
}

.bullet {
    font-size: 24px;
    color: #87C2D9;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 18px;
    color: #333;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #FFFFFF;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 90vh;
        min-height: 600px;
    }
    
    .logo {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-image {
        background-size: cover;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 32px;
    }
}

/* Animation improvements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content .logo {
    animation-delay: 0.1s;
}

.hero-content .hero-title {
    animation-delay: 0.2s;
}

.hero-content .hero-subtitle {
    animation-delay: 0.3s;
}

.hero-content .hero-description {
    animation-delay: 0.4s;
}

.hero-content .hero-cta {
    animation-delay: 0.5s;
}