/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #1a1a1b;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    background: #ffffff; 
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(75, 46, 131, 0.08);
}

nav .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: block;
    height: 50px; 
    width: auto;
}

/* Hero Section */
.hero {
    background: #4B2E83; 
    color: #ffffff;
    padding: 160px 0 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem); 
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 auto 24px auto;
    max-width: 600px; 
    font-weight: 800;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 48px auto;
    font-weight: 300;
    opacity: 0.9;
}

.hero button {
    background: #ffffff;
    color: #4B2E83;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Capabilities Section */
#capabilities {
    padding: 120px 0;
    background: #f9f9fb;
}

#capabilities h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 80px;
}

.capability-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 60px;
}

.capability-item.reverse {
    flex-direction: row-reverse;
}

.capability-item:last-child {
    margin-bottom: 0;
}

.cap-text h3 {
    font-size: 2rem;
    color: #4B2E83;
    margin-bottom: 20px;
}

.cap-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Features Section */
#features {
    padding: 120px 0;
    text-align: center;
    background-color: #ffffff;
}

#features h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 60px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px; 
}

.feature {
    flex: 1;
    max-width: 350px; 
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 32px;
    border: 1px solid #f0f0f5;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

/* Footer */
footer {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    border-top: 1px solid #f5f5f7;
}

/* Mobile */
@media (max-width: 768px) {
    .feature-grid, .capability-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
