:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-2: #eaf1f7;
    --ink: #102236;
    --muted: #65758a;
    --line: #dce5ee;
    --blue: #2667ff;
    --blue-dark: #1741a6;
    --green: #16a078;
    --gold: #f5b841;
    --rose: #e15d6f;
    --shadow: 0 24px 70px rgba(16, 34, 54, 0.12);
    --radius: 22px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(140deg, rgba(38, 103, 255, 0.08), transparent 38%),
        radial-gradient(circle at 92% 6%, rgba(22, 160, 120, 0.15), transparent 28%),
        var(--bg);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Poppins, Inter, sans-serif;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 7vw, 5.35rem);
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 4vw, 3.05rem);
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.container {
    width: min(100% - 32px, var(--max));
    margin-inline: auto;
}

.thj61vkirv-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(244, 247, 251, 0.88);
    border-bottom: 1px solid rgba(220, 229, 238, 0.8);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Poppins, Inter, sans-serif;
    font-weight: 800;
}

.logo span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 14px;
}

.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    display: inline-flex;
    padding: 10px 14px;
    color: var(--muted);
    border-radius: 999px;
    font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--ink);
    background: var(--surface);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.nav-toggle i {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    border-radius: 999px;
}

.thj61vkirv-hero {
    padding: 92px 0 76px;
}

.thj61vkirv-hero-alt {
    position: relative;
    overflow: hidden;
}

.thj61vkirv-hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.tag {
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lead {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.lead.small {
    font-size: 1rem;
}

.actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 16px 38px rgba(38, 103, 255, .22);
}

.btn.ghost {
    color: var(--ink);
    background: var(--surface);
    border-color: var(--line);
}

.btn.text {
    padding-inline: 8px;
    color: var(--blue-dark);
    background: transparent;
}

.thj61vkirv-hero-card {
    padding: 30px;
    color: #fff;
    background: linear-gradient(150deg, #102236, #1d5261 68%, #16735f);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.card-label {
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .76rem;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
}

.check-list li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--gold);
    font-weight: 900;
}

.section {
    padding: 74px 0;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head p {
    color: var(--muted);
}

.thj61vkirv-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.thj61vkirv-brand-card,
.trust-grid article,
.review-panel,
.article-card,
.thj61vkirv-faq-item,
.legal-card,
.thj61vkirv-contact-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 20px 56px rgba(16, 34, 54, .08);
}

.thj61vkirv-brand-card {
    padding: 26px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.thj61vkirv-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.thj61vkirv-brand-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.thj61vkirv-brand-badge {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 16px;
    font-weight: 900;
}

.rating {
    color: var(--gold);
    font-weight: 900;
}

.rating strong {
    color: var(--ink);
    margin-left: 6px;
}

.offer {
    font-weight: 800;
    font-size: 1.08rem;
}

.thj61vkirv-brand-card ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 22px;
    padding-left: 20px;
    color: var(--muted);
}

.muted-section {
    background: linear-gradient(180deg, rgba(234, 241, 247, .7), rgba(234, 241, 247, 0));
}

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

.trust-grid article {
    padding: 24px;
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: #fff;
    background: var(--rose);
    border-radius: 16px;
    font-weight: 900;
}

.trust-grid p,
.review-panel p,
.article-card p,
.legal-card p,
.thj61vkirv-contact-card p,
.thj61vkirv-faq-answer p {
    color: var(--muted);
}

.editorial-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px;
    align-items: start;
}

.article-list {
    display: grid;
    gap: 14px;
}

.article-link {
    display: block;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    font-weight: 800;
    transition: transform .2s ease;
}

.article-link:hover {
    transform: translateX(4px);
}

.article-link span {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.thj61vkirv-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.thj61vkirv-faq-item {
    overflow: hidden;
}

.thj61vkirv-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.thj61vkirv-faq-question span {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 999px;
    transition: transform .2s ease;
}

.thj61vkirv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.thj61vkirv-faq-answer p {
    margin: 0;
    padding: 0 20px 20px;
}

.thj61vkirv-faq-item.open .thj61vkirv-faq-answer {
    max-height: 240px;
}

.thj61vkirv-faq-item.open .thj61vkirv-faq-question span {
    transform: rotate(45deg);
}

.page-thj61vkirv-hero {
    padding: 72px 0 38px;
}

.page-thj61vkirv-hero .lead {
    max-width: 780px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.legal-card,
.review-panel,
.article-card,
.thj61vkirv-contact-card {
    padding: 26px;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.pill {
    display: inline-flex;
    padding: 8px 12px;
    color: var(--blue-dark);
    background: rgba(38, 103, 255, .1);
    border-radius: 999px;
    font-weight: 800;
    font-size: .88rem;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sitemap-list {
    columns: 2;
    padding-left: 20px;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.thj61vkirv-contact-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.thj61vkirv-contact-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 700;
}

.thj61vkirv-contact-form input,
.thj61vkirv-contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
}

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

.form-note {
    font-size: .92rem;
    color: var(--muted);
}

.thj61vkirv-footer {
    padding: 46px 0 30px;
    color: rgba(255, 255, 255, .82);
    background: #102236;
}

.thj61vkirv-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: start;
}

.thj61vkirv-footer-logo {
    color: #fff;
    margin-bottom: 14px;
}

.thj61vkirv-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.thj61vkirv-footer nav a {
    padding: 9px 12px;
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border-radius: 999px;
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        justify-content: center;
    }

    .thj61vkirv-hero-layout,
    .thj61vkirv-brand-grid,
    .trust-grid,
    .editorial-layout,
    .two-col,
    .thj61vkirv-footer-grid {
        grid-template-columns: 1fr;
    }

    .thj61vkirv-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    .thj61vkirv-hero,
    .section {
        padding-block: 54px;
    }

    .actions .btn,
    .card-actions .btn {
        width: 100%;
    }

    .sitemap-list {
        columns: 1;
    }
}