:root {
    --bg: #08090d;
    --panel: #12141c;
    --panel2: #191c27;
    --text: #f7f7f7;
    --muted: #aeb4c2;
    --red: #d62828;
    --red2: #9f1d1d;
    --orange: #e85d04;
    --border: #303647;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { color: inherit; }

.hero {
    min-height: 760px;
    background:
        linear-gradient(90deg, rgba(8,9,13,0.96), rgba(8,9,13,0.86), rgba(8,9,13,0.72)),
        radial-gradient(circle at 80% 20%, rgba(214,40,40,0.25), transparent 35%),
        radial-gradient(circle at 15% 80%, rgba(232,93,4,0.18), transparent 35%),
        #08090d;
    padding: 24px 7%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 54px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
}

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

.nav-cta {
    background: var(--red);
    color: white !important;
    padding: 10px 16px;
    border-radius: 999px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 44px;
    align-items: center;
    padding: 92px 0 54px;
}

.eyebrow {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(48px, 7vw, 86px);
    line-height: 0.98;
    margin: 0 0 22px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.lead {
    max-width: 660px;
    font-size: 21px;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-actions, .trust-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 900;
    transition: 0.2s;
}

.primary {
    background: var(--red);
    color: white;
}

.primary:hover { background: var(--red2); }

.secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--border);
}

.trust-row {
    margin-top: 30px;
    color: var(--muted);
    font-weight: 800;
}

.trust-row span {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    padding: 9px 12px;
    border-radius: 8px;
}

.hero-card {
    background: linear-gradient(180deg, rgba(25,28,39,0.96), rgba(18,20,28,0.96));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.4);
}

.studio-icon {
    font-size: 64px;
    margin-bottom: 10px;
}

.hero-card h2 {
    font-size: 42px;
    margin: 0 0 12px;
    color: var(--orange);
}

.hero-card a {
    color: var(--text);
    font-weight: 900;
}

.section {
    padding: 76px 7%;
}

.section.dark {
    background: #0d0f15;
}

.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.section-heading h2, .contact-grid h2 {
    font-size: clamp(32px, 4vw, 50px);
    margin: 0;
}

.packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.package {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
}

.package.featured {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red), 0 0 36px rgba(214,40,40,0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.package h3 {
    font-size: 26px;
    margin: 8px 0 0;
}

.price {
    font-size: 52px;
    font-weight: 900;
    color: var(--red);
    margin: 10px 0;
}

.package ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.package li {
    margin: 9px 0;
    color: var(--muted);
}

.package li::before {
    content: "✓";
    color: var(--red);
    font-weight: 900;
    margin-right: 8px;
}

.package-btn {
    width: 100%;
    text-align: center;
    background: var(--panel2);
    color: white;
    border: 1px solid var(--border);
}

.addons {
    margin-top: 22px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--muted);
}

.addons strong { color: var(--orange); }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
}

.step span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 999px;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.contact-copy, .contact-box {
    color: var(--muted);
    font-size: 18px;
}

.contact-box {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.contact-box a {
    color: var(--text);
    font-weight: 900;
}

.contact-form {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
}

.contact-form label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #0f1117;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-btn {
    margin-top: 18px;
    width: 100%;
    font-size: 16px;
}

.alert {
    padding: 14px;
    border-radius: 10px;
    font-weight: 900;
    margin-bottom: 14px;
}

.alert.success {
    background: rgba(20, 160, 90, 0.16);
    color: #77f2b1;
    border: 1px solid rgba(20,160,90,0.4);
}

.alert.error {
    background: rgba(214,40,40,0.16);
    color: #ff8b8b;
    border: 1px solid rgba(214,40,40,0.4);
}

footer {
    text-align: center;
    padding: 28px 7%;
    background: #05060a;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

footer a {
    color: var(--text);
    font-weight: 900;
}

@media (max-width: 900px) {
    .nav, .nav-links, .hero-actions, .trust-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-content,
    .packages,
    .steps,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 20px 5%;
    }

    .section {
        padding: 58px 5%;
    }
}
