/* Hero Section */
.auth-inline-section {
    padding: 20px 20px 20px;
    background: #0f172a;
    border-radius: 0 0 16px 16px;
    position: relative;
}

.auth-inline-card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
}

.auth-inline-title {
    margin: 0 0 4px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #F9FAFB;
}

.auth-inline-subtitle {
    margin: 0 0 24px;
    font-size: 15px;
    color: #9CA3AF;
}

.auth-inline-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-inline-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) auto;
    gap: 16px 24px;
    align-items: stretch;
}

.auth-inline-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-inline-field--password {
    position: relative;
}

.auth-inline-field--password input {
    padding-right: 110px;
}

.auth-inline-field label {
    font-size: 14px;
    color: #E5E7EB;
}

.auth-inline-field input {
    border-radius: 8px;
    border: 1px solid #4B5563;
    background: #020617;
    padding: 10px 14px;
    color: #F9FAFB;
    font-size: 15px;
}

.auth-inline-field input::placeholder {
    color: #6B7280;
}

.auth-inline-field input:focus {
    outline: none;
    border-color: #3B82F6;
}

.auth-inline-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.auth-inline-remember {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #E5E7EB;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #4B5563;
    background: #020617;
}

.auth-inline-remember::before {
    content: "";
    width: 20px;
    height: 16px;
    border-radius: 2px;
    border: 2px solid currentColor;
    background: linear-gradient(90deg, rgba(15,23,42,0.2) 0, rgba(15,23,42,0.2) 35%, transparent 36%, transparent 100%);
    box-shadow: inset 0 0 0 1px rgba(15,23,42,0.5);
}

.auth-inline-remember::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 14px;
    background: currentColor;
    opacity: 0.7;
    transform: translateX(-4px);
}

.auth-inline-remember.auth-inline-remember--active {
    background: #3F7FDE;
    border-color: #3F7FDE;
    color: #FFFFFF;
}

.auth-inline-remember.auth-inline-remember--active::before {
    background: linear-gradient(90deg, rgba(15,23,42,0.4) 0, rgba(15,23,42,0.4) 28%, rgba(15,23,42,0.1) 29%, rgba(15,23,42,0.1) 100%);
    box-shadow: inset 0 0 0 1px rgba(15,23,42,0.7);
}

.auth-inline-remember.auth-inline-remember--active::after {
    opacity: 1;
}

.auth-inline-forgot {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #93C5FD;
    text-decoration: none;
}

.auth-inline-forgot:hover {
    text-decoration: underline;
}

.auth-inline-submit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.auth-inline-submit--inline {
    display: flex;
    flex: 1;
}

.auth-inline-submit-btn {
    width: 100%;
}

.auth-inline-register-link {
    min-width: 150px;
    justify-content: center;
}

.auth-inline-actions-spacer {
    display: inline-block;
    min-width: 48px;
}

@media (max-width: 830px) {
    .auth-inline-section {
        padding: 20px 16px 20px;
    }

    .auth-inline-card {
        padding: 0;
    }

    .auth-inline-row {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) auto;
        gap: 12px;
    }

    .auth-inline-actions {
        flex-direction: row;
        align-items: center;
    }

    .auth-inline-submit {
        flex-direction: row;
        align-items: stretch;
    }

    .auth-inline-submit--inline {
        margin-top: 0;
    }
}

.hero {
    text-align: center;
    padding: 164px 20px 80px;
    position: relative;
}

.hero-badge {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 24px 8px 22px;
    gap: 8px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #1E3A8A;
    border-radius: 1000px;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: #3F7FDE;
    width: 279px;
    margin: 0 auto;
}

.hero-badge-icon {
    width: 24px;
}

.hero-title {
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 19px;
    max-width: 888px;
    margin-left: auto;
    margin-right: auto;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: 0.01em;
    color: #F9FAFB;
}

.hero-subtitle {
    margin-bottom: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    color: #9CA3AF;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    padding: 11px 24px;
    background: #3F7FDE;
    border-radius: 6px;
    font-size: 16px;
    height: 48px;
}

.auth-inline-submit-btn.btn-primary {
    width: 100px;
    height: 39px;
    padding-top: 0;
    padding-bottom: 0;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 10px 16px 10px 24px;
    gap: 8px;
    background: transparent;
    border: 1.5px solid #4B5563;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    transition: all 0.2s;
    color: #E5E7EB;
    height: 48px;
}

.btn-secondary:hover {
    background: #111827;
}

/* Statistics Section */
.stats-section {
    padding: 114px 20px;
    position: relative;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1312px;
    margin: 0 auto;
    justify-content: center;
}

.stat-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 34px;
    width: 426.67px;
    height: 168px;
    background: #020617;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    border-radius: 6px;
}

.stat-number {
    font-size: 56px;
    line-height: 63px;
    letter-spacing: 0.01em;
    color: #60A5FA;
}

.stat-label {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    color: #9CA3AF;
}

/* Trust Section */
.trust-section {
    padding: 94px 20px 60px;
    text-align: center;
}

.trust-container{
    display: flex;
    align-items: center;
    gap: 24px;
    width: 1352px;
}

.trust-title {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.01em;
    color: #E5E7EB;
    width: 189px;
    text-align: left;
}

.trust-carousel {
    max-width: 1099px;
    margin: 0 auto;
    cursor: default;
}

.trust-carousel .owl-stage-outer {
    overflow: hidden;
}

.trust-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-carousel__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
}

.trust-carousel .trust-logo {
    max-height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Article Marketing Section */
.article-marketing-section {
    padding: 50px 20px;
    background: #020617;
}

.section-title {
    font-size: 48px;
    line-height: 54px;
    color: #F9FAFB;
    font-weight: 400;
    letter-spacing: 1.7px;
    margin-bottom: 64px;
}

.text-accent {
    color: #3F7FDE;
}

.article-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.article-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 52px;
    width: 644px;
    height: 325px;
    background: #020617;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    border-radius: 16px;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
}

.article-card h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.01em;
    color: #F9FAFB;
    margin-bottom: 8px;
}

.article-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #9CA3AF;
    margin-bottom: 32px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 12px;
    border: 1px solid transparent;
    padding: 4px 8px;
    border-radius: 6px;
}

.tag--1 {
    background: rgba(255, 106, 85, 0.05);
    border: 1px solid rgba(255, 106, 85, 0.6);
    color: #FF6A55;
}
.tag--2 {
    background: rgba(165, 108, 255, 0.05);
    border: 1px solid rgba(165, 108, 255, 0.6);
    color: #A56CFF;
}
.tag--3 {
    background: rgba(76, 176, 169, 0.05);
    border: 1px solid rgba(76, 176, 169, 0.6);
    color: #4CB0A9;
}
.tag--4 {
    background: rgba(58, 160, 238, 0.05);
    border: 1px solid rgba(58, 160, 238, 0.6);
    color: #3AA0EE;
}
.tag--5 {
    background: rgba(143, 102, 255, 0.05);
    border: 1px solid rgba(143, 102, 255, 0.6);
    color: #8F66FF;
}
.tag--6 {
    background: rgba(0, 200, 90, 0.05);
    border: 1px solid rgba(0, 200, 90, 0.6);
    color: #00C85A;
}
.tag--7 {
    background: rgba(255, 122, 63, 0.05);
    border: 1px solid rgba(255, 122, 63, 0.6);
    color: #FF7A3F;
}
.tag--8 {
    background: rgba(42, 200, 215, 0.05);
    border: 1px solid rgba(42, 200, 215, 0.6);
    color: #2AC8D7;
}
.tag--9 {
    background: rgba(118, 197, 66, 0.05);
    border: 1px solid rgba(118, 197, 66, 0.6);
    color: #76C542;
}
.tag--10 {
    background: rgba(255, 95, 176, 0.05);
    border: 1px solid rgba(255, 95, 176, 0.6);
    color: #FF5FB0;
}
.tag--11 {
    background: rgba(78, 82, 231, 0.05);
    border: 1px solid rgba(78, 82, 231, 0.6);
    color: #4E52E7;
}
.tag--12 {
    background: rgba(34, 195, 244, 0.05);
    border: 1px solid rgba(34, 195, 244, 0.6);
    color: #22C3F4;
}
.tag--13 {
    background: rgba(255, 81, 98, 0.05);
    border: 1px solid rgba(255, 81, 98, 0.6);
    color: #FF5162;
}
.tag--14 {
    background: rgba(58, 194, 123, 0.05);
    border: 1px solid rgba(58, 194, 123, 0.6);
    color: #3AC27B;
}

/* FAQ Section — jQuery UI Accordion overrides */
.faq-section {
    padding: 79px 20px;
    background: #020617;
}

.faq-section .section-title {
    margin-bottom: 32px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 75px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #020617;
    border-radius: 8px;
    padding: 24px 36px 24px 24px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0.01em;
    color: #E5E7EB;
}

.faq-header::after {
    content: "";
    flex-shrink: 0;
    background-image: url('/img/public2026/plus.svg');
    width: 32px;
    height: 32px;
}

.faq-item--active .faq-header::after {
    transform: rotate(180deg);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: grid-template-rows 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-item:not(.faq-item--active) .faq-content {
    padding: 0;
    margin: 0;
    min-height: 0;
}

.faq-item--active .faq-content {
    grid-template-rows: 1fr;
}

.faq-content > * {
    overflow: hidden;
    min-height: 0;
}

.faq-item:not(.faq-item--active) .faq-content > * {
    padding: 0;
    margin: 0;
}

.faq-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.01em;
    color: #9CA3AF;
    max-width: 800px;
}

/* CTA Section */
.cta-section{
    margin-top: 78px;
}
.cta-section .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 82px;
    background: url('/img/public2026/cta.jpg'), #7F1D1D;
    border-radius: 24px;
    max-width: 1312px;
}

.cta-section-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(58.5px);
    border-radius: 16px;
}

.cta-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: 0.01em;
    color: #F9FAFB;
    margin-bottom: 16px;
    text-align: center;
}

.cta-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #D1D5DB;
    max-width: 512px;
    margin-bottom: 46px;
}

.cta-section .hero-buttons .btn-primary, .cta-section .hero-buttons .btn-secondary {
    width: 210px;
}

/* Blog Section */
.blog-section {
    padding: 116px 20px;
    background: #020617;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 16px;
}

.blog-title {
    font-weight: 400;
    font-size: 48px;
    letter-spacing: 0.01em;
    color: #333333;
}

.blog-link {
    box-sizing: border-box;
    padding: 12px 24px;
    background: transparent;
    border: 1.5px solid #4B5563;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    color: #E5E7EB;
    text-decoration: none;
}

.blog-link:hover {
    background: #111827;
}

.blog-scroll {
    overflow: visible;
}

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

.blog-card {

}

.blog-image {
    width: 100%;
    height: 258px;
    border-radius: 16px;
    object-fit: cover;
}

.blog-content {
    margin-top: 16px;
}

.blog-content .blog-content-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.blog-category {
    padding: 4px 8px;
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(37, 99, 235, 0.7);
    border-radius: 6px;
    font-weight: 400;
    font-size: 12px;
    color: #93C5FD;
}
.blog-category-2 {
    background: rgba(50, 196, 141, 0.05);
    border: 1px solid rgba(50, 196, 141, 0.6);
    color: #32C48D;
}
.blog-category3 {
    background: rgba(255, 106, 85, 0.05);
    border: 1px solid rgba(255, 106, 85, 0.6);
    color: #FF6A55;
}

.blog-date {
    font-size: 12px;
    color: #9CA3AF;
}

.blog-card-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #E5E7EB;
    margin-bottom: 8px;
}

.blog-card-text {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.01em;
    color: #9CA3AF;
}


@media (max-width: 1405px) {
    .article-card {
        width: 566px;
    }
    .stat-card {
        width: 365px;
    }
    .trust-container {
        width: auto;
        flex-direction: column;
    }
    .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 830px) {

    .hero {
        padding: 132px 20px 64px;
    }

    .hero-title {
        font-weight: 500;
        font-size: 56px;
        line-height: 63px;
    }

    .hero-subtitle {
        font-weight: 500;
        font-size: 18px;
        line-height: 20px;
        color: #4A4A4A;
        margin-bottom: 50px;
    }

    .hero-buttons {
        margin-left: auto;
        margin-right: auto;
    }

    .stats-section {
        padding: 66px 0;
    }

    .stat-card {
        width: 340px;
        padding: 24px;
    }

    .trust-container{
        flex-direction: column;
        width: auto;
    }

    .trust-title{
        width: auto;
    }

    .trust-section {
        padding: 56px 20px;
    }

    .trust-carousel .trust-logo {
        max-height: 64px;
    }

    .article-marketing-section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 42px;
        line-height: 47px;
        margin-bottom: 64px;
    }

    .article-cards {
        gap: 24px;
    }

    .article-card {
        width: 100%;
    }

    .faq-section {
        padding: 64px 0 24px;
    }

    .faq-accordion {
        margin-top: 70px;
    }

    .faq-item{

    }

    .faq-header {
        font-weight: 400;
        font-size: 24px;
        line-height: 28px;
        gap: 10px;
    }

    .faq-content p {
        padding-bottom: 16px;
    }

    .cta-section {
        padding: 30px 0;
    }

    .cta-section .container {
        padding: 68px;
    }

    .cta-title {
        font-size: 42px;
        line-height: 47px;
        text-align: center;
    }

    .cta-text {

    }

    .cta-section .hero-buttons {

    }

    .blog-section {
        padding: 74px 0 140px;
    }

    .blog-header {
        flex-wrap: nowrap;
        margin-bottom: 64px;
        align-items: flex-start;
        gap: 60px;
    }

    .blog-title {
        font-size: 42px;
        line-height: 47px;
    }

    .blog-link{
        width: 166px;
        flex-shrink: 0;
    }

    .blog-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .blog-content {
        margin-top: 12px;
    }

    .blog-card {
        width: 332px;
    }

    .blog-card:nth-child(3n) {
        display: none;
    }

    .blog-card-title{
        font-size: 24px;
        line-height: 28px;
    }

    .blog-image {
        height: 258px;
    }
}


@media (max-width: 440px) {
    .hero {
        padding: 74px 0 48px;
    }

    .hero-badge {
        font-size: 16px;
    }

    .hero-title {
        margin-bottom: 16px;
        margin-top: 22px;
        font-size: 38px;
        line-height: 43px;
        width: 288px;
    }

    .hero-subtitle {
        margin-bottom: 46px;
        width: 285px;
        font-size: 16px;
        line-height: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-section {
        padding: 42px 0;
    }

    .stats-grid {
        gap: 16px;
    }

    .stat-card {
        width: 100%;
        min-width: 0;
        padding: 20px;
        height: 130px;
        gap: 24px;
    }

    .stat-number {
        font-size: 48px;
        line-height: 54px;
    }

    .stat-label {
        font-size: 18px;
    }

    .trust-section {
        padding: 56px 0 32px;
    }

    .trust-carousel .trust-logo {
        max-height: 48px;
    }

    .trust-title {
        font-size: 24px;
    }

    .article-marketing-section {
        padding: 57px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
        letter-spacing: 0.01em;
        line-height: 36px;
    }

    .article-cards {
        gap: 24px;
    }

    .article-card {
        min-width: 0;
        height: auto;
        padding: 24px;
    }

    .article-card h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .article-card p {
        font-size: 16px;
        line-height: 130%;
        letter-spacing: 0.02em;
        margin-bottom: 14px;
    }

    .article-icon {
        margin-bottom: 16px;
    }

    .tag {
        padding: 4px 8px;
    }

    .faq-section {
        padding: 32px 0 24px;
    }

    .faq-section .section-title {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: 0.01em;
    }

    .faq-accordion {
        margin-top: 24px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-header {
        font-size: 18px;
        line-height: 21px;
        letter-spacing: 0.01em;
    }

    .faq-header::after {
        width: 24px;
        height: 24px;
        background-size: contain;
    }

    .faq-content p {
        font-size: 14px;
        padding-bottom: 12px;
    }

    .cta-section {
        margin-top: 48px;
        padding: 30px 20px;
    }

    .cta-section .container {
        padding: 24px 20px;
    }

    .cta-section-inner {
        padding: 24px 20px;
    }

    .cta-title {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: 0.01em;
        margin-bottom: 10px;
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-section .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-section .hero-buttons .btn-primary,
    .cta-section .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .blog-section {
        padding: 62px 0 64px;
    }

    .blog-header {
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
        margin-bottom: 46px;
    }

    .blog-title {
        font-size: 32px;
        line-height: 36px;
    }

    .blog-link {
        width: 100%;
        text-align: center;
    }

    .blog-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 24px;
    }

    .blog-card {
        width: 100%;
        min-width: 0;
    }

    .blog-card:nth-child(3n) {
        display: block;
    }

    .blog-card-title {
        font-size: 24px;
        line-height: 28px;
    }

    .blog-image {
        height: 258px;
    }

    .blog-content {
        margin-top: 10px;
    }

    .blog-card-text {
        font-size: 16px;
        line-height: 18px;
    }
}
