/* 3alTrack informational pages v2906 */
body.info-page {
    min-height: 100vh;
}

.info-main {
    width: 100%;
    padding: 122px 0 72px;
}

.info-shell {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.info-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 56px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 18%, rgba(255,49,49,.24), transparent 32%),
        radial-gradient(circle at 12% 100%, rgba(58,139,255,.16), transparent 36%),
        linear-gradient(135deg, #101725 0%, #090d16 72%);
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.info-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    height: 4px;
    background: linear-gradient(90deg, #ff3131, #ff7a45);
}

.info-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #ff5a5a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.info-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.15;
    font-weight: 900;
}

.info-hero p {
    max-width: 880px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 2;
    font-weight: 600;
}

.info-content {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.info-card,
.info-section,
.info-contact-card,
.info-quote-card {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(17,24,39,.96), rgba(9,13,22,.96));
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.info-section,
.info-card,
.info-quote-card {
    padding: 30px 32px;
}

.info-section h2,
.info-card h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 900;
}

.info-section h2::before,
.info-card h2::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 24px;
    margin-left: 10px;
    border-radius: 999px;
    vertical-align: -4px;
    background: linear-gradient(180deg, #ff3131, #ff7a45);
}

.info-section p,
.info-card p,
.info-quote-card p {
    margin: 0;
    color: #c6ceda;
    font-size: 16px;
    line-height: 2;
}

.info-section p + p,
.info-card p + p {
    margin-top: 14px;
}

.info-two-grid,
.info-values-grid,
.info-offers-grid {
    display: grid;
    gap: 18px;
}

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

.info-values-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.info-offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-mini-card {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
}

.info-mini-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.info-mini-card p {
    color: #aeb8c7;
    font-size: 14px;
    line-height: 1.9;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    position: relative;
    padding-right: 24px;
    color: #c6ceda;
    font-size: 15px;
    line-height: 1.9;
}

.info-list li::before {
    content: "";
    position: absolute;
    top: .85em;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4a4a;
    box-shadow: 0 0 0 5px rgba(255,49,49,.10);
}

.info-quote-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 40px 34px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,49,49,.15), transparent 42%),
        linear-gradient(145deg, rgba(17,24,39,.98), rgba(9,13,22,.98));
}

.info-quote-card strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
}

.info-quote-card span {
    color: #ff5a5a;
}

.info-contact-card {
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.info-contact-copy span {
    display: block;
    margin-bottom: 7px;
    color: #98a3b5;
    font-size: 13px;
    font-weight: 800;
}

.info-contact-copy a {
    color: #fff;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 900;
    direction: ltr;
    unicode-bidi: embed;
}

.info-email-btn {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3131, #ff6a3d);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255,49,49,.22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.info-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255,49,49,.3);
}

.info-contact-note {
    margin-top: 20px;
    color: #9ea9b8;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
}

.info-inline-link {
    color: #ff6565;
    font-weight: 900;
}

.info-policy-meta {
    margin-top: 14px;
    color: #9ca7b7;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .info-main {
        padding-top: 104px;
    }

    .info-hero {
        padding: 34px 26px;
        border-radius: 24px;
    }

    .info-hero p {
        font-size: 15px;
    }

    .info-two-grid,
    .info-values-grid,
    .info-offers-grid {
        grid-template-columns: 1fr;
    }

    .info-section,
    .info-card,
    .info-quote-card {
        padding: 24px 22px;
    }

    .info-contact-card {
        padding: 26px 22px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .info-email-btn {
        width: 100%;
    }
}

html[data-theme="light"] body.info-page .info-hero,
html[data-visual-theme="light"] body.info-page .info-hero {
    background:
        radial-gradient(circle at 88% 18%, rgba(159,29,52,.12), transparent 32%),
        radial-gradient(circle at 12% 100%, rgba(18,61,255,.10), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fc 100%);
    border-color: rgba(71,85,105,.13);
    box-shadow: 0 24px 60px rgba(15,23,42,.10);
}

html[data-theme="light"] body.info-page .info-hero h1,
html[data-theme="light"] body.info-page .info-section h2,
html[data-theme="light"] body.info-page .info-card h2,
html[data-theme="light"] body.info-page .info-mini-card strong,
html[data-theme="light"] body.info-page .info-contact-copy a,
html[data-theme="light"] body.info-page .info-quote-card strong,
html[data-visual-theme="light"] body.info-page .info-hero h1,
html[data-visual-theme="light"] body.info-page .info-section h2,
html[data-visual-theme="light"] body.info-page .info-card h2,
html[data-visual-theme="light"] body.info-page .info-mini-card strong,
html[data-visual-theme="light"] body.info-page .info-contact-copy a,
html[data-visual-theme="light"] body.info-page .info-quote-card strong {
    color: #0b1220;
}

html[data-theme="light"] body.info-page .info-hero p,
html[data-theme="light"] body.info-page .info-section p,
html[data-theme="light"] body.info-page .info-card p,
html[data-theme="light"] body.info-page .info-quote-card p,
html[data-theme="light"] body.info-page .info-list li,
html[data-theme="light"] body.info-page .info-mini-card p,
html[data-visual-theme="light"] body.info-page .info-hero p,
html[data-visual-theme="light"] body.info-page .info-section p,
html[data-visual-theme="light"] body.info-page .info-card p,
html[data-visual-theme="light"] body.info-page .info-quote-card p,
html[data-visual-theme="light"] body.info-page .info-list li,
html[data-visual-theme="light"] body.info-page .info-mini-card p {
    color: #526074;
}

html[data-theme="light"] body.info-page .info-card,
html[data-theme="light"] body.info-page .info-section,
html[data-theme="light"] body.info-page .info-contact-card,
html[data-theme="light"] body.info-page .info-quote-card,
html[data-visual-theme="light"] body.info-page .info-card,
html[data-visual-theme="light"] body.info-page .info-section,
html[data-visual-theme="light"] body.info-page .info-contact-card,
html[data-visual-theme="light"] body.info-page .info-quote-card {
    background: rgba(255,255,255,.9);
    border-color: rgba(71,85,105,.13);
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

html[data-theme="light"] body.info-page .info-mini-card,
html[data-visual-theme="light"] body.info-page .info-mini-card {
    background: #f7f9fd;
    border-color: rgba(71,85,105,.12);
}
