* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0d;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 13, 0.95);
    border-bottom: 1px solid #222227;
}

.nav {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: #b9b9c2;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #ffffff;
}

.nav-button {
    padding: 12px 20px;
    border: 1px solid #ffffff;
    font-size: 14px;
    transition: 0.3s;
}

.nav-button:hover {
    background: #ffffff;
    color: #0b0b0d;
}

/* HERO */

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222227;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 80px 0;
}

.hero-label,
.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #9999a3;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 90px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.hero-text {
    max-width: 500px;
    color: #b9b9c2;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    padding: 14px 24px;
    background: #ffffff;
    color: #0b0b0d;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button.outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #55555d;
}

.hero-button.outline:hover {
    border-color: #ffffff;
}

/* HERO IMAGE */

.hero-image {
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #151519;
    border: 1px solid #29292f;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* SECTIONS */

.section {
    padding: 110px 0;
    border-bottom: 1px solid #222227;
}

.section h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.section p {
    max-width: 700px;
    color: #b9b9c2;
    font-size: 17px;
}

/* FOOTER */

footer {
    padding: 40px 0;
    color: #777780;
    font-size: 13px;
}

/* MOBILE */

@media (max-width: 850px) {

    .nav {
        flex-wrap: wrap;
        padding: 20px 0;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0;
    }

    .hero-image {
        height: 450px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .section h2 {
        font-size: 38px;
    }
}.portfolio-section {
    background: #0b0b0d;
}

.portfolio-intro {
    max-width: 650px;
    margin-bottom: 50px;
    color: #9999a3;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    height: 430px;
    overflow: hidden;
    background: #151519;
    border: 1px solid #29292f;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 850px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 500px;
    }
}.pricing-section {
    background: #0b0b0d;
}

.pricing-intro {
    max-width: 650px;
    margin-bottom: 50px;
    color: #9999a3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
}

.pricing-card {
    padding: 45px;
    background: #151519;
    border: 1px solid #29292f;
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #55555d;
}

.pricing-card.featured-price {
    border-color: #ffffff;
}

.pricing-type {
    font-size: 12px;
    letter-spacing: 3px;
    color: #9999a3;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-card p {
    color: #9999a3;
    margin-bottom: 30px;
}

.pricing-button {
    display: inline-block;
    padding: 13px 22px;
    background: #ffffff;
    color: #0b0b0d;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

.pricing-note {
    margin-top: 30px;
    font-size: 13px !important;
    color: #777780 !important;
}

@media (max-width: 850px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 35px;
    }

    .pricing-card h3 {
        font-size: 40px;
    }
}.commission-form-section {
    background: #0b0b0d;
}

.form-intro {
    max-width: 650px;
    margin-bottom: 50px;
    color: #9999a3;
}

.commission-form {
    max-width: 900px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    background: #151519;
    color: #ffffff;
    border: 1px solid #29292f;
    outline: none;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #777780;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-group select {
    cursor: pointer;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 30px;
}

.form-checkbox input {
    width: 17px;
    height: 17px;
}

.form-checkbox label {
    color: #9999a3;
    font-size: 14px;
}

.form-button {
    padding: 15px 28px;
    background: #ffffff;
    color: #0b0b0d;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.form-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 850px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}.contact-section {
    background: #0b0b0d;
}

.contact-intro {
    max-width: 650px;
    margin-bottom: 45px;
    color: #9999a3;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 800px;
    margin-bottom: 35px;
}

.contact-item {
    padding: 30px;
    background: #151519;
    border: 1px solid #29292f;
}

.contact-item span {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #777780;
    margin-bottom: 10px;
}

.contact-item p {
    color: #ffffff;
    font-size: 16px;
}

@media (max-width: 700px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
}footer a {
    color: #b9b9c2;
    text-decoration: underline;
}

footer a:hover {
    color: #ffffff;
}