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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background: rgba(0,0,0,0.9);
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s;
}

nav a:hover {
    color: #e10600;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 40px;
    background: #e10600;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

.section {
    padding: 120px 10%;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: #1a1a1a;
    padding: 40px;
    transition: 0.3s;
}

.card:hover {
    background: #222;
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: #e10600;
}

.feature-strip {
    background: #111;
    text-align: center;
    padding: 80px 10%;
}

.feature-strip p {
    max-width: 800px;
    margin: auto;
    font-size: 1.3rem;
}

footer {
    background: black;
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
}