.atncp-wrap,
.atncp-wrap * {
    box-sizing: border-box;
}

.atncp-wrap {
    --wv-red: #d0021b;
    --wv-brown: #8b572a;
    --wv-text: #111111;
    --wv-white: #ffffff;
    --wv-navy: #0b1f3a;
    --wv-green: #1f8a4c;
    --wv-bg: #f7f5f1;
    --wv-line: rgba(17, 17, 17, 0.1);
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 16px 48px;
    font-family: Inter, Arial, sans-serif;
    color: var(--wv-text);
}

.atncp-simple-head {
    padding: 34px 26px;
    border-radius: 18px;
    background: var(--wv-navy);
    color: var(--wv-white);
}

.atncp-simple-head span {
    display: inline-block;
    margin-bottom: 10px;
    color: #f6d37a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.atncp-simple-head h1 {
    max-width: 760px;
    margin: 0;
    color: var(--wv-white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.atncp-simple-head p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
}

.atncp-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
}

.atncp-alert--success {
    color: #0f5132;
    border: 1px solid rgba(31, 138, 76, 0.22);
    background: rgba(31, 138, 76, 0.1);
}

.atncp-alert--error {
    color: #8b0000;
    border: 1px solid rgba(208, 2, 27, 0.18);
    background: rgba(208, 2, 27, 0.08);
}

.atncp-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    margin-top: 22px;
    align-items: start;
}

.atncp-contact-box,
.atncp-form-card {
    padding: 26px;
    border: 1px solid var(--wv-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.atncp-contact-box h2,
.atncp-form-card h2 {
    margin: 0;
    color: var(--wv-navy);
    font-size: 25px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.atncp-muted {
    margin: 10px 0 20px;
    color: rgba(17, 17, 17, 0.68);
    font-size: 15px;
    line-height: 1.6;
}

.atncp-contact-list {
    display: grid;
    gap: 10px;
}

.atncp-contact-list a {
    display: block;
    padding: 14px 15px;
    border: 1px solid var(--wv-line);
    border-radius: 14px;
    background: #ffffff;
    color: var(--wv-text) !important;
    text-decoration: none !important;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.atncp-contact-list a:hover {
    border-color: rgba(208, 2, 27, 0.28);
    background: #fff8f6;
    color: var(--wv-brown) !important;
}

.atncp-contact-list small,
.atncp-office-list small {
    display: block;
    margin-bottom: 4px;
    color: var(--wv-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.atncp-contact-list strong {
    display: block;
    color: inherit;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 750;
    word-break: break-word;
}

.atncp-office-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--wv-line);
}

.atncp-office-list div {
    padding: 0;
}

.atncp-office-list p {
    margin: 0;
    color: rgba(17, 17, 17, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.atncp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.atncp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
}

.atncp-btn--primary {
    color: var(--wv-white) !important;
    background: var(--wv-red);
}

.atncp-btn--primary:hover {
    color: var(--wv-white) !important;
    background: #a90015;
}

.atncp-btn--light {
    color: var(--wv-navy) !important;
    border: 1px solid var(--wv-line);
    background: #ffffff;
}

.atncp-btn--light:hover {
    color: var(--wv-brown) !important;
    border-color: rgba(139, 87, 42, 0.25);
    background: #fbf7f1;
}

.atncp-form {
    display: grid;
    gap: 14px;
}

.atncp-field {
    display: grid;
    gap: 7px;
}

.atncp-field label {
    color: var(--wv-navy);
    font-size: 13px;
    font-weight: 750;
}

.atncp-field input,
.atncp-field select,
.atncp-field textarea {
    width: 100%;
    min-height: 47px;
    padding: 12px 13px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 10px;
    outline: none;
    background: #ffffff;
    color: var(--wv-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.atncp-field textarea {
    min-height: 110px;
    resize: vertical;
}

.atncp-field input:focus,
.atncp-field select:focus,
.atncp-field textarea:focus {
    border-color: rgba(208, 2, 27, 0.55);
    box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.08);
}

.atncp-submit {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: var(--wv-red);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.atncp-submit:hover {
    background: #a90015;
}

.atncp-submit.is-loading {
    opacity: 0.75;
    cursor: wait;
}

.atncp-map {
    overflow: hidden;
    width: 100%;
    margin-top: 22px;
    border: 1px solid var(--wv-line);
    border-radius: 18px;
    background: var(--wv-bg);
}

.atncp-map iframe {
    display: block;
    width: 100% !important;
    min-height: 280px;
    border: 0;
}

@media (max-width: 900px) {
    .atncp-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .atncp-wrap {
        padding: 16px 12px 36px;
    }

    .atncp-simple-head {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .atncp-simple-head h1 {
        font-size: 30px;
    }

    .atncp-simple-head p {
        font-size: 15px;
    }

    .atncp-contact-box,
    .atncp-form-card {
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
    }

    .atncp-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .atncp-btn {
        width: 100%;
    }
}
