* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0e0e0e;
    color: white;
    scroll-behavior: smooth;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.logo span {
    color: #e63946;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

nav a:hover {
    color: #e63946;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(to bottom, #111, #000);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.85;
}

.btn {
    padding: 12px 28px;
    background: #e63946;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.btn:hover {
    background: #c1121f;
}

.section {
    padding: 120px 20px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.section p {
    max-width: 800px;
    margin: 15px auto;
    line-height: 1.6;
    opacity: 0.85;
}

.dark {
    background: #151515;
}

.portfolio-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-item {
    width: 300px;
}

.portfolio-placeholder {
    height: 180px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.process-list {
    list-style: none;
    margin-top: 20px;
}

.process-list li {
    margin: 10px 0;
    opacity: 0.8;
}

footer {
    padding: 20px;
    text-align: center;
    background: #000;
    font-size: 14px;
    opacity: 0.5;
}
