html {
    height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

main,
.page-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.page-hero {
    padding: 4.25rem 0 1.5rem;
    width: 100%;
}

.page-hero .container,
.page-section .container {
    width: 100%;
    max-width: 1320px;
}

.page-hero-title {
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -.02em;
    max-width: none;
}

.page-hero-meta,
.page-hero-lead {
    color: var(--ink-1);
    font-size: .95rem;
    max-width: 46rem;
    line-height: 1.65;
}

.page-section {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.25rem 0 5rem;
}

.page-section .container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.page-section .row {
    width: 100%;
    flex: 1 1 auto;
}

.legal-card {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2rem 2.15rem 2.35rem;
    width: 100%;
}

.legal-prose {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
}

.legal-prose .legal-lead {
    font-size: 1.05rem;
    color: var(--ink-0);
    line-height: 1.7;
}

.legal-prose h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.85rem 0 .7rem;
    color: var(--ink-0);
}

.legal-prose h2:first-child {
    margin-top: 0;
}

.legal-prose p,
.legal-prose li {
    color: var(--ink-1);
    line-height: 1.75;
    font-size: .95rem;
}

.legal-prose p + p {
    margin-top: .85rem;
}

.legal-prose ul {
    padding-inline-start: 1.15rem;
    margin: .35rem 0 1rem;
}

.legal-prose li + li {
    margin-top: .4rem;
}

.legal-prose a {
    color: var(--gold);
}

.legal-prose a:hover {
    color: #fff;
}

.footer-link.is-active {
    color: #fff;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.75rem 0 2rem;
}

@media (min-width: 768px) {
    .about-points {
        grid-template-columns: 1fr 1fr;
    }
}

.about-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
}

.about-point h2 {
    margin: 0 0 .35rem;
    font-size: 1.02rem;
}

.about-point p {
    margin: 0;
}

.about-point-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    background: rgba(243, 186, 47, .08);
}

.contact-form-card {
    position: relative;
}

.contact-form-title,
.contact-aside-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.field-label {
    font-size: .82rem;
    color: var(--ink-1);
    margin-bottom: .4rem;
    display: block;
}

.field-control {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
    color: #fff;
    font-size: .92rem;
    padding: .65rem .85rem;
    border-radius: 10px;
    width: 100%;
}

.field-control::placeholder {
    color: var(--ink-2);
}

.field-control:focus {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 0 0 3px rgba(243, 186, 47, .15);
    outline: none;
    color: #fff;
}

.field-control-ltr {
    direction: ltr;
    text-align: left;
}

.field-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.55;
}

.field-hint {
    font-size: .76rem;
    color: var(--ink-2);
    margin-top: .35rem;
}

.field-hint.err {
    color: #ff9a9a;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-width: 10.5rem;
    cursor: pointer;
}

.contact-submit:disabled,
.contact-submit.is-loading {
    opacity: .6;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-grad-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(13, 13, 13, .25);
    border-top-color: #0d0d0d;
    border-radius: 50%;
    flex-shrink: 0;
    animation: contact-btn-spin .7s linear infinite;
}

.contact-submit.is-loading .btn-grad-spinner {
    display: inline-block;
}

@keyframes contact-btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.error-box {
    border: 1px solid rgba(255, 89, 94, .25);
    background: rgba(255, 89, 94, .08);
    border-radius: 12px;
    padding: .9rem 1rem;
    font-size: .85rem;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #ffb8ba;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-success-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem .5rem 1rem;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    background: rgba(243, 186, 47, .12);
    border: 1px solid rgba(243, 186, 47, .28);
}

.contact-success-icon i {
    font-size: 2.35rem;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-success-title {
    display: block;
    color: var(--ink-0);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: .65rem;
}

.contact-success-text {
    margin: 0;
    max-width: 28rem;
    line-height: 1.6;
    color: var(--ink-1);
    font-size: .9rem;
}

.contact-aside {
    position: sticky;
    top: 5.5rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: inherit;
    margin-bottom: 1.15rem;
    transition: .2s;
}

.contact-channel:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .03);
}

.contact-channel strong {
    display: block;
    color: var(--ink-0);
    font-size: .92rem;
}

.contact-channel-meta {
    display: block;
    color: var(--ink-1);
    font-size: .82rem;
    direction: ltr;
    unicode-bidi: embed;
}

.contact-channel-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-social-grid {
    display: grid;
    gap: .65rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink-1);
    transition: .2s;
}

.contact-social-link i {
    font-size: 1.15rem;
    color: var(--gold);
}

.contact-social-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .03);
}

.turnstile-modal .modal-content {
    background: var(--bg-1, #12141a);
    border: 1px solid var(--line);
    color: var(--ink-0, #fff);
    border-radius: 16px;
}

.turnstile-modal .modal-header {
    border-bottom: 1px solid var(--line);
}

.turnstile-modal .modal-title {
    font-weight: 600;
}

.turnstile-modal .modal-body {
    padding-top: 1rem;
}

.turnstile-modal-desc {
    color: var(--ink-1);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.turnstile-widget-wrap {
    display: flex;
    justify-content: center;
    min-height: 65px;
}

.turnstile-modal .modal-footer {
    border-top: 1px solid var(--line);
}

.turnstile-modal .btn-light {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line);
    color: var(--ink-0, #fff);
}

.turnstile-modal .btn-light:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--line);
    color: var(--ink-0, #fff);
}

@media (max-width: 991.98px) {
    .page-hero {
        padding-top: 3rem;
        text-align: center;
    }

    .page-hero-title,
    .page-hero-meta,
    .page-hero-lead {
        margin-inline: auto;
    }

    .legal-card {
        padding: 1.25rem 1.1rem 1.45rem;
    }

    .contact-aside {
        position: static;
    }
}
