.s2s-static-page {
    min-height: 650px;
    padding: 55px 0 80px;
    background: #f6f8fc;
}

.s2s-page-container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.s2s-page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 45px;
    border: 1px solid #e5e9f2;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at top right,
            rgba(36, 103, 224, 0.15),
            transparent 38%
        ),
        #ffffff;
    box-shadow: 0 16px 45px rgba(15, 36, 75, 0.06);
}

.s2s-page-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #2467e0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.s2s-page-hero h1 {
    max-width: 780px;
    margin: 0 0 15px;
    color: #081b3a;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.s2s-page-hero p {
    max-width: 760px;
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}

.s2s-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.s2s-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.s2s-content-card,
.s2s-sidebar-card {
    border: 1px solid #e5e9f2;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 36, 75, 0.05);
}

.s2s-content-card {
    padding: 38px;
}

.s2s-sidebar-card {
    position: sticky;
    top: 110px;
    padding: 27px;
}

.s2s-content-card h2 {
    margin: 34px 0 13px;
    color: #0d1c38;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
}

.s2s-content-card h2:first-child {
    margin-top: 0;
}

.s2s-content-card h3 {
    margin: 24px 0 10px;
    color: #16233e;
    font-size: 19px;
}

.s2s-content-card p,
.s2s-content-card li {
    color: #60697b;
    font-size: 16px;
    line-height: 1.8;
}

.s2s-content-card p {
    margin: 0 0 16px;
}

.s2s-content-card ul {
    margin: 10px 0 22px;
    padding-left: 22px;
}

.s2s-content-card a,
.s2s-contact-info-item a {
    color: #2467e0;
    text-decoration: none;
}

.s2s-content-card a:hover,
.s2s-contact-info-item a:hover {
    text-decoration: underline;
}

.s2s-highlight-box {
    margin: 24px 0;
    padding: 22px;
    border: 1px solid #cfe0ff;
    border-radius: 16px;
    background: #f3f7ff;
}

.s2s-highlight-box p:last-child {
    margin-bottom: 0;
}

.s2s-sidebar-card h3 {
    margin: 0 0 18px;
    color: #0d1c38;
    font-size: 19px;
}

.s2s-sidebar-links {
    display: grid;
    gap: 8px;
}

.s2s-sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 11px;
    color: #586174;
    text-decoration: none;
    transition: 0.2s ease;
}

.s2s-sidebar-links a:hover,
.s2s-sidebar-links a.active {
    background: #edf3ff;
    color: #2467e0;
}

.s2s-updated {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #ebedf3;
    color: #8b93a5;
    font-size: 13px;
}

.s2s-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.s2s-form-group {
    margin-bottom: 19px;
}

.s2s-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1b2944;
    font-size: 14px;
    font-weight: 700;
}

.s2s-input,
.s2s-textarea {
    display: block;
    width: 100%;
    border: 1px solid #d9dee9;
    border-radius: 11px;
    background: #ffffff;
    color: #17213a;
    font: inherit;
    outline: none;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.s2s-input {
    height: 50px;
    padding: 0 15px;
}

.s2s-textarea {
    min-height: 170px;
    padding: 15px;
    resize: vertical;
}

.s2s-input:focus,
.s2s-textarea:focus {
    border-color: #2467e0;
    box-shadow: 0 0 0 4px rgba(36, 103, 224, 0.1);
}

.s2s-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border: 0;
    border-radius: 11px;
    background: #2467e0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.s2s-submit-button:hover {
    background: #1554c5;
    transform: translateY(-1px);
}

.s2s-alert {
    margin-bottom: 20px;
    padding: 14px 17px;
    border-radius: 11px;
    font-size: 14px;
    line-height: 1.6;
}

.s2s-alert-success {
    border: 1px solid #b8e5cb;
    background: #edf9f2;
    color: #227447;
}

.s2s-alert-error {
    border: 1px solid #efc0c0;
    background: #fff1f1;
    color: #9b3030;
}

.s2s-error-text {
    display: block;
    margin-top: 6px;
    color: #c0392b;
    font-size: 13px;
}

.s2s-contact-info-item {
    margin-bottom: 23px;
}

.s2s-contact-info-item:last-child {
    margin-bottom: 0;
}

.s2s-contact-info-item strong {
    display: block;
    margin-bottom: 6px;
    color: #16233e;
    font-size: 15px;
}

.s2s-contact-info-item p,
.s2s-contact-info-item a {
    margin: 0;
    color: #626b7e;
    line-height: 1.7;
}

.s2s-honeypot {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 900px) {
    .s2s-page-layout,
    .s2s-contact-grid {
        grid-template-columns: 1fr;
    }

    .s2s-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .s2s-static-page {
        padding: 30px 0 55px;
    }

    .s2s-page-container {
        width: min(100% - 22px, 1140px);
    }

    .s2s-page-hero {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .s2s-content-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .s2s-sidebar-card {
        border-radius: 16px;
    }

    .s2s-form-row {
        grid-template-columns: 1fr;
    }

    .s2s-page-hero h1 {
        font-size: 34px;
    }
}