/* ------------------------------ */
/*   RESET & BASE SYSTEM          */
/* ------------------------------ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #050509;
    color: #f9fafb;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
    background: #050509;
}

.section--dark {
    background: #040308;
}

.section__title {
    font-size: 2.1rem;
    margin-bottom: 14px;
}

.section__intro {
    max-width: 640px;
    color: #9ca3af;
    margin-bottom: 32px;
}


/* ------------------------------ */
/*            HEADER              */
/* ------------------------------ */

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 9, 0.96);
    border-bottom: 1px solid rgba(198, 166, 103, 0.25);
    backdrop-filter: blur(14px);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid #c6a667;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #c6a667;
    font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(198, 166, 103, 0.55);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #9ca3af;
}

.header__nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header__nav a {
    font-size: 0.9rem;
    text-decoration: none;
    color: #e5e7eb;
    position: relative;
}

.header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #facc6b, #c6a667);
    transition: width 0.2s ease;
}

.header__nav a:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #f9fafb;
    cursor: pointer;
}


/* ------------------------------ */
/*            BUTTONS             */
/* ------------------------------ */

.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, #facc6b, #c6a667);
    color: #111827;
    font-weight: 600;
    box-shadow: 0 14px 40px rgba(198, 166, 103, 0.45);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 52px rgba(198, 166, 103, 0.6);
}

.btn--ghost {
    border-color: #c6a667;
    color: #facc6b;
    background: transparent;
}

.btn--ghost:hover {
    background: rgba(198, 166, 103, 0.12);
}

.btn--outline {
    border-color: rgba(198, 166, 103, 0.75);
    color: #f9fafb;
    background: transparent;
    padding: 7px 18px;
}

.btn--outline:hover {
    background: rgba(198, 166, 103, 0.16);
}

.btn--full {
    width: 100%;
    text-align: center;
}


/* ------------------------------ */
/*            HERO                */
/* ------------------------------ */

.hero {
    padding: 90px 0 80px;
    background: radial-gradient(circle at top, #111827 0, #050509 55%);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 40px;
    align-items: center;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #facc6b;
    margin-bottom: 10px;
}

.hero__text h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.hero__paragraph {
    color: #d1d5db;
    max-width: 620px;
    margin-bottom: 24px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.hero__note {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero__card {
    background: radial-gradient(circle at top left, rgba(198,166,103,0.22), #020617);
    border-radius: 20px;
    padding: 24px 22px;
    border: 1px solid rgba(198,166,103,0.55);
    box-shadow: 0 22px 60px rgba(0,0,0,0.8);
}

.hero__card h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.hero__card-sub {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 14px;
}

.hero__list {
    list-style: none;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.hero__list li {
    margin-bottom: 6px;
}

.hero__list li::before {
    content: "• ";
    color: #facc6b;
}

.hero__price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.hero__price {
    font-size: 1.7rem;
    font-weight: 700;
    color: #facc6b;
}

.hero__price-alt {
    font-size: 0.9rem;
    color: #e5e7eb;
}

.hero__small {
    font-size: 0.8rem;
    color: #9ca3af;
}


/* ------------------------------ */
/*            CARDS               */
/* ------------------------------ */

.grid {
    display: grid;
    gap: 24px;
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    background: rgba(15, 23, 42, 0.94);
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(198, 166, 103, 0.35);
    box-shadow: 0 14px 38px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(198,166,103,0.30);
}


/* ------------------------------ */
/*            STEPS               */
/* ------------------------------ */

.steps {
    display: grid;
    gap: 34px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: center;
}

.step__number {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #facc6b, #c6a667);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #111827;
}


/* ------------------------------ */
/*            PRICING             */
/* ------------------------------ */

.pricing {
    background: rgba(15, 23, 42, 0.92);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(198, 166, 103, 0.35);
    text-align: left;
}

.pricing--highlight {
    border-color: #facc6b;
    box-shadow: 0 0 20px rgba(198,166,103,0.3);
}

.pricing__price {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #facc6b;
}

.pricing__subtitle {
    color: #d1d5db;
    margin-bottom: 16px;
}

.pricing__list {
    list-style: none;
    margin-bottom: 20px;
}

.pricing__list li {
    margin-bottom: 6px;
}

.pricing__list li::before {
    content: "• ";
    color: #facc6b;
}


/* ------------------------------ */
/*            CONTACT             */
/* ------------------------------ */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact__info {
    line-height: 1.8;
}

.contact__form label {
    display: block;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid rgba(198,166,103,0.30);
    background: rgba(255,255,255,0.05);
    color: white;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: 1px solid #facc6b;
}

.contact__note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 8px;
}


/* ------------------------------ */
/*            FOOTER              */
/* ------------------------------ */

.footer {
    background: #020205;
    padding: 40px 0;
}

.footer__content {
    text-align: center;
    color: #9ca3af;
}

.footer__content p + p {
    margin-top: 6px;
}


/* ------------------------------ */
/*         RESPONSIVE             */
/* ------------------------------ */

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .grid--3 {
        grid-template-columns: 1fr;
    }

    .grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: block;
    }
}