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

body {
    font-family: 'Outfit', sans-serif;
    color: #2d2d2d;
    background-color: #faf9f6; /* Off-white / cream background */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d2d2d;
    letter-spacing: -0.5px;
}

.logo i {
    color: #2d2d2d;
}

.nav-btn {
    text-decoration: none;
    color: #2d2d2d;
    background: transparent;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #2d2d2d;
    color: #ffffff;
    border-color: #2d2d2d;
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 700px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-block;
    background: #f0f0f0;
    color: #555555;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 45px;
    padding: 0 10px;
    font-weight: 300;
}

.primary-btn {
    text-decoration: none;
    background: #2d2d2d;
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 8% 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.04);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f9f9f9;
    color: #2d2d2d;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: #999999;
    font-size: 13px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 38px; }
    .features-section { grid-template-columns: 1fr; }
}
