/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.6;
}
img, svg {
    max-width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.logo span {
    display: block;
    font-size: 0.75rem;
    margin-top: -4px;
}
.navbar nav a {
    margin-left: 30px;
    font-size: 1rem;
    transition: color 0.3s;
}
.navbar nav a:hover {
    color: #ff4b3e;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}
.btn-primary { background: #ff4b3e; color: #fff; }
.btn-primary:hover { background: #e04335; }
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.btn-outline:hover {
    background: #fff;
    color: #0d0d0d;
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background: radial-gradient(circle at top, rgba(255,75,62,0.2), transparent 70%);
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}
.cta .btn {
    margin: 0 10px;
}

/* Features */
.features {
    padding: 60px 5%;
    text-align: center;
}
.features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.feature-item {
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-item svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    fill: #ff4b3e;
}
.feature-item p {
    font-size: 1rem;
}

/* Forms */
section form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}
section form input,
section form select,
section form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #2a2a2a;
    color: #f5f5f5;
}
section form input:focus,
section form select:focus,
section form textarea:focus {
    outline: 2px solid #ff4b3e;
}

/* Footer */
.footer {
    background: #111;
    padding: 20px 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.875rem;
    border-top: 1px solid #222;
}