* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0d2d5e;
    --navy-dark: #0a2247;
    --blue-mid: #1a4a8a;
    --accent: #1e4fa0;
    --red: #e53935;
    --text-primary: #1a2a3a;
    --text-secondary: #6b7c93;
    --text-hint: #8fa0b0;
    --border: #d8e0ea;
    --border-focus: #1e4fa0;
    --bg-page: #f2f5f8;
    --bg-white: #ffffff;
    --bg-input: #f7f9fc;
    --bg-sidebar: #f0f4f8;
    --green: #22c55e;
    --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font);
    background: var(--bg-page);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

/* ========== HEADER ========== */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 1000px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.lang-btn:hover {
    background: var(--bg-page);
}

.contact-btn {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: var(--blue-mid);
}

/* ========== PAGE HERO ========== */
.page-hero {
    padding: 48px 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 460px;
}

/* ========== MAIN LAYOUT ========== */
.form-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* ========== SIDEBAR ========== */
.sidebar {
    width: 220px;
    flex-shrink: 0;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px 16px;
    position: sticky;
    top: 72px;
}

.sidebar-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-hint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 0 4px;
}

.sidebar-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    font-size: 13px;
    color: var(--text-secondary);
}

.sidebar-step:hover {
    background: var(--bg-page);
}

.sidebar-step.active {
    background: #eef2fa;
    color: var(--navy);
    font-weight: 600;
    border-left-color: var(--navy);
}

.sidebar-step.done {
    color: var(--text-secondary);
}

.sidebar-step svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ========== FORM CARD ========== */
.form-column {
    flex: 1;
    min-width: 0;
}

.form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px 40px 40px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-hint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.form-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-card .subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.draft-badge {
    background: #e8f0fe;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    margin-top: 2px;
}

/* ========== FORM FIELDS ========== */
.field-group {
    margin-bottom: 20px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.field-row-3 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

label .req {
    color: var(--red);
}

.hint {
    font-size: 11px;
    color: var(--text-hint);
    margin-top: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-primary);
    background: var(--bg-input);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: var(--font);
    appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-hint);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--border-focus);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 79, 160, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7c93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ========== AMOUNT + CURRENCY ========== */
.amount-row {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 8px;
}

/* ========== BUTTONS ========== */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.btn-back {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.15s;
}

.btn-back:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-back:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.btn-next {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 11px 28px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-next:hover {
    background: var(--blue-mid);
}

.btn-draft {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 16px;
}

.btn-submit {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 11px 28px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--blue-mid);
}

/* ========== HELP BANNER ========== */
.help-banner {
    background: var(--navy);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.help-banner-text h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.help-banner-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    max-width: 340px;
    line-height: 1.5;
}

.btn-manager {
    background: #fff;
    color: var(--navy);
    border: none;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.btn-manager:hover {
    opacity: 0.85;
}

/* ========== INFO BOX ========== */
.info-box {
    background: #f0f6ff;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.info-box-icon {
    width: 32px;
    height: 32px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box-icon svg {
    width: 16px;
    height: 16px;
}

.info-box-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.info-box-text p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-box-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    display: inline-block;
    margin-top: 6px;
}

.info-box-text a:hover {
    text-decoration: underline;
}

/* ========== SIDEBAR RIGHT (step 2) ========== */
.right-panel {
    width: 200px;
    flex-shrink: 0;
}

.tip-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tip-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.tip-card-header svg {
    color: var(--text-hint);
}

.tip-card-header span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.tip-card p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tip-img {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 235px;
    background-image: url('/upload/images2025/Building\ architectural\ detail.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tip-img img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.tip-img-caption {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(0, 23, 54, 1) 100%
    );

    display: flex;
    align-items: end;
    padding: 10px 12px;
    height: 100%;
}

.tip-img-caption p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

/* ========== DOCUMENTS STEP ========== */
.doc-section {
    margin-bottom: 24px;
}

.doc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.doc-section-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

.doc-section-title .dot {
    color: var(--red);
    font-size: 18px;
    line-height: 1;
}

.badge-required {
    background: #fff0f0;
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.doc-section-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.upload-zone {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 36px 20px;
    text-align: center;
    background: var(--bg-input);
    transition: border-color 0.15s;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: var(--border-focus);
}

.upload-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    color: var(--accent);
}

.upload-zone p {
    font-size: 13px;
    color: var(--text-secondary);
}

.upload-zone a {
    color: var(--accent);
    font-weight: 500;
}

.upload-zone .size-hint {
    font-size: 11px;
    color: var(--text-hint);
    margin-top: 4px;
}

.doc-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.doc-card {
    background: var(--bg-input);
    border: 1.5px dashed var(--border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s;
}

.doc-card:hover {
    border-color: var(--accent);
}

.doc-card h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.doc-card p {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.doc-card-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
}

/* ========== CONFIRM STEP ========== */
.confirm-section {
    margin-bottom: 20px;
}

.confirm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.confirm-party {
    background: var(--bg-input);
    border-radius: 12px;
    padding: 20px;
}

.confirm-party-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.confirm-party-header svg {
    color: var(--text-secondary);
    width: 18px;
    height: 18px;
}

.confirm-party-header span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.confirm-field-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-hint);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 3px;
}

.confirm-field-value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}

.confirm-field {
    margin-bottom: 10px;
}

.confirm-params {
    background: var(--navy);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
}

.confirm-params-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.confirm-params-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.confirm-params-header-left svg {
    color: rgba(255, 255, 255, 0.7);
    width: 18px;
    height: 18px;
}

.confirm-params-header-left span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.confirm-params-edit {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    background: none;
    border: none;
    cursor: pointer;
}

.confirm-params-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.cp-field-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 4px;
}

.cp-field-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.confirm-docs {
    background: var(--bg-input);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.confirm-docs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.confirm-docs-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.confirm-docs-header-left span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.add-files-btn {
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.doc-file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
}

.doc-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-file-icon {
    color: var(--text-hint);
}

.doc-file-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.doc-file-meta {
    font-size: 11px;
    color: var(--text-hint);
}

.doc-file-check {
    width: 22px;
    height: 22px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}

.confirm-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
}

.confirm-checkbox label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.confirm-checkbox a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

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

/* ========== SUCCESS PAGE ========== */
.success-page {
    display: none;
    min-height: calc(100vh - 56px);
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    gap: 60px;
}

.success-page.visible {
    display: flex;
}

.success-visual {
    width: 320px;
    height: 280px;
    background: #e8edf3;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-check {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-check-inner {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.success-divider {
    width: 60px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    margin-bottom: 20px;
}

.success-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.success-number {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
    margin-bottom: 24px;
}

.success-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.success-meta-item {
    padding: 16px 20px;
}

.success-meta-item:first-child {
    border-right: 1px solid var(--border);
}

.success-meta-label {
    font-size: 10px;
    color: var(--text-hint);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.success-meta-label svg {
    width: 14px;
    height: 14px;
}

.success-meta-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-home {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-home:hover {
    background: var(--blue-mid);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 40px 40px 32px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 200px 200px;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand p {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-brand p strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.footer-brand a {
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
}

.footer-phones {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.footer-phone-item {}

.footer-phone-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.footer-phone-desc {
    font-size: 11px;
    color: var(--text-secondary);
}

.footer-nav-col h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.footer-nav-col a {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-nav-col a:hover {
    color: var(--navy);
}

.footer-nav-col a.highlight {
    color: var(--accent);
}

.footer-contact h4 {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: var(--bg-page);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    transition: background 0.15s;
}

.footer-social a:hover {
    background: var(--border);
}

.footer-bot-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-bot-row svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.footer-anti {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 24px;
}

.footer-bottom-lang {
    display: flex;
    gap: 12px;
}

.footer-bottom-lang a {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-bottom-lang a.active {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========== PAGE SECTIONS VISIBILITY ========== */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.main-content {
    display: block;
}

.main-content.hidden {
    display: none;
}

.success-wrap {
    display: none;
}

.success-wrap.visible {
    display: block;
}

.separator {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

/* ========== CORR BANK (step 2 extra) ========== */
.bank-info-block {
    background: var(--bg-input);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.bank-info-block h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .form-layout {
        flex-direction: column;
        padding: 0 16px 60px;
    }

    .sidebar {
        width: 100%;
        position: static;
    }

    .right-panel {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-phones {
        flex-wrap: wrap;
    }

    .page-hero {
        padding: 32px 16px 20px;
    }

    .page-hero h1 {
        font-size: 26px;
    }
}