/*
Theme Name: RankPeak NextGen Theme
Theme URI: https://rankpeak.online
Description: A high-performance WordPress Theme redesigned as an interactive Growth Operating System. Features diagnostic consultation wizards, dynamic recommendation engines, and visual performance simulator dashboards. Fully compatible with Elementor Free and Rank Math SEO.
Version: 2.0.0
Author: RankPeak Elite Product Team
Author URI: https://rankpeak.online
Text Domain: rankpeak-nextgen
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, custom-colors, custom-menu, full-width-template, translation-ready, accessibility-ready
*/

/* ==========================================================================
   1. Design System & Variables
   ========================================================================== */
:root {
    /* Color Tokens */
    --bg-dark: #07090e;
    --bg-surface: #0e121d;
    --bg-surface-hover: #151b2c;
    --bg-surface-active: #1c243b;
    --color-primary: #06b6d4;      /* Cyber Cyan */
    --color-secondary: #7c3aed;    /* Electric Violet */
    --color-accent: #10b981;       /* Growth Green */
    --color-warning: #f59e0b;      /* Alert Amber */
    --color-danger: #ef4444;       /* Alert Red */
    
    /* Text Tokens */
    --text-white: #ffffff;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Layout & Styling */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);
    --grad-primary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    --grad-glow: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, rgba(7, 9, 14, 0) 70%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(6, 182, 212, 0.2);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', Courier, monospace;
}

/* ==========================================================================
   2. Resets & Global Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Core Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-secondary);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================================================
   3. Header & Navigation (Glassmorphic)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(7, 9, 14, 0.9);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.site-logo a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-logo span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu li {
    position: relative;
}

.menu a {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
}

.menu a:hover,
.menu .current-menu-item > a {
    color: var(--text-white);
}

/* Submenu styling */
.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
    width: 220px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-premium);
}

.menu li:hover .sub-menu {
    display: flex;
}

.menu .sub-menu a {
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 4px;
}

.menu .sub-menu a:hover {
    background: var(--bg-surface-hover);
    color: var(--color-primary);
}

/* Navigation Buttons */
.btn-digiflow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--grad-primary);
    color: var(--text-white) !important;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
}

.btn-digiflow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.btn-digiflow.btn-outline {
    background: transparent;
    border: 1px solid var(--border-hover);
    box-shadow: none;
}

.btn-digiflow.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--text-white);
    box-shadow: none;
}

/* Mobile Toggle Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ==========================================================================
   4. Hero & Main Layout Sections
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.hero-section {
    padding: 160px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 99px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.text-outlined {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.subheading {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Grid Dashboard mockups inside hero */
.abstract-dashboard {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.abstract-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
}

/* ==========================================================================
   5. Dynamic Business Discovery Wizard (Guided Journey)
   ========================================================================== */
.wizard-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.wizard-progress-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--grad-primary);
    z-index: 2;
    transition: var(--transition-smooth);
    width: 0%;
}

.progress-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 3;
    transition: var(--transition-smooth);
}

.progress-node.active {
    border-color: var(--color-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.progress-node.complete {
    background: var(--grad-primary);
    border-color: transparent;
    color: var(--text-white);
}

/* Wizard Steps wrapper */
.wizard-step {
    display: none;
    animation: slideInUp 0.4s ease-out forwards;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-align: center;
}

.wizard-step p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 35px;
}

/* Choice Grid Options */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.choice-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.choice-card input[type="radio"],
.choice-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card i {
    font-size: 2.2rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.choice-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.choice-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.choice-card:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.choice-card.selected {
    border-color: var(--color-primary);
    background: rgba(6, 182, 212, 0.05);
    box-shadow: var(--shadow-glow);
}

.choice-card.selected i {
    color: var(--color-primary);
}

.choice-card.selected h4 {
    color: var(--color-primary);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

/* Recommendations output */
.recommendation-panel {
    display: none;
    text-align: center;
    animation: slideInUp 0.5s ease-out forwards;
}

.recommendation-panel.active {
    display: block;
}

.console-log {
    background: #030712;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #10b981;
    margin-bottom: 30px;
    max-height: 180px;
    overflow-y: auto;
}

/* ==========================================================================
   6. Signature Component: Business Impact Simulator Dashboard
   ========================================================================== */
.dashboard-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-top: 50px;
    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: 20px 20px;
}

.dashboard-nav {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.dashboard-tab {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.dashboard-tab:hover,
.dashboard-tab.active {
    background: var(--bg-surface-hover);
    color: var(--text-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

/* Simulator Grid Layout */
.simulator-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-group label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.slider-group label span {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-weight: 600;
}

/* Modern CSS Range Input Styling */
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-surface-active);
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 8px var(--color-primary);
    transition: var(--transition-smooth);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Simulator Visuals side */
.simulator-visuals {
    background: rgba(3, 7, 18, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.sim-output-box {
    margin-bottom: 25px;
}

.sim-output-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sim-output-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-accent);
    line-height: 1.1;
    margin-top: 5px;
}

/* Dynamic chart mock representation */
.sim-chart-wrap {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-top: 10px;
    border-bottom: 2px solid var(--border-color);
}

.sim-chart-bar {
    flex: 1;
    background: var(--grad-primary);
    border-radius: 4px 4px 0 0;
    transition: height 0.4s ease-out;
    position: relative;
}

.sim-chart-bar::before {
    content: attr(data-val);
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   7. Card Panels, Lists & Matrix Components
   ========================================================================== */
/* Proof Box statistics */
.proof-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

.proof-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.proof-item:last-child {
    border-right: none;
}

.proof-item .num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--color-primary);
}

.proof-item .lbl {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Core Service Cards grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.digiflow-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.digiflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: var(--transition-smooth);
}

.digiflow-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.digiflow-card:hover::before {
    background: var(--grad-primary);
}

.digiflow-card .card-number {
    position: absolute;
    top: 25px;
    right: 35px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

/* Pricing Layouts */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.price-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.price-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--grad-primary);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.price-card .desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    min-height: 50px;
}

.price-card .deliverables-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.price-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.price-card li {
    font-size: 0.9rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
}

.price-card li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.btn-price {
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   8. FAQ Accordion Components
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
}

.faq-question::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

/* ==========================================================================
   9. Footer & Global Layout Elements
   ========================================================================== */
.marquee-container {
    background: #030712;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: tickerLoop 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.marquee-content span {
    margin: 0 20px;
}

.marquee-content .highlight {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-section {
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
    border-top: 1px solid var(--border-color);
    padding: 120px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-section p {
    max-width: 650px;
    margin: 0 auto 35px auto;
    color: var(--text-secondary);
}

/* Footer structure */
.footer-site {
    background: #030712;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget-title {
    font-size: 1.15rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-widget-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-widget p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-widget a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-widget a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--text-secondary);
}

/* ==========================================================================
   10. Keyframes & Animation Library
   ========================================================================== */
@keyframes tickerLoop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   11. Responsive Layout Adaptations
   ========================================================================== */
@media screen and (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .simulator-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .proof-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .proof-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
    }
    
    .proof-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-grid-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
