:root {
    --bg: #0F0F0F;
    --bg-soft: #161616;
    --accent: #FF6A00;
    --text: #EAEAEA;
    --text-muted: #9F9F9F;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.accent {
    color: var(--accent);
}

.hero p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s ease;
}

.primary {
    background: var(--accent);
    color: #000;
}

.primary:hover {
    opacity: 0.8;
}

.outline {
    border: 2px solid var(--accent);
    color: var(--accent);
}

.outline:hover {
    background: var(--accent);
    color: #000;
}

.logo {
    height: 60px;
    width: auto;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 25px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    color: var(--accent);
}

.about {
    padding: 120px 10%;
    background: var(--bg-soft);
}

.about-container {
    max-width: 800px;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.about h2::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 10px;
    width: 4px;
    height: 30px;
    background: var(--accent);
}

.about p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}