:root {
    --clr-nav: #08093a;
    --clr-nav-dark: #050627;
    --clr-bg: #263b8c;
    --clr-bg-dark: #1e2f72;
    --clr-btn-yellow: #e7e822;
    --clr-btn-yellow-hover: #d4d510;
    --clr-btn-red: #dd0701;
    --clr-btn-red-hover: #b80501;
    --clr-text: #ffffff;
    --clr-text-muted: #b8c4e8;
    --clr-text-dark: #0a0b2e;
    --clr-border: rgba(231,232,34,0.25);
    --clr-block-bg: rgba(8,9,58,0.55);
    --clr-block-bg2: rgba(5,6,40,0.75);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 4px 32px rgba(8,9,58,0.55);
    --transition: 0.22s ease;
    --font-main: Verdana, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 15px;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: var(--clr-btn-yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    line-height: 1.25;
    font-weight: 700;
    color: var(--clr-text);
}

h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

.xq8a2f { display: none !important; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.container--full { width: 100%; padding: 0; }

.box { width: 100%; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    padding: 0.6em 1.4em;
    letter-spacing: 0.03em;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn--yellow {
    background: var(--clr-btn-yellow);
    color: var(--clr-text-dark);
}
.btn--yellow:hover { background: var(--clr-btn-yellow-hover); color: var(--clr-text-dark); }

.btn--red {
    background: var(--clr-btn-red);
    color: #fff;
}
.btn--red:hover { background: var(--clr-btn-red-hover); color: #fff; }

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-btn-yellow);
    color: var(--clr-btn-yellow);
}
.btn--outline:hover { background: var(--clr-btn-yellow); color: var(--clr-text-dark); }

.btn--sm { font-size: 0.82rem; padding: 0.45em 1em; }
.btn--lg { font-size: 1.05rem; padding: 0.75em 2em; }
.btn--xl { font-size: 1.15rem; padding: 0.9em 2.4em; }

.btn--glow-yellow {
    box-shadow: 0 0 14px rgba(231,232,34,0.5);
    animation: glowPulse 2s infinite;
}

.btn--glow-red {
    box-shadow: 0 0 14px rgba(221,7,1,0.5);
    animation: glowPulseRed 2s infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 14px rgba(231,232,34,0.5); }
    50% { box-shadow: 0 0 28px rgba(231,232,34,0.85); }
}

@keyframes glowPulseRed {
    0%, 100% { box-shadow: 0 0 14px rgba(221,7,1,0.5); }
    50% { box-shadow: 0 0 28px rgba(221,7,1,0.85); }
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--clr-btn-yellow);
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

.bk9p1r { height: 1px; background: var(--clr-border); margin: 0; }

.site-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 18px rgba(8,9,58,0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 66px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo-text svg { width: 28px; height: 28px; fill: var(--clr-btn-yellow); }

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.header-nav a {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition), background var(--transition);
}

.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(8,9,58,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 24px 40px;
}

.mobile-nav-overlay.active { display: flex; }

.mobile-nav-overlay a {
    color: var(--clr-text);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background var(--transition);
}

.mobile-nav-overlay a:hover { background: rgba(231,232,34,0.15); color: var(--clr-btn-yellow); }
.mobile-nav-overlay a svg { width: 20px; height: 20px; }

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-nav-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/aviamasters-casino-hero.png');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,9,58,0.92) 0%, rgba(8,9,58,0.6) 50%, rgba(8,9,58,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(231,232,34,0.15);
    border: 1px solid var(--clr-btn-yellow);
    color: var(--clr-btn-yellow);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--clr-btn-yellow); }

.hero-intro {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 22px;
    line-height: 1.65;
}

.hero-spoiler-toggle {
    background: none;
    border: none;
    color: var(--clr-btn-yellow);
    cursor: pointer;
    font-size: 0.88rem;
    font-family: var(--font-main);
    margin-bottom: 8px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-spoiler-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.hero-spoiler-toggle.open svg { transform: rotate(180deg); }

.hero-spoiler-content {
    display: none;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 18px;
    background: rgba(8,9,58,0.5);
    border-left: 3px solid var(--clr-btn-yellow);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.7;
}

.hero-spoiler-content.open { display: block; animation: fadeDown 0.3s ease; }

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-gap { padding: 52px 0; }
.section-gap--sm { padding: 32px 0; }

.card-block {
    background: var(--clr-block-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    margin-bottom: 28px;
}

.card-block:last-child { margin-bottom: 0; }

.demo-wrap {
    background: var(--clr-block-bg2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 24px;
    background: rgba(8,9,58,0.7);
    border-bottom: 1px solid var(--clr-border);
}

.demo-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.demo-header-title svg { width: 22px; height: 22px; fill: var(--clr-btn-yellow); }

.demo-btns { display: flex; gap: 8px; flex-wrap: wrap; }

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #040516;
}

.demo-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-iframe-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #040516 0%, #0a0b3a 100%);
    cursor: pointer;
}

.demo-iframe-placeholder svg { width: 64px; height: 64px; fill: var(--clr-btn-yellow); opacity: 0.8; }
.demo-iframe-placeholder p { color: var(--clr-text-muted); font-size: 0.95rem; }

.demo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 24px;
    background: rgba(8,9,58,0.7);
    border-top: 1px solid var(--clr-border);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

.info-table {
    width: 100%;
    min-width: 480px;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-table th, .info-table td {
    text-align: left;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(231,232,34,0.12);
    vertical-align: middle;
}

.info-table th {
    background: rgba(8,9,58,0.8);
    color: var(--clr-btn-yellow);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 42%;
}

.info-table td {
    background: rgba(8,9,58,0.4);
    color: var(--clr-text);
    font-size: 0.92rem;
}

.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

.info-table tr:nth-child(even) th { background: rgba(8,9,58,0.9); }
.info-table tr:nth-child(even) td { background: rgba(8,9,58,0.55); }

.info-table td .badge-val {
    display: inline-block;
    background: rgba(231,232,34,0.15);
    color: var(--clr-btn-yellow);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.strategies-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.strategy-card {
    flex: 1 1 280px;
    background: var(--clr-block-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(8,9,58,0.7);
}

.strategy-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.strategy-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.strategy-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    display: flex;
    align-items: center;
    gap: 8px;
}

.strategy-card-title svg { width: 18px; height: 18px; fill: var(--clr-btn-yellow); flex-shrink: 0; }

.strategy-card-desc {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

.content-block {
    background: var(--clr-block-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.content-block h2 { margin-bottom: 1rem; }
.content-block h3 { margin: 1.4rem 0 0.7rem; color: var(--clr-btn-yellow); }
.content-block p { margin-bottom: 0.9rem; color: var(--clr-text-muted); line-height: 1.7; }
.content-block ul, .content-block ol { margin: 0.8rem 0 1rem 1.4rem; color: var(--clr-text-muted); }
.content-block li { margin-bottom: 0.45rem; line-height: 1.6; }
.content-block strong { color: var(--clr-text); }
.content-block a { color: var(--clr-btn-yellow); text-decoration: underline; }
.content-block a:hover { color: #fff; }
.content-block blockquote {
    border-left: 3px solid var(--clr-btn-yellow);
    padding: 10px 18px;
    margin: 1rem 0;
    background: rgba(8,9,58,0.5);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}
.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}
.content-block table th {
    background: rgba(8,9,58,0.8);
    color: var(--clr-btn-yellow);
    padding: 9px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
}
.content-block table td {
    padding: 8px 14px;
    border: 1px solid rgba(231,232,34,0.1);
    color: var(--clr-text-muted);
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(8,9,58,0.7);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 24px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-btn-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-text-dark);
}

.author-info { flex: 1; }

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-btn-yellow);
    margin-bottom: 4px;
}

.author-meta {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--clr-btn-yellow);
    text-decoration: underline;
    margin-top: 6px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--clr-block-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(8,9,58,0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    text-align: left;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text);
    transition: color var(--transition);
}

.faq-question:hover { color: var(--clr-btn-yellow); }

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(231,232,34,0.15);
    border: 1.5px solid var(--clr-btn-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.faq-icon svg { width: 12px; height: 12px; fill: var(--clr-btn-yellow); transition: transform var(--transition); }

.faq-item.open .faq-icon { background: var(--clr-btn-yellow); }
.faq-item.open .faq-icon svg { fill: var(--clr-text-dark); transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--clr-btn-yellow); }

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.site-footer {
    background: var(--clr-nav);
    border-top: 2px solid var(--clr-border);
    padding: 40px 0 0;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col { flex: 1 1 200px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
    width: fit-content;
}

.footer-logo img { height: 66px; width: auto; object-fit: contain; }

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-btn-yellow);
    letter-spacing: 0.04em;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-btn-yellow);
    margin-bottom: 12px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav-links a {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.footer-nav-links a:hover { color: var(--clr-btn-yellow); }
.footer-nav-links a svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.footer-badge {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-badge svg { width: 14px; height: 14px; }

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.footer-social-link:hover { background: var(--clr-btn-yellow); color: var(--clr-text-dark); }
.footer-social-link svg { width: 16px; height: 16px; }

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.footer-payment-badge {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
}

.footer-bottom {
    padding: 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(184,196,232,0.65);
    max-width: 540px;
    line-height: 1.55;
}

.rtp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(231,232,34,0.1);
    border: 1px solid var(--clr-btn-yellow);
    color: var(--clr-btn-yellow);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes flyIn {
    from { transform: translateX(-60px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-content { animation: flyIn 0.7s ease forwards; }

.main { flex: 1; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-btn-yellow); }
.breadcrumb span { color: var(--clr-text-muted); }

.breadcrumb-sep { color: rgba(255,255,255,0.3); }

.section-intro {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.65;
}

.provider-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-btn-yellow);
    font-size: 0.88rem;
    text-decoration: underline;
}

.yoast-seo-title { font-size: 1px; position: absolute; opacity: 0; pointer-events: none; }
.elementor-section { display: none; }
.wp-block-group { display: none; }

.js-demo-tab[data-active="true"] {
    background: var(--clr-btn-yellow);
    color: var(--clr-text-dark);
}

@media (max-width: 1024px) {
.header-nav a {padding: 4px 6px;}
.header-inner {gap: 10px;}
}
@media (max-width: 900px) {
    .header-nav { display: none; }
    .burger { display: flex; }

    .hero-content { padding: 40px 0; }

    .strategies-grid { flex-direction: column; }
    .strategy-card { flex: 1 1 100%; }
    .content-block {padding: 26px;}
    .footer-inner { gap: 20px; }
    .footer-col { flex: 1 1 45%; }
}

@media (max-width: 600px) {
    .header-inner { padding: 8px 0; }
    .header-buttons .btn--xl { display: none; }
    .content-block {padding: 20px;}
    .hero { min-height: 420px; }
    .hero-content { padding: 32px 0; }
    .hero-stats { gap: 16px; }

    .card-block { padding: 18px; }
    .content-block { padding: 20px; }

    .demo-header { flex-direction: column; align-items: flex-start; }

    .footer-col { flex: 1 1 100%; }
    .footer-bottom { flex-direction: column; }

    .info-table th { width: 48%; }
    .info-table th, .info-table td { padding: 9px 12px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .header-buttons .btn--outline{ display: none; }
}


@media (max-width: 420px) {
    .hero h1 { font-size: 1.5rem; }
    .btn--xl { font-size: 0.95rem; padding: 0.7em 1.5em; }
    .header-buttons .btn--glow-red {display: none;}
    .demo-iframe-placeholder p {font-size: 0.75rem;}
    .demo-btns {display: none;}
    .demo-iframe-placeholder {gap: 10px;}
    .demo-iframe-placeholder svg {display: none;}
    .content-block {padding: 16px;}
}

.d8x3p { list-style: none; display: none; }
.a4k9m { visibility: hidden; height: 0; overflow: hidden; }
.z1q7w { font-size: 0; line-height: 0; }
