/* ═══════════════════════════════════════
   PACHINKO.COM.MX — Design System 2026
   Developer: deportech-mexico.com.mx
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Noto+Sans+JP:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --red: #E8003D;
    --red-dark: #A30029;
    --red-glow: rgba(232, 0, 61, 0.35);
    --gold: #FFD700;
    --gold-light: #FFF176;
    --neon-pink: #FF0080;
    --neon-cyan: #00F5FF;
    --dark: #050508;
    --dark-mid: #0D0D14;
    --dark-card: #111120;
    --dark-card2: #16162A;
    --border: rgba(232, 0, 61, 0.18);
    --border-gold: rgba(255, 215, 0, 0.22);
    --text: #F0EEF8;
    --text-muted: #9B96B8;
    --white: #FFFFFF;

    /* Typography */
    --font-head: 'Orbitron', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --radius: 12px;
    --radius-lg: 20px;
    --max-w: 1200px;
    --transition: 0.3s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-mid);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    background: var(--red);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* ══════════════════ HEADER ══════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--white);
    flex-shrink: 0;
}

.logo-kanji {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 18px var(--red-glow);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.06em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.main-nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.main-nav a.active {
    color: var(--red);
}

.header-cta {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    box-shadow: 0 0 16px var(--red-glow);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px var(--red-glow);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--red);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ══════════════════ HERO ══════════════════ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232, 0, 61, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 245, 255, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}

/* Pachinko balls animation */
.balls-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ball {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-60px) rotate(0deg);
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(232, 0, 61, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 0, 61, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 0, 61, 0.12);
    border: 1px solid rgba(232, 0, 61, 0.3);
    color: var(--red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '●';
    font-size: 0.6rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-kana {
    font-family: var(--font-jp);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    text-shadow: 0 0 40px rgba(232, 0, 61, 0.4);
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--red);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hstat {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
}

.hstat-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.hstat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 24px var(--red-glow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--red-glow);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--red);
}

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pachinko-machine {
    width: 360px;
    height: 480px;
    background: linear-gradient(160deg, var(--dark-card2) 0%, var(--dark-card) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.12), inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.machine-screen {
    width: 90%;
    margin: 24px auto 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.machine-screen-inner {
    font-family: var(--font-head);
    font-size: 3rem;
    display: flex;
    gap: 12px;
}

.reel {
    text-shadow: 0 0 20px var(--red);
    animation: spinReel 3s ease-in-out infinite;
}

.reel:nth-child(2) {
    animation-delay: 0.3s;
}

.reel:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes spinReel {

    0%,
    80%,
    100% {
        opacity: 1
    }

    40% {
        opacity: 0.3
    }
}

.machine-lights {
    display: flex;
    justify-content: space-around;
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.mlight {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: blink 0.8s ease-in-out infinite;
}

.mlight:nth-child(odd) {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

.mlight:nth-child(even) {
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation-delay: 0.4s;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.machine-pins {
    padding: 8px 20px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.pin {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 4px var(--gold);
}

.machine-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

/* ══════════════════ SECTIONS ══════════════════ */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-dark {
    background: var(--dark-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--red);
}

.section-desc {
    color: var(--text-muted);
    max-width: 640px;
    font-size: 1.05rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    border-radius: 2px;
    margin: 16px 0 32px;
}

/* ── CARDS ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 0, 61, 0.4);
    box-shadow: 0 12px 40px rgba(232, 0, 61, 0.1);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 0, 61, 0.12);
    border: 1px solid rgba(232, 0, 61, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── FEATURE ROW ── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.feature-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '⬥';
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── TABLE ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 12px 20px;
    text-align: left;
}

thead {
    background: rgba(232, 0, 61, 0.08);
}

th {
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--red);
    text-transform: uppercase;
    text-align: left;
}

td {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-red {
    color: var(--red);
    font-weight: 700;
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red), transparent);
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(232, 0, 61, 0.12);
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.timeline-body h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── BADGES ── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-red {
    background: rgba(232, 0, 61, 0.15);
    color: var(--red);
    border: 1px solid rgba(232, 0, 61, 0.3);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-green {
    background: rgba(0, 200, 100, 0.12);
    color: #00C864;
    border: 1px solid rgba(0, 200, 100, 0.3);
}

/* ── FACTS STRIP ── */
.facts-strip {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.facts-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.fact-item {
    text-align: center;
    padding: 16px 8px;
}

.fact-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.fact-val {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.fact-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    gap: 16px;
    transition: background var(--transition);
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-q span {
    color: var(--red);
    font-size: 1.2rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-q.open span {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-a.open {
    display: block;
}

/* ── SEO CONTENT ── */
.seo-content {
    padding: 60px 24px;
    background: var(--dark-card);
    border-top: 1px solid var(--border);
}

.seo-article {
    max-width: var(--max-w);
    margin: 0 auto;
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.seo-article h3 {
    font-size: 1rem;
    color: var(--red);
    margin: 24px 0 12px;
    font-weight: 700;
}

.seo-article p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.text-link {
    color: var(--red);
    border-bottom: 1px dashed rgba(232, 0, 61, 0.4);
    transition: border-color var(--transition);
}

.text-link:hover {
    border-color: var(--red);
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.seo-link-card {
    background: var(--dark-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    transition: border-color var(--transition), transform var(--transition);
}

.seo-link-card:hover {
    border-color: var(--red);
    transform: translateX(4px);
}

.seo-link-card span {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background: var(--dark-card);
    border-top: 2px solid var(--border);
    padding: 60px 24px 32px;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.65;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--red);
}

.developer-link {
    color: var(--red) !important;
    font-weight: 600;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    padding: 14px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    list-style: none;
}

.breadcrumb li {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb li+li::before {
    content: '›';
    margin-right: 6px;
    color: var(--border);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb [aria-current] {
    color: var(--red);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    padding: 64px 24px 48px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 0, 61, 0.1) 0%, transparent 70%),
        var(--dark);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero h1 span {
    color: var(--red);
}

.page-hero p {
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fadeup {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeup 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.25s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.55s;
}

.delay-5 {
    animation-delay: 0.7s;
}

@keyframes fadeup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .seo-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .burger-btn {
        display: flex;
        margin-left: auto;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid-2 {
        grid-template-columns: 1fr;
    }

    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

    .facts-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        gap: 12px;
    }

    .seo-links-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 56px 16px;
    }

    .table-wrap {
        font-size: 0.85rem;
    }

    td,
    th {
        padding: 10px 12px;
    }
}