/* LuckyLand Slots US — style.css */
/* Brand: Deep Purple #3D1270 | Gold #FFD700 | Green #3FC752 | Dark #150929 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0E0620;
    color: #E8DCF5;
    line-height: 1.7;
    overflow-x: clip;
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

table {
    border-collapse: collapse;
    width: 100%
}

/* ── CSS Variables ── */
:root {
    --purple-dark: #150929;
    --purple: #3D1270;
    --purple-mid: #5B2190;
    --purple-light: #7C3DB5;
    --gold: #FFD700;
    --gold-light: #FFE566;
    --gold-dark: #C9A800;
    --green: #3FC752;
    --green-dark: #2A9E3A;
    --white: #FFFFFF;
    --text: #E8DCF5;
    --text-muted: #A98FCC;
    --border: rgba(255, 215, 0, 0.2);
    --glass: rgba(61, 18, 112, 0.4);
    --glow-purple: 0 0 30px rgba(124, 61, 181, 0.4);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all .25s ease;
    --tracker: 'https://adminclick.org/7HKz8C';
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: var(--gold);
    color: var(--purple-dark);
    padding: 6px 12px;
    font-weight: 700;
    z-index: 9999;
    border-radius: 4px;
    font-size: .85rem;
}

.skip-link:focus {
    left: 12px;
    top: 12px
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 6, 32, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 16px;
    min-width: 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.logo-wrap img {
    width: 40px;
    height: 40px;
    border-radius: 8px
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.logo-text .brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.5px
}

.logo-text .tagline {
    font-size: .65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

.nav-menu a {
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--glass);
    color: var(--gold);
}

.btn-cta-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple-dark) !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: 50px !important;
    box-shadow: var(--glow-gold);
    white-space: nowrap;
}

.btn-cta-header:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.5) !important;
}

/* ── Burger button (mobile only) ── */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.mobile-cta-bar {
    display: none;
    background: linear-gradient(90deg, #2a0d50, #3D1270 50%, #2a0d50);
    padding: 10px 16px;
    text-align: center;
    border-top: 2px solid var(--gold);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(255, 215, 0, 0.2);
}

/* ── Responsive Grid Helpers ── */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.grid-compare {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 48px;
    align-items: start;
}

.mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #C9A800);
    color: #150929;
    font-weight: 800;
    font-size: .95rem;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.45);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: glowPulse 2.5s ease infinite;
    letter-spacing: .3px;
}

.mobile-cta-bar a:active {
    transform: scale(0.97);
}

/* ── Burger Button ── */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background: rgba(61, 18, 112, 0.5);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0;
    flex-shrink: 0;
    transition: var(--transition);
}

.burger:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--gold);
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

/* Burger open → X animation */
.burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 50px;
    line-height: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple-dark);
    padding: 14px 32px;
    font-size: 1rem;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    font-size: .95rem;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.12)
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    padding: 13px 28px;
    font-size: .95rem;
    box-shadow: 0 4px 20px rgba(63, 199, 82, 0.3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(63, 199, 82, 0.45)
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem
}

.btn-sm {
    padding: 8px 20px;
    font-size: .82rem
}

/* ── Container ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 80px 0
}

.section-alt {
    background: rgba(61, 18, 112, 0.15)
}

/* ── Section Headlines ── */
.section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.06);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold)
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7
}

.text-center {
    text-align: center
}

.text-center .section-sub {
    margin: 0 auto
}

/* ── Cards ── */
.card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-purple), 0 12px 40px rgba(0, 0, 0, 0.3)
}

.card-body {
    padding: 24px
}

/* ── Badge ── */
.badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3)
}

.badge-green {
    background: rgba(63, 199, 82, 0.15);
    color: var(--green);
    border: 1px solid rgba(63, 199, 82, 0.3)
}

.badge-purple {
    background: rgba(124, 61, 181, 0.2);
    color: #C390FF;
    border: 1px solid rgba(124, 61, 181, 0.3)
}

/* ── Tables ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.table-wrap table {
    min-width: 0;
    width: 100%;
}

table thead {
    background: rgba(61, 18, 112, 0.6)
}

table th {
    padding: 12px 14px;
    text-align: left;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
    white-space: normal;
}

table td {
    padding: 11px 14px;
    font-size: .88rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    color: var(--text);
}

table tbody tr:hover {
    background: rgba(255, 215, 0, 0.04)
}

table tbody tr:last-child td {
    border-bottom: none
}

table caption {
    caption-side: top;
    text-align: left;
    padding: 14px 18px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(61, 18, 112, 0.75);
    border-radius: var(--radius) var(--radius) 0 0;
}

.check {
    color: var(--green);
    font-size: 1rem
}

.cross {
    color: #F87171
}

.star-val {
    color: var(--gold);
    font-weight: 700
}

/* ── Chart Container ── */
.chart-box {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    background: rgba(21, 9, 41, 0.7);
    border: 1px solid var(--border);
    padding: 20px;
}

.chart-box canvas {
    display: block;
    max-width: 100%
}

.chart-title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-wrap-fixed {
    height: 280px;
    position: relative
}

@media(max-width:768px) {
    .chart-wrap-fixed {
        height: 200px;
    }
}

/* ── Stat Card ── */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stat-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: var(--glow-gold)
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px
}

.stat-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted)
}

/* ── Rating Stars ── */
.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px
}

.rating-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1
}

.rating-label {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

/* ── Pros/Cons ── */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.pros-card {
    background: rgba(63, 199, 82, 0.08);
    border: 1px solid rgba(63, 199, 82, 0.25);
    border-radius: var(--radius);
    padding: 24px
}

.cons-card {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    border-radius: var(--radius);
    padding: 24px
}

.pros-card h3 {
    color: var(--green);
    margin-bottom: 14px;
    font-size: 1rem
}

.cons-card h3 {
    color: #F87171;
    margin-bottom: 14px;
    font-size: 1rem
}

.pros-list,
.cons-list {
    list-style: none
}

.pros-list li,
.cons-list li {
    padding: 6px 0;
    font-size: .9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.pros-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.cons-list li::before {
    content: '✗';
    color: #F87171;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

/* ── Alert box ── */
.alert {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
    font-size: .9rem;
    line-height: 1.6;
}

.alert-gold {
    background: rgba(255, 215, 0, 0.08);
    border-left: 3px solid var(--gold);
    color: var(--text)
}

.alert-green {
    background: rgba(63, 199, 82, 0.08);
    border-left: 3px solid var(--green);
    color: var(--text)
}

.alert-icon {
    font-size: 1.2rem;
    flex-shrink: 0
}

/* ── SEO Content section ── */
.seo-content {
    background: rgba(21, 9, 41, 0.6);
    padding: 80px 0
}

.seo-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    margin: 32px 0 12px;
    line-height: 1.3
}

.seo-article h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin: 22px 0 8px
}

.seo-article p {
    font-size: .96rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px
}

.seo-article a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px
}

.seo-article a:hover {
    color: var(--gold)
}

/* ── Breadcrumb ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: .8rem;
    color: var(--text-muted);
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 8px;
    opacity: .4
}

.breadcrumb li:last-child::after {
    content: ''
}

.breadcrumb a {
    color: var(--text-muted)
}

.breadcrumb a:hover {
    color: var(--gold)
}

.breadcrumb li:last-child {
    color: var(--gold)
}

/* ── Footer ── */
.site-footer {
    background: var(--purple-dark);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

.footer-brand .logo-wrap {
    margin-bottom: 14px
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px
}

.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    font-size: .85rem;
    color: var(--text-muted);
    transition: var(--transition)
}

.footer-col ul li a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-disclaimer {
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 760px
}

.footer-copy {
    font-size: .75rem;
    color: rgba(169, 143, 204, 0.5);
    flex-shrink: 0
}

/* ── Hero ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #150929 0%, #3D1270 50%, #0E0620 100%);
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
    mix-blend-mode: screen;
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--gold)
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--text);
    max-width: 580px;
    margin-bottom: 32px;
    line-height: 1.7
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center
}

/* ── Page header ── */
.page-hero {
    background: linear-gradient(135deg, #150929 0%, #3D1270 60%, #150929 100%);
    padding: 60px 0 48px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px
}

.page-hero p {
    font-size: .97rem;
    color: var(--text-muted);
    max-width: 580px
}

/* ── Auth forms ── */
.auth-wrap {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.auth-card {
    background: rgba(61, 18, 112, 0.3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(16px);
}

.auth-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px
}

.auth-card .subtitle {
    font-size: .87rem;
    color: var(--text-muted);
    margin-bottom: 28px
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(14, 6, 32, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1)
}

.form-group input::placeholder {
    color: var(--text-muted)
}

.form-divider {
    text-align: center;
    font-size: .82rem;
    color: var(--text-muted);
    margin: 20px 0;
    position: relative
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 44%;
    height: 1px;
    background: var(--border)
}

.form-divider::before {
    left: 0
}

.form-divider::after {
    right: 0
}

/* ── Disclaimer bar ── */
.disclaimer-bar {
    background: rgba(63, 199, 82, 0.08);
    border-top: 1px solid rgba(63, 199, 82, 0.2);
    padding: 10px 24px;
    text-align: center;
    font-size: .75rem;
    color: var(--text-muted);
}

.disclaimer-bar strong {
    color: var(--green)
}

/* ── Scroll animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    animation: fadeUp .6s ease both
}

.fade-up-d1 {
    animation-delay: .1s
}

.fade-up-d2 {
    animation-delay: .2s
}

.fade-up-d3 {
    animation-delay: .3s
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: var(--glow-gold)
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6)
    }
}

.glow-pulse {
    animation: glowPulse 2.5s ease infinite
}

/* ── Responsive ── */

/* Large tablets */
@media(max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-graph {
        display: none;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-compare {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Tablet */
@media(max-width: 900px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
}

/* Mobile — main breakpoint */
@media(max-width: 768px) {

    /* Body: space for fixed bottom CTA bar */
    body {
        padding-bottom: 70px;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    /* ── Header: logo + burger only, nav hidden ── */
    .header-inner {
        padding: 10px 16px;
        gap: 12px;
    }

    /* Desktop nav → hidden, becomes dropdown */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 4, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px 16px 24px;
        gap: 4px;
        border-bottom: 2px solid var(--border);
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        list-style: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(61, 18, 112, 0.5);
        color: var(--gold);
    }

    /* CTA inside dropdown nav */
    .nav-menu .btn-cta-header {
        display: block;
        text-align: center;
        margin-top: 8px;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
        color: var(--purple-dark) !important;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4) !important;
    }

    /* Show burger button */
    .burger {
        display: flex;
    }

    /* Show mobile CTA bar (fixed bottom) */
    .mobile-cta-bar {
        display: block;
    }

    /* Hide desktop CTA from header */
    .site-header .btn-cta-header:not(.nav-menu .btn-cta-header) {
        display: none;
    }

    /* Pros/cons stack */
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    /* Grid helpers → single column */
    .grid-3col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-compare {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Table: scrollable on mobile */
    .table-wrap {
        -webkit-overflow-scrolling: touch;
    }

    .table-wrap table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }

    .table-wrap table thead,
    .table-wrap table tbody,
    .table-wrap table tr {
        display: table;
        width: 100%;
        table-layout: auto;
    }

    table th,
    table td {
        white-space: nowrap;
        font-size: .82rem;
        padding: 10px 12px;
    }

    /* Charts: fixed height for mobile */
    .chart-wrap-fixed {
        height: 200px;
    }

    .chart-box {
        padding: 16px;
    }

    /* Hero CTA group */
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-cta-group .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer {
        padding-bottom: 80px;
        /* space above mobile CTA */
    }
}

/* Small mobile */
@media(max-width: 600px) {
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .auth-card {
        padding: 24px 16px;
    }
}

/* Extra small */
@media(max-width: 420px) {
    .logo-text .tagline {
        display: none;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .mobile-cta-bar a {
        font-size: .88rem;
        padding: 12px 16px;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-value {
        font-size: 1.7rem;
    }
}