* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff; /* more serious like Avantkeel */
    color: #1f2937;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
}

.logo {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.3px;
}

nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 13px;
}

nav a:hover {
    color: #1f2937;
}

/* Buttons exactly like Avantkeel style */
.btn {
    background: #1f2937;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.btn-secondary {
    border: 1px solid #1f2937;
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text h2 {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text p {
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 420px;
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero img {
    width: 100%;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .hero {
    grid-template-columns: 1fr;
    text-align: center;
    }

    .hero-text p {
    margin: auto;
    margin-bottom: 30px;
    }

    .hero-buttons {
    justify-content: center;
    }
}