/* Custom CSS Variables Configuration Matrix - Cyber Neon / Desert Hybrid Theme */
:root {
    --bg-main: #0a0b10;
    --bg-alt: #11131c;
    --bg-cards: #171a26;
    --neon-cyan: #00f0ff;
    --neon-amber: #ff9f00;
    --neon-purple: #bd00ff;
    --text-primary: #f0f2f5;
    --text-muted: #9ba3b2;
    --border-color: rgba(0, 240, 255, 0.15);
    --border-glow: 0 0 15px rgba(0, 240, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Optimization Normalization Layer */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Background Cyber Grid Infrastructure Styling */
.cyber-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

/* Global Reusable Layout Components & Mixins */
.section-padding {
    padding: 100px 0;
}
.section-padding-top {
    padding-top: 80px;
}
.alt-bg {
    background-color: var(--bg-alt);
    position: relative;
}
.section-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.layout-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 12fr);
    gap: 48px;
    align-items: center;
}
.text-center {
    text-align: center;
}
.max-width-para {
    max-width: 800px;
    margin: 0 auto 24px auto;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Typography Hierarchy Styling Rules */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
}
h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 30%, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 40px;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}
.alt-bg h2::after {
    left: 0;
    transform: none;
}
h3 {
    font-size: 1.5rem;
    color: #fff;
    border-left: 3px solid var(--neon-amber);
    padding-left: 12px;
}
h4 {
    font-size: 1.25rem;
    color: #fff;
}
p {
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
strong {
    color: #fff;
    font-weight: 600;
}

/* Premium Header and Navigation Mechanics */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}
.header-container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-logo-svg {
    height: 50px;
    width: auto;
    display: block;
}
.main-navigation {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}
.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}
.nav-item:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

/* Specialized High-Performance Interactive Buttons */
.cta-button, .primary-cyber-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    letter-spacing: 1px;
}
.cta-button {
    background: linear-gradient(135deg, var(--neon-cyan), #00a8ff);
    color: var(--bg-main);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
}
.primary-cyber-btn {
    background: linear-gradient(135deg, var(--neon-amber), #ff6200);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 159, 0, 0.3);
}
.primary-cyber-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 159, 0, 0.5);
}
.secondary-cyber-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}
.secondary-cyber-btn:hover {
    background: rgba(0, 240, 255, 0.08);
    box-shadow: var(--border-glow);
}

/* Section Header Copy blocks */
.section-heading {
    max-width: 900px;
    margin: 0 auto 60px auto;
}
.section-subtitle {
    font-size: 1.15rem;
    margin-top: 15px;
}

/* Hero Section Structural Grid Blueprint */
.hero-section {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
}
.hero-glow-layer {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189,0,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-layout-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 5.5fr 6.5fr;
    gap: 40px;
    align-items: center;
}
.cyber-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    border-radius: 20px;
}
.hero-lead-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}
.hero-subtext {
    font-size: 1rem;
    margin-bottom: 35px;
}
.hero-button-group {
    display: flex;
    gap: 20px;
}

/* High-End Visual Image Framing & HUD Overlays */
.image-frame-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--bg-cards);
    padding: 12px;
    border-radius: 8px;
    box-shadow: var(--border-glow);
}
.image-frame-wrapper-secondary {
    position: relative;
    border: 1px solid rgba(255, 159, 0, 0.2);
    background: var(--bg-cards);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 159, 0, 0.05);
}
.premium-display-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    filter: grayscale(10%) contrast(105%);
}
.frame-hud-element {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--neon-cyan);
    border-right: 3px solid var(--neon-cyan);
    pointer-events: none;
}
.hud-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-amber), transparent);
    animation: scannerCycle 4s linear infinite;
}
.premium-caption-tag {
    display: block;
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    width: 100%;
}

/* Premium Technical Data Tables Grid */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-cards);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cyber-premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1.05rem;
}
.cyber-premium-table th {
    background: rgba(0, 240, 255, 0.06);
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 20px 24px;
    border-bottom: 2px solid var(--neon-cyan);
}
.cyber-premium-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text-muted);
    line-height: 1.6;
}
.cyber-premium-table tr:hover td {
    background: rgba(255,255,255,0.01);
    color: #fff;
}
.highlight-cyan {
    color: var(--neon-cyan) !important;
    font-weight: 600;
}
.highlight-amber {
    color: var(--neon-amber) !important;
    font-weight: 600;
}
.rating-pill {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

/* Stepper Component Architecture Map */
.stepper-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.step-card {
    background: var(--bg-cards);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 30px;
    border-radius: 6px;
    position: relative;
    transition: var(--transition-smooth);
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-cyan);
    box-shadow: var(--border-glow);
}
.step-icon-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.1);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}
.step-card:hover .step-icon-num {
    color: var(--neon-cyan);
}

/* Warnings and Callouts */
.critical-warning-box {
    background: rgba(255, 159, 0, 0.03);
    border-left: 4px solid var(--neon-amber);
    padding: 24px;
    border-radius: 0 8px 8px 0;
    margin-top: 40px;
}
.critical-warning-box p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
}

/* Lists and Blocks Matrix Grid */
.list-card-block {
    background: var(--bg-cards);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
}
.list-card-block h3 {
    margin-bottom: 30px;
}
.styled-glow-ol, .styled-glow-ul {
    list-style: none;
}
.styled-glow-ol li, .styled-glow-ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}
.styled-glow-ol {
    vertical-align: top;
}
.styled-glow-ol li::before {
    content: counter(step-counter) "";
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
}
.styled-glow-ol {
    counter-reset: step-counter;
}
.styled-glow-ul li::before {
    content: '▪';
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--neon-amber);
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--neon-amber);
}

/* Unified Game Library Feature Cards */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.catalog-item-card {
    background: var(--bg-cards);
    border-radius: 8px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.catalog-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.card-neon-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}
.tint-orange { background: var(--neon-amber); }
.tint-cyan { background: var(--neon-cyan); }
.tint-purple { background: var(--neon-purple); }

.catalog-item-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Native HTML5 Metric Counter Graph */
.tech-speed-meter {
    background: rgba(0,0,0,0.4);
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    height: 45px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.meter-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0.15;
}
.meter-label {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.italic-subtext {
    font-style: italic;
}

/* Financial Flow Elements */
.processing-flows-grid .flow-card {
    background: var(--bg-cards);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
}
.flow-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.deposit-tag {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}
.withdraw-tag {
    background: rgba(255, 159, 0, 0.1);
    color: var(--neon-amber);
    border: 1px solid var(--neon-amber);
}
.processing-flows-grid h3 {
    margin-bottom: 35px;
    max-width: 70%;
}
.custom-step-list {
    list-style: none;
    counter-reset: flow-counter;
}
.custom-step-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}
.custom-step-list li::before {
    content: counter(flow-counter, decimal-leading-zero);
    counter-increment: flow-counter;
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

/* Strategic Pros & Cons Matrices */
.analysis-matrix-grid .matrix-box {
    background: var(--bg-cards);
    border-radius: 8px;
    overflow: hidden;
}
.pros-border { border: 1px solid rgba(0, 240, 255, 0.2); }
.cons-border { border: 1px solid rgba(255, 60, 0, 0.2); }

.matrix-header {
    padding: 22px 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.pros-title { background: rgba(0, 240, 255, 0.05); color: var(--neon-cyan); border-bottom: 1px solid rgba(0, 240, 255, 0.1); }
.cons-title { background: rgba(255, 60, 0, 0.05); color: #ff3c00; border-bottom: 1px solid rgba(255, 60, 0, 0.1); }

.matrix-ul {
    list-style: none;
    padding: 30px;
}
.matrix-ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}
.matrix-ul li:last-child { margin-bottom: 0; }

.list-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--neon-cyan);
    font-weight: 900;
}
.list-cons li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff3c00;
}

/* Profile Demographics Audience Split Blocks */
.audience-block {
    background: var(--bg-cards);
    padding: 45px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
}
.audience-block h3 {
    margin-bottom: 30px;
}
.audience-bullet-list {
    list-style: none;
}
.audience-bullet-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}
.target-yes li::before { content: '•'; position: absolute; left: 2px; top: 0; color: var(--neon-cyan); font-size: 1.4rem; }
.target-no li::before { content: '•'; position: absolute; left: 2px; top: 0; color: var(--neon-amber); font-size: 1.4rem; }

/* Responsible Gaming Core Module Styles */
.shield-icon-container {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(0,240,255,0.3));
}
.responsible-parameters-alert {
    max-width: 950px;
    margin: 35px auto 0 auto;
    background: #0a0b10;
    border: 1px dashed rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 6px;
}
.responsible-parameters-alert p {
    margin-bottom: 0;
    color: var(--text-primary);
}

/* Strategic Verdict & Closing Section */
.final-verdict-paragraph {
    font-size: 1.2rem;
    color: #fff;
}
.accent-action-call {
    color: var(--neon-cyan);
    font-weight: 500;
}

/* Production-Grade Structural Accordion System Architecture */
.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-accordion-item {
    background: var(--bg-cards);
    border: 1px solid rgba(255,255,255,0.03);
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-accordion-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
}
.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 30px;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.accordion-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}
.faq-accordion-item.active .accordion-arrow {
    transform: rotate(-135deg);
}
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: rgba(0,0,0,0.15);
}
.panel-content-inner {
    padding: 0 30px 24px 30px;
}
.panel-content-inner p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* Footer Section Styling Architecture */
.global-footer {
    background: #050608;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 0 0;
}
.footer-flex-wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
    align-items: flex-start;
}
.footer-identity {
    max-width: 450px;
}
.footer-logo-svg {
    height: 42px;
    width: auto;
    margin-bottom: 20px;
}
.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 0;
}
.footer-compliance-notice {
    max-width: 500px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.age-restriction-stamp {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff3c00;
    border: 3px solid #ff3c00;
    padding: 6px 10px;
    border-radius: 6px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.footer-compliance-notice p {
    font-size: 0.9rem;
    margin-bottom: 0;
}
.footer-copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 25px 0;
    background: #030405;
}
.copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright-bar p {
    font-size: 0.85rem;
    margin-bottom: 0;
}
.footer-utility-links {
    display: flex;
    gap: 24px;
}
.footer-utility-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}
.footer-utility-links a:hover {
    color: var(--neon-cyan);
}

/* Animations Core Stylesheet */
@keyframes keysRevealUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scannerCycle {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}
.reveal-element {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1), transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-element.view-visible {
    opacity: 1;
    transform: translateY(0);
}
.floating-animation {
    animation: techFloat 6s ease-in-out infinite;
}
@keyframes techFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Comprehensive Multi-Breakpoint Layout Matrix Support */
@media (max-width: 1200px) {
    .section-container { max-width: 960px; }
    .hero-layout-wrapper { grid-template-columns: 12fr; gap: 60px; text-align: center; }
    .hero-button-group { justify-content: center; }
    .hero-section { padding-top: 140px; }
    .alt-bg h2::after { left: 50%; transform: translateX(-50%); }
    .layout-grid-2 { grid-template-columns: 12fr; gap: 40px; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-flex-wrap { flex-direction: column; gap: 30px; }
}

@media (max-width: 992px) {
    .main-navigation { display: none; } /* Adaptive Clean Mobile Interface */
    .section-padding { padding: 70px 0; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .catalog-grid { grid-template-columns: 12fr; }
    .copyright-flex { flex-direction: column; gap: 15px; text-align: center; }
    .custom-step-list li { padding-left: 35px; }
    .faq-trigger { padding: 20px; }
    .panel-content-inner { padding: 0 20px 20px 20px; }
}

@media (max-width: 480px) {
    .hero-button-group { flex-direction: column; width: 100%; }
    .hero-button-group a { width: 100%; text-align: center; }
    .step-card, .list-card-block, .flow-card, .matrix-ul, .audience-block { padding: 24px; }
    .global-header { height: 80px; }
    .hero-section { padding-top: 110px; }
}