/* ===== Reset & base ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    background: var(--wr-bg);
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--wr-bg);
    color: var(--wr-ivory);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

/* ===== Theme tokens ===== */
:root {
    --wr-bg: #f4f1e4;
    --wr-bg-alt: #eae6d4;
    --wr-charcoal: #ffffff;
    --wr-green: #076b4c;
    --wr-green-deep: #1a4d2e;
    --wr-gold: #7a5f12;
    --wr-gold-glow: #b8901f;
    --wr-ivory: #2a3830;
    --wr-slate: #5a6b62;
    --wr-sage: #d0ccb8;
    --wr-crimson: #c13b4a;
    --wr-btn-fg: #ffffff;
    --wr-space: 8px;
}

html.dark {
    --wr-bg: #0d1210;
    --wr-bg-alt: #131a16;
    --wr-charcoal: #171d1a;
    --wr-green: #1eb889;
    --wr-green-deep: #1a4d2e;
    --wr-gold: #e8b84b;
    --wr-gold-glow: #f4cf72;
    --wr-ivory: #d4cfa8;
    --wr-slate: #8a978f;
    --wr-sage: #2c3a32;
    --wr-crimson: #e14b5a;
    --wr-btn-fg: #06120c;
}

/* ===== Header & Navigation ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--wr-bg);
    border-bottom: 1px solid var(--wr-sage);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-brand {
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--wr-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-brand__text {
    color: inherit;
}

.primary-nav {
    margin-left: auto;
}

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

.nav-link {
    display: inline-block;
    padding: 8px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--wr-ivory);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: var(--wr-gold);
}

.nav-cta {
    margin-left: 8px;
}

.nav-cta-link {
    display: inline-block;
    padding: 8px 18px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wr-btn-fg);
    background: var(--wr-green);
    border: 1px solid var(--wr-green);
    border-radius: 6px;
    text-decoration: none;
    min-height: 40px;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-cta-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.5);
}

/* Theme toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--wr-sage);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--wr-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--wr-gold);
    color: var(--wr-gold);
}

.theme-toggle__icon--sun { display: none; }
.theme-toggle__icon--moon { display: block; }
html.dark .theme-toggle__icon--sun { display: block; }
html.dark .theme-toggle__icon--moon { display: none; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: 1px solid var(--wr-sage);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.mobile-menu-toggle__line {
    width: 100%;
    height: 2px;
    background: var(--wr-ivory);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Footer */
.site-footer {
    background: var(--wr-bg-alt);
    border-top: 1px solid var(--wr-sage);
    padding: 40px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand .site-brand {
    font-size: 20px;
}

.footer-nav {
    width: 100%;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-list a {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--wr-ivory);
    text-decoration: none;
    padding: 10px 12px;
    min-height: 44px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--wr-gold);
}

.footer-legal {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--wr-slate);
    text-align: center;
}

/* Mobile responsive header/nav */
@media (max-width: 767px) {
    .header-inner {
        gap: 8px;
    }

    .site-brand {
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .primary-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        margin-left: 0;
        background: var(--wr-bg);
        border-bottom: 1px solid var(--wr-sage);
        padding: 16px 20px;
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .primary-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 12px;
        text-align: center;
        font-size: 15px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-cta-link {
        display: block;
        text-align: center;
    }

    .theme-toggle {
        margin-left: auto;
    }
}

/* ===== Sections & containers ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 840px;
}

.section {
    padding: 48px 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 80px 0;
    }
}

.section-title {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--wr-ivory);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
    text-align: center;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
}

.section-lead {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
    overflow-wrap: break-word;
}

.section-lead a,
.vip-split__text a {
    color: var(--wr-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-lead a:hover,
.vip-split__text a:hover {
    color: var(--wr-gold);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    min-height: 44px;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn--primary {
    background: var(--wr-green);
    color: var(--wr-btn-fg);
    border: 1px solid var(--wr-green);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.55);
}

.btn--ghost {
    background: transparent;
    color: var(--wr-gold);
    border: 1px solid var(--wr-gold);
}

.btn--ghost:hover {
    background: rgba(232, 184, 75, 0.12);
}

.btn--glow {
    animation: wr-breathe 2.8s ease-in-out infinite;
}

@keyframes wr-breathe {
    0%, 100% { box-shadow: 0 0 12px rgba(232, 184, 75, 0.3); }
    50% { box-shadow: 0 0 26px rgba(232, 184, 75, 0.65); }
}

@media (prefers-reduced-motion: reduce) {
    .btn--glow { animation: none; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--wr-bg);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.hero__arrow-strike {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--wr-gold-glow), transparent);
    transform: rotate(-18deg) translateY(220px);
    box-shadow: 0 0 18px rgba(244, 207, 114, 0.7);
    z-index: 1;
    animation: wr-strike 0.8s ease-out both;
}

@keyframes wr-strike {
    from { transform: rotate(-18deg) translateX(-60%) translateY(220px); opacity: 0; }
    to { transform: rotate(-18deg) translateX(0) translateY(220px); opacity: 1; }
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero__eyebrow {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wr-gold);
    font-size: 13px;
    margin: 0 0 14px;
}

.hero__title {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 20px;
    background: linear-gradient(120deg, var(--wr-gold), var(--wr-gold-glow), var(--wr-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--wr-gold);
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 48px;
    }
}

.hero__lead {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    max-width: 560px;
    margin: 0 0 28px;
}

.hero__lead strong {
    color: var(--wr-green);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.hero__micro {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--wr-slate);
    margin: 0;
}

.hero__model {
    display: flex;
    justify-content: center;
}

.hero__model img {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.35));
}

@media (min-width: 1024px) {
    .hero__model {
        justify-content: flex-end;
        margin-right: -40px;
    }
    .hero__model img {
        max-width: 560px;
    }
}

/* ===== Section backgrounds ===== */
.section--stats { background: var(--wr-bg); }
.section--categories { background: var(--wr-bg-alt); }
.section--vip { background: var(--wr-bg); }
.section--trust { background: var(--wr-bg-alt); }
.section--payments { background: var(--wr-bg); }
.section--faq { background: var(--wr-bg-alt); }

/* ===== VIP split ===== */
.vip-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .vip-split {
        grid-template-columns: 1fr 1fr;
    }
}

.vip-split__text {
    min-width: 0;
}

.vip-split__text .section-title {
    text-align: left;
}

.vip-split__text p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0 0 20px;
}

.vip-split__stats {
    min-width: 0;
}

/* ===== Trust strip ===== */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    padding: 20px;
    border: 1px solid var(--wr-sage);
    border-radius: 12px;
    background: var(--wr-charcoal);
    text-align: center;
}

.trust-badge img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.trust-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--wr-slate);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== Payment strip ===== */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.payment-logo img {
    width: 96px;
    height: auto;
    filter: grayscale(1) opacity(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-logo img:hover {
    filter: grayscale(0) opacity(1) drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
    transform: translateY(-3px);
}

/* ===== Component: stat_block ===== */
.stat-block-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 1024px) {
    .stat-block-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-block {
    text-align: center;
    min-width: 0;
}

.stat-block__number {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    background: linear-gradient(120deg, var(--wr-gold), var(--wr-gold-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--wr-gold);
}

@media (min-width: 1024px) {
    .stat-block__number {
        font-size: 48px;
    }
}

.stat-block__label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--wr-slate);
    margin-top: 8px;
}

.stat-block__source {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: var(--wr-slate);
    margin-top: 6px;
}

/* ===== Component: info_card_grid ===== */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .info-card-grid {
        grid-template-columns: repeat(var(--grid-columns, 3), 1fr);
    }
}

.info-card {
    background: var(--wr-charcoal);
    border: 1px solid var(--wr-sage);
    border-radius: 12px;
    overflow: hidden;
    min-width: 0;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.info-card:hover {
    transform: scale(1.02);
    border-color: var(--wr-gold);
    box-shadow: 0 0 22px rgba(232, 184, 75, 0.3);
}

.info-card__image {
    height: 160px;
    overflow: hidden;
}

.info-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card__body {
    padding: 16px;
}

@media (min-width: 1024px) {
    .info-card__body {
        padding: 24px;
    }
}

.info-card__title {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--wr-ivory);
    margin: 0 0 12px;
}

@media (min-width: 1024px) {
    .info-card__title {
        font-size: 22px;
    }
}

.info-card__description {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0;
}

.info-card__link {
    display: inline-block;
    margin-top: 14px;
    color: var(--wr-green);
    font-family: 'Outfit', sans-serif;
    text-decoration: underline;
}

/* ===== Component: faq_accordion ===== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--wr-charcoal);
    border: 1px solid var(--wr-sage);
    border-radius: 10px;
    padding: 0 24px;
    min-width: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
    border-left: 3px solid var(--wr-gold);
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.18);
}

.faq-item__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    padding: 24px 0;
    min-height: 44px;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--wr-ivory);
}

@media (min-width: 1024px) {
    .faq-item__summary {
        font-size: 20px;
    }
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__chevron {
    color: var(--wr-gold);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding-bottom: 24px;
}

.faq-item__answer p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0;
}

/* ===== Component: cta_banner ===== */
.cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    padding: 48px 20px;
    background: var(--wr-bg);
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 64px 20px;
    }
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(26, 77, 46, 0.5), transparent 70%);
    opacity: 0.9;
    z-index: 0;
}

.cta-banner__arrow-strike {
    position: absolute;
    top: 40%;
    left: -20%;
    width: 140%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wr-gold-glow), transparent);
    transform: rotate(-16deg);
    box-shadow: 0 0 14px rgba(244, 207, 114, 0.6);
    z-index: 1;
    animation: wr-strike 0.8s ease-out both;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner__heading {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 16px;
    background: linear-gradient(120deg, var(--wr-gold), var(--wr-gold-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--wr-gold);
}

@media (min-width: 1024px) {
    .cta-banner__heading {
        font-size: 36px;
    }
}

.cta-banner__subheading {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0 0 28px;
}

.cta-banner__micro {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--wr-slate);
    margin: 18px 0 0;
}

/* ===== Bonus tips ===== */
.bonus-tips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus-tip {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--wr-sage);
    border-radius: 12px;
    background: var(--wr-charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bonus-tip:hover {
    border-color: var(--wr-gold);
    box-shadow: 0 0 18px rgba(232, 184, 75, 0.2);
}

.bonus-tip__number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--wr-gold), var(--wr-gold-glow));
    color: var(--wr-btn-fg);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.bonus-tip__body {
    min-width: 0;
}

.bonus-tip__title {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--wr-ivory);
    margin: 0 0 8px;
}

@media (min-width: 1024px) {
    .bonus-tip__title {
        font-size: 20px;
    }
}

.bonus-tip__text {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0;
}

/* ===== Demo & Fairness two-column ===== */
.demo-fairness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .demo-fairness-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.demo-fairness__col {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--wr-sage);
    border-radius: 12px;
    background: var(--wr-charcoal);
}

@media (min-width: 1024px) {
    .demo-fairness__col {
        padding: 36px;
    }
}

.demo-fairness__heading {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--wr-gold);
    margin: 0 0 16px;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .demo-fairness__heading {
        font-size: 22px;
    }
}

.demo-fairness__col p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0 0 20px;
}

.demo-fairness__col p:last-child {
    margin-bottom: 0;
}

/* ===== Payment limits table ===== */
.pay-limits-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--wr-sage);
    border-radius: 12px;
    background: var(--wr-charcoal);
}

.pay-limits-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.pay-limits-table th,
.pay-limits-table td {
    padding: 14px 20px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--wr-ivory);
    border-bottom: 1px solid var(--wr-sage);
}

.pay-limits-table th {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
    color: var(--wr-gold);
    background: var(--wr-bg-alt);
}

.pay-limits-table tbody tr:last-child td {
    border-bottom: none;
}

.pay-limits-table tbody tr:hover {
    background: var(--wr-bg-alt);
}

@media (min-width: 1024px) {
    .pay-limits-table th,
    .pay-limits-table td {
        padding: 16px 24px;
        font-size: 17px;
    }
}

/* ===== Security split ===== */
.security-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .security-split {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 48px;
    }
}

.security-split__visual {
    display: flex;
    justify-content: center;
}

.security-split__visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 0 24px rgba(16, 185, 129, 0.25));
}

.security-split__text {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--wr-sage);
    border-left: 3px solid var(--wr-green);
    border-radius: 12px;
    background: var(--wr-charcoal);
}

@media (min-width: 1024px) {
    .security-split__text {
        padding: 36px;
    }
}

.security-split__text p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0 0 20px;
}

.security-split__text p:last-child {
    margin-bottom: 0;
}

.security-split__text strong {
    color: var(--wr-gold);
}

/* ===== Scroll animation ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ===== FAQ quick answers grid ===== */
.faq-quick-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .faq-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .faq-quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.faq-quick-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--wr-sage);
    border-radius: 12px;
    background: var(--wr-charcoal);
    min-width: 0;
    transition: transform 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
}

.faq-quick-item:hover {
    transform: scale(1.02);
    border-color: var(--wr-gold);
    box-shadow: 0 0 22px rgba(232, 184, 75, 0.25);
}

.faq-quick-item__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--wr-gold), var(--wr-gold-glow));
    color: var(--wr-btn-fg);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.faq-quick-item__title {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--wr-ivory);
    margin: 0;
}

@media (min-width: 1024px) {
    .faq-quick-item__title {
        font-size: 20px;
    }
}

.faq-quick-item__text {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    margin: 0;
}

/* ===== FAQ hero compact ===== */
.faq-hero {
    min-height: 360px;
}

.faq-hero .hero__bg img {
    opacity: 0.15;
}

/* ===== Sitemap page ===== */
.sitemap-page {
    background: var(--wr-bg);
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .sitemap-page {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.sitemap-page__title {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.15;
    text-align: center;
    margin: 0 0 20px;
    background: linear-gradient(120deg, var(--wr-gold), var(--wr-gold-glow), var(--wr-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--wr-gold);
}

@media (min-width: 1024px) {
    .sitemap-page__title {
        font-size: 36px;
    }
}

.sitemap-page__lead {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-ivory);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.sitemap-page__subtitle {
    text-align: left;
    margin-bottom: 28px;
}

.sitemap-list {
    list-style: none;
    counter-reset: sitemap-counter;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sitemap-list__item {
    counter-increment: sitemap-counter;
    padding: 24px;
    border: 1px solid var(--wr-sage);
    border-radius: 12px;
    background: var(--wr-charcoal);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-list__item::before {
    content: counter(sitemap-counter);
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--wr-gold), var(--wr-gold-glow));
    color: var(--wr-btn-fg);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.sitemap-list__item:hover {
    border-color: var(--wr-gold);
    box-shadow: 0 0 18px rgba(232, 184, 75, 0.2);
}

.sitemap-list__link {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--wr-gold);
    text-decoration: none;
    margin-bottom: 12px;
    padding-right: 48px;
    transition: color 0.2s ease;
}

.sitemap-list__link:hover {
    color: var(--wr-gold-glow);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 1024px) {
    .sitemap-list__link {
        font-size: 20px;
    }
}

.sitemap-list__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--wr-slate);
    margin: 0;
}

/* ===== FAQ mobile visual ===== */
.faq-mobile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-mobile-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 0 24px rgba(16, 185, 129, 0.25));
}
