.nd-contact-page {
    background: #070b0f;
    color: #f5f5f5;
}

.nd-contact-page .nd-container {
    width: min(100% - 64px, 1440px);
    margin-inline: auto;
}

.nd-contact-page__hero {
    padding: 110px 0 88px;
    border-bottom: 1px solid #1c232a;
    background:
        radial-gradient(circle at 82% 15%, rgba(225, 167, 53, .14), transparent 30%),
        linear-gradient(145deg, #0c1217, #070b0f);
}

.nd-contact-page__eyebrow {
    margin: 0 0 18px;
    color: #e7aa28;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nd-contact-page h1,
.nd-contact-page h2,
.nd-contact-page p {
    margin-top: 0;
}

.nd-contact-page h1 {
    max-width: 1050px;
    margin-bottom: 28px;
    font-size: clamp(3rem, 5.4vw, 5.9rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.nd-contact-page h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.3vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -.035em;
}

.nd-contact-page__lead,
.nd-contact-page__form-intro {
    max-width: 820px;
    color: #b9c0c8;
    font-size: 1.08rem;
    line-height: 1.8;
}

.nd-contact-page__content {
    padding: 110px 0;
}

.nd-contact-page__grid {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
    gap: 72px;
    align-items: start;
}

.nd-contact-page__details {
    position: sticky;
    top: 110px;
}

.nd-contact-page__detail-list {
    margin-top: 40px;
    border-top: 1px solid #20272e;
}

.nd-contact-page__detail {
    display: grid;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid #20272e;
    color: inherit;
    text-decoration: none;
}

.nd-contact-page__detail span {
    color: #8f99a3;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nd-contact-page__detail strong {
    color: #f5f5f5;
    font-size: 1.04rem;
    line-height: 1.5;
}

.nd-contact-page__detail:hover strong {
    color: #e7aa28;
}

.nd-contact-page__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.nd-contact-page__socials a {
    padding: 10px 14px;
    border: 1px solid #28313a;
    border-radius: 999px;
    color: #f5f5f5;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.nd-contact-page__socials a:hover {
    border-color: #e7aa28;
    color: #e7aa28;
}

.nd-contact-page__form-card {
    padding: 44px;
    border: 1px solid #20272e;
    border-radius: 24px;
    background: #0b1116;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.nd-contact-page__notice {
    margin: 28px 0;
    padding: 16px 18px;
    border-radius: 10px;
    line-height: 1.6;
}

.nd-contact-page__notice--success {
    border: 1px solid rgba(72, 187, 120, .45);
    background: rgba(72, 187, 120, .1);
    color: #b9f3cf;
}

.nd-contact-page__notice--error {
    border: 1px solid rgba(239, 104, 104, .45);
    background: rgba(239, 104, 104, .1);
    color: #ffc4c4;
}

.nd-contact-form {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.nd-contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nd-contact-form label {
    display: grid;
    gap: 9px;
}

.nd-contact-form label > span {
    color: #d9dde1;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .025em;
}

.nd-contact-form input,
.nd-contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #2b343d;
    border-radius: 10px;
    background: #090e13;
    color: #f5f5f5;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

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

.nd-contact-form input:focus,
.nd-contact-form textarea:focus {
    border-color: #e1a735;
    box-shadow: 0 0 0 3px rgba(225, 167, 53, .12);
}

.nd-contact-form input::placeholder,
.nd-contact-form textarea::placeholder {
    color: #69737d;
}

.nd-contact-form__captcha {
    max-width: 280px;
}

.nd-contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    min-height: 54px;
    padding: 0 25px;
    border: 0;
    border-radius: 10px;
    background: #e1a735;
    color: #080b0f;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.nd-contact-form button:hover {
    transform: translateY(-1px);
}

.nd-contact-form__honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .nd-contact-page .nd-container {
        width: min(100% - 40px, 1180px);
    }

    .nd-contact-page__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nd-contact-page__details {
        position: static;
    }
}

@media (max-width: 640px) {
    .nd-contact-page .nd-container {
        width: min(100% - 28px, 720px);
    }

    .nd-contact-page__hero,
    .nd-contact-page__content {
        padding: 76px 0;
    }

    .nd-contact-page h1 {
        font-size: clamp(2.7rem, 13vw, 4.3rem);
    }

    .nd-contact-page__form-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .nd-contact-form__row {
        grid-template-columns: 1fr;
    }

    .nd-contact-form button,
    .nd-contact-form__captcha {
        width: 100%;
        max-width: none;
    }
}
