/* Shared inner-page design system (brand colors preserved) */
.site-page {
    overflow-x: hidden;
}

.page-hero {
    position: relative;
    padding: 88px 0 72px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero--tall {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 96px 0;
}

.page-hero--tall .container {
    width: 100%;
}

.page-hero--light {
    background: linear-gradient(180deg, #fff 0%, var(--black-5xlight) 100%);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(84, 6, 5, 0.92) 0%, rgba(135, 10, 8, 0.78) 48%, rgba(84, 6, 5, 0.62) 100%);
}

.page-hero--light .page-hero__overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 242, 246, 0.98) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-hero--light .page-hero__content {
    color: var(--black-bold);
}

.page-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-hero--light .page-eyebrow {
    background: var(--primary-light);
    border-color: rgba(135, 10, 8, 0.12);
    color: var(--primary);
}

.page-hero__content h1,
.page-hero__content h2,
.page-hero__content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 16px;
}

.page-hero__content p,
.page-lead {
    max-width: 640px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.page-hero--light .page-hero__content p {
    color: var(--black-medium);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.page-section {
    padding: 88px 0;
}

.page-section--muted {
    background: linear-gradient(180deg, #fff 0%, var(--black-5xlight) 100%);
}

.page-section--dark {
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.page-section--dark .page-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(84, 6, 5, 0.92) 0%, rgba(135, 10, 8, 0.75) 100%);
}

.page-section--dark .container {
    position: relative;
    z-index: 1;
}

.page-section-head {
    margin-bottom: 40px;
}

.page-section-head h3,
.page-section-head h4 {
    color: var(--primary-bold);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 12px;
}

.page-section-head p {
    color: var(--black-medium);
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
}

.page-panel {
    padding: 36px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--black-4xlight);
    box-shadow: 0 16px 40px rgba(39, 45, 55, 0.08);
}

.page-panel--glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    color: #fff;
}

.page-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(39, 45, 55, 0.14);
    border: 1px solid var(--black-4xlight);
}

.page-image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.page-card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card {
    padding: 28px 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--black-4xlight);
    box-shadow: 0 10px 30px rgba(39, 45, 55, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.page-card:hover {
    transform: translateY(-5px);
    border-color: rgba(135, 10, 8, 0.16);
    box-shadow: 0 18px 36px rgba(135, 10, 8, 0.1);
}

.page-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    object-fit: contain;
}

.page-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.page-card h5,
.page-card h6 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black-bold);
    margin-bottom: 10px;
}

.page-card p {
    color: var(--black-medium);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}

.page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.page-split--reverse .page-split__media {
    order: 2;
}

.page-cta-band {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--primary-bold) 0%, var(--primary) 100%);
    color: #fff;
}

.page-cta-band h5,
.page-cta-band h6 {
    color: #fff;
    margin-bottom: 12px;
}

.page-cta-band p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

.page-cta-band .page-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.page-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--black-5xlight);
    border: 1px solid var(--black-4xlight);
}

.page-step__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.page-step__title {
    font-weight: 700;
    color: var(--black-bold);
    margin-top: 8px;
}

.page-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.page-team-card {
    text-align: center;
    padding: 24px 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--black-4xlight);
    box-shadow: 0 10px 28px rgba(39, 45, 55, 0.06);
}

.page-team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.page-team-card h6 {
    font-weight: 800;
    color: var(--black-bold);
    margin-bottom: 8px;
}

.page-team-card p {
    font-size: 14px;
    color: var(--black-medium);
    line-height: 1.6;
    margin: 0;
}

.page-testimonials {
    padding: 72px 0;
    background: var(--black-5xlight);
}

.page-testimonials h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-bold);
}

.page-testimonial-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--black-4xlight);
    box-shadow: 0 8px 24px rgba(39, 45, 55, 0.06);
    height: 100%;
}

.page-testimonial-card img {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.page-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--black-4xlight);
}

.page-faq-item:last-child {
    border-bottom: none;
}

.page-faq-item h6 {
    color: var(--primary-bold);
    font-weight: 800;
    margin-bottom: 10px;
}

.page-faq-item p {
    color: var(--black-medium);
    margin: 0;
    line-height: 1.65;
}

.page-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* Contact page */
.contact-hero {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.contact-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero__inner h1,
.contact-hero__inner h2,
.contact-hero__inner h3,
.contact-hero__inner h4 {
    color: var(--primary-bold);
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-hero__inner p {
    margin: 0 auto;
    max-width: 640px;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--black-medium);
}

.contact-page {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.contact-page__info h3,
.contact-page__form h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-bold);
    margin-bottom: 0.5rem;
}

.contact-page__intro,
.contact-page__form-lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 1.75rem;
}

.contact-page__channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-page__channel {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(135, 10, 8, 0.08);
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-page__channel:first-child {
    border-top: 1px solid rgba(135, 10, 8, 0.08);
}

.contact-page__channel:hover {
    color: var(--primary);
}

.contact-page__channel--static {
    cursor: default;
}

.contact-page__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
}

.contact-page__channel-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.contact-page__channel-text strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-page__channel-text span:last-child {
    font-size: 0.9375rem;
    color: var(--black-medium);
    line-height: 1.5;
    word-break: break-word;
}

.contact-page__note {
    margin: 0;
    padding-left: 0.75rem;
    border-left: 2px solid var(--secondary);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #64748b;
}

.contact-page__form {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(135, 10, 8, 0.08);
}

.contact-page__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black-bold);
}

.contact-page__input {
    min-height: 48px;
    padding: 0.625rem 0.875rem;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff;
    font-size: 0.9375rem;
}

.contact-page__input:focus {
    border-color: rgba(135, 10, 8, 0.35) !important;
    box-shadow: 0 0 0 3px rgba(135, 10, 8, 0.08) !important;
}

textarea.contact-page__input {
    min-height: 140px;
    resize: vertical;
}

.contact-page__submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
}

.contact-page__alert {
    margin-bottom: 1.25rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-page__alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.contact-page__alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-page__submit.is-loading,
.js-contact-submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

.home-contact__form .contact-page__alert {
    color: #fff;
}

.home-contact__form .contact-page__alert--success {
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(110, 231, 183, 0.45);
    color: #ecfdf5;
}

.home-contact__form .contact-page__alert--error {
    background: rgba(220, 38, 38, 0.18);
    border: 1px solid rgba(252, 165, 165, 0.45);
    color: #fef2f2;
}

.page-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.page-contact-info a,
.page-contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--black-5xlight);
    border: 1px solid var(--black-4xlight);
    color: var(--black-bold);
    text-decoration: none;
    font-weight: 600;
}

.page-contact-info a:hover {
    border-color: rgba(135, 10, 8, 0.2);
    color: var(--primary);
}

.page-contact-info i {
    color: var(--primary);
    margin-top: 3px;
}

.page-form-card {
    padding: 32px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(39, 45, 55, 0.1);
    border: 1px solid var(--black-4xlight);
}

.page-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black-bold);
}

.page-form-control {
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 14px !important;
    border: 1px solid var(--black-4xlight) !important;
    background: var(--black-5xlight);
    font-size: 15px;
}

.page-form-control:focus {
    border-color: rgba(135, 10, 8, 0.35) !important;
    box-shadow: 0 0 0 4px rgba(135, 10, 8, 0.08) !important;
    background: #fff;
}

.page-partners-strip {
    padding: 28px;
    border-radius: 20px;
    background: var(--black-5xlight);
    border: 1px solid var(--black-4xlight);
}

.page-partners-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.page-partners-logos img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
}

.page-partners-logos > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--black-4xlight);
}

.page-privacy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.page-privacy-nav {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    padding: 20px;
    border-radius: 20px;
    background: var(--black-5xlight);
    border: 1px solid var(--black-4xlight);
}

.page-privacy-nav a {
    display: block;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: var(--black-medium);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.page-privacy-nav a:hover,
.page-privacy-nav a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.page-privacy-content h5 {
    color: var(--primary-bold);
    font-weight: 800;
    margin: 28px 0 12px;
}

.page-privacy-content h5:first-child {
    margin-top: 0;
}

.page-privacy-content p {
    color: var(--black-medium);
    line-height: 1.75;
}

.page-help-search {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}

.page-help-search input {
    flex: 1;
    min-height: 52px;
    border-radius: 999px !important;
    padding-left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff;
}

.page-help-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.page-accordion .accordion-item {
    border: 1px solid var(--black-4xlight);
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.page-accordion .accordion-button {
    font-weight: 700;
    color: var(--black-bold);
    background: #fff;
    box-shadow: none !important;
}

.page-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--primary-light);
}

.page-error {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black-5xlight) 0%, #fff 100%);
}

.page-error__code {
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 8px;
}

.btn-page-primary,
.btn-page-outline,
.btn-page-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-page-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-bold) 100%);
    box-shadow: 0 8px 20px rgba(205, 151, 49, 0.3);
}

.btn-page-primary:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-page-outline {
    color: #fff !important;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.btn-page-outline--dark {
    color: var(--primary) !important;
    border-color: rgba(135, 10, 8, 0.25);
    background: var(--primary-light);
}

.btn-page-white {
    color: var(--primary) !important;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.page-timeline-card {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--black-4xlight);
    box-shadow: 0 10px 28px rgba(39, 45, 55, 0.05);
}

.page-timeline-card__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.page-timeline-card__head img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.page-timeline-card h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black-bold);
    margin-bottom: 10px;
}

.page-timeline-card p {
    color: var(--black-medium);
    line-height: 1.65;
    margin-bottom: 0;
}

.page-timeline-card__body h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black-bold);
    margin-bottom: 10px;
}

.page-timeline-card__body p {
    color: var(--black-medium);
    line-height: 1.65;
    margin-bottom: 0;
}

.btn-page-primary.btn-page-outline--dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bold) 100%) !important;
    box-shadow: 0 8px 20px rgba(135, 10, 8, 0.25);
    color: #fff !important;
}

.page-hero:not(.page-hero--light) .page-hero__content h1,
.page-hero:not(.page-hero--light) .page-hero__content h2,
.page-hero:not(.page-hero--light) .page-hero__content h3,
.page-hero:not(.page-hero--light) .page-hero__content h4,
.page-hero:not(.page-hero--light) .page-hero__content h5,
.page-hero:not(.page-hero--light) .page-hero__content h6,
.page-hero:not(.page-hero--light) .page-hero__content .text-primary,
.page-hero:not(.page-hero--light) .page-hero__content .text-primary-medium,
.page-hero:not(.page-hero--light) .page-hero__content .text-primary-bold {
    color: #fff !important;
}

.page-section--dark h1,
.page-section--dark h2,
.page-section--dark h3,
.page-section--dark h4,
.page-section--dark h5,
.page-section--dark h6,
.page-section--dark .text-primary,
.page-section--dark .text-primary-medium,
.page-section--dark .text-primary-bold,
.page-panel--glass h1,
.page-panel--glass h2,
.page-panel--glass h3,
.page-panel--glass h4,
.page-panel--glass .text-primary,
.page-panel--glass .text-primary-bold {
    color: #fff !important;
}

.page-hero:not(.page-hero--light) .page-hero__content .text-secondary,
.page-hero:not(.page-hero--light) .page-hero__content .text-secondary-medium,
.page-section--dark .text-secondary,
.page-section--dark .text-secondary-medium,
.page-panel--glass .text-secondary {
    color: var(--secondary) !important;
}

.page-hero__content .text-secondary {
    color: var(--secondary) !important;
}

@media (max-width: 1199px) {
    .page-card-grid,
    .page-card-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-partners-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .page-hero,
    .page-section {
        padding: 64px 0;
    }

    .page-split,
    .page-contact-grid,
    .contact-page,
    .page-faq-grid,
    .page-privacy-layout,
    .page-timeline-grid {
        grid-template-columns: 1fr;
    }

    .page-split--reverse .page-split__media {
        order: 0;
    }

    .page-card-grid,
    .page-card-grid--2,
    .page-card-grid--4 {
        grid-template-columns: 1fr;
    }

    .page-team-grid {
        grid-template-columns: 1fr;
    }

    .page-cta-band .page-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-privacy-nav {
        position: static;
    }
}

@media (max-width: 575px) {
    .page-partners-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-form-card,
    .page-panel {
        padding: 22px;
    }
}

/* Auth — register split layout */
.auth-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: calc(100vh - var(--header-height, 72px));
    align-items: stretch;
}

.auth-split__media {
    position: relative;
    min-height: calc(100vh - var(--header-height, 72px));
    overflow: hidden;
}

.auth-split__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-split__media-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(180deg, rgba(84, 6, 5, 0.35) 0%, rgba(84, 6, 5, 0.88) 100%);
    color: #fff;
}

.auth-split__eyebrow {
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.auth-split__media-content h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 22rem;
}

.auth-split__media-content p {
    margin: 0;
    max-width: 24rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.auth-split__body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3rem);
    background: #fff;
    min-height: calc(100vh - var(--header-height, 72px));
}

.auth-split__form-wrap {
    width: 100%;
    max-width: 420px;
}

.auth-split__form h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary-bold);
    margin-bottom: 0.35rem;
}

.auth-split__lead {
    margin: 0 0 1.75rem;
    font-size: 0.9375rem;
    color: #64748b;
}

.auth-split__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black-bold);
}

.auth-split__input {
    min-height: 48px;
    padding: 0.625rem 0.875rem;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff;
    font-size: 0.9375rem;
}

.auth-split__input:focus {
    border-color: rgba(135, 10, 8, 0.35) !important;
    box-shadow: 0 0 0 3px rgba(135, 10, 8, 0.08) !important;
}

.auth-split__terms {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin: 1.25rem 0 1.5rem;
}

.auth-split__terms .form-check-input {
    margin-top: 0.15rem;
    accent-color: var(--primary);
}

.auth-split__terms .form-check-label {
    font-size: 0.8125rem;
    color: var(--black-medium);
    line-height: 1.5;
}

.auth-split__terms a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-split__terms a:hover {
    text-decoration: underline;
}

.auth-split__submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
}

.auth-split__switch {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

.auth-split__switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-split__switch a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .auth-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-split__media,
    .auth-split__body {
        min-height: auto;
    }

    .auth-split__media {
        min-height: 280px;
    }

    .auth-split__media-content {
        justify-content: center;
    }

    .auth-split__body {
        padding: 2rem 1.25rem 3rem;
    }

    .auth-split__form-wrap {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 1310px) {
    .auth-split {
        min-height: calc(100vh - var(--header-height-mobile, 64px));
    }
}
