/* VividBG-style Grid System */

:root {
    --grid-cols: 20;
    --grid-gap: 11px;
    --block-radius: 0;
}

.vb-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 96px; /* Add space for fixed nav */
    background: #f5f5f5;
    min-height: 100vh;
}

.vb-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-cols), 1fr);
    grid-auto-rows: minmax(80px, auto);
    gap: var(--grid-gap);
}

/* Base Block Styles */
.vb-block {
    grid-column: var(--col);
    grid-row: var(--row);
    background: #ffffff;
    border-radius: var(--block-radius);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

/* Explicit grid positioning */
.vb-block[style*="--col: span 12"] {
    grid-column: 1 / 13;
}

.vb-block[style*="--col: span 6"] {
    grid-column: 1 / 7;
}

.vb-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.block-content {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.block-content.center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Typography */
.label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 16px;
}

.title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin: 0;
}

/* Hero Block */
.vb-block.hero {
    background: #1a1a1a;
    color: #ffffff;
}

.vb-block.hero .label {
    color: #999;
}

.vb-block.hero .subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #ccc;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

/* Stat Blocks */
.vb-block.stat {
    background: #ffffff;
}

.vb-block.stat.orange {
    background: #ff5722;
    color: #ffffff;
}

.vb-block.stat.orange .label {
    color: rgba(255,255,255,0.8);
}

.vb-block.stat.dark {
    background: #1a1a1a;
    color: #ffffff;
}

.vb-block.stat.dark .label {
    color: rgba(255,255,255,0.7);
}

.vb-block.stat.gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.vb-block.stat.gradient .label {
    color: rgba(255,255,255,0.8);
}

.vb-block.stat.purple {
    background: #673ab7;
    color: #ffffff;
}

.vb-block.stat.purple .label {
    color: rgba(255,255,255,0.8);
}

.vb-block.stat.green {
    background: #4caf50;
    color: #ffffff;
}

.vb-block.stat.green .label {
    color: rgba(255,255,255,0.8);
}

.vb-block.stat.blue {
    background: #00a3ff; /* shotbysevan blue */
    color: #ffffff;
}

.vb-block.stat.blue .label {
    color: rgba(255,255,255,0.9);
}

.number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}


/* Role Block */
.vb-block.role {
    background: #673ab7;
    color: #ffffff;
}

.vb-block.role.purple {
    background: #673ab7;
}

.vb-block.role .label {
    color: rgba(255,255,255,0.7);
}

.role-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

/* Experience Blocks */
.exp-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.company-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.company-line .label {
    margin-bottom: 0;
}

.company-logo {
    width: 30px;
    height: 30px;
    opacity: 1;
    object-fit: contain;
    flex-shrink: 0;
}

.vb-block.exp h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.vb-block.exp p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.vb-block.exp.dark {
    background: #1a1a1a;
    color: #ffffff;
}

.vb-block.exp.dark .label {
    color: #999;
}

.vb-block.exp.dark p {
    color: #ccc;
}

.vb-block.exp.gradient-alt {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.vb-block.exp.gradient-alt .label {
    color: rgba(255,255,255,0.8);
}

.vb-block.exp.gradient-alt h3 {
    color: #ffffff;
}

.vb-block.exp.gradient-alt p {
    color: rgba(255,255,255,0.9);
}

.vb-block.exp.blue {
    background: #00a3ff;
    color: #ffffff;
}

.vb-block.exp.blue .label {
    color: rgba(255,255,255,0.9);
}

.vb-block.exp.blue h3 {
    color: #ffffff;
}

.vb-block.exp.blue p {
    color: rgba(255,255,255,0.95);
}

/* Info Block */
.vb-block.info {
    background: #ffffff;
}

.vb-block.info.black {
    background: #1a1a1a;
    color: #ffffff;
}

.vb-block.info.black .label {
    color: #999;
}

.vb-block.info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.vb-block.info.black p {
    color: #ccc;
}

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

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-item span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item strong {
    font-size: 14px;
    font-weight: 600;
}

/* Gaming Block */
.vb-block.gaming {
    background: #f5f5f5;
    color: #333;
}

.vb-block.gaming.gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vb-block.gaming.blue {
    background: #00a3ff; /* shotbysevan blue */
}

.gaming-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.gaming-icon {
    width: 32px;
    height: 32px;
    stroke: #333;
}

.vb-block.gaming.blue .gaming-icon {
    stroke: #ffffff;
}

.vb-block.gaming h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vb-block.gaming p {
    font-size: 14px;
    opacity: 0.9;
}

.vb-block.gaming .label {
    color: #666;
    margin-bottom: 0;
}

.vb-block.gaming.blue .label {
    color: rgba(255,255,255,0.8);
}

.vb-block.gaming.black {
    background: #1a1a1a;
    color: #ffffff;
}

.vb-block.gaming.black .label {
    color: #999;
}

.vb-block.gaming.black h3 {
    color: #ffffff;
}

.vb-block.gaming.black p {
    color: #ccc;
}

.vb-block.gaming.black .gaming-icon {
    stroke: #ffffff;
}

/* Skills Block */
.vb-block.skills {
    background: #f8f8f8;
}

.vb-block.skills.dark {
    background: #1a1a1a;
    color: #ffffff;
}

.vb-block.skills.dark .label {
    color: #999;
}

.vb-block.skills.dark .skill-item span {
    color: #ccc;
}

.vb-block.skills.dark .skill-icon {
    background: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.skill-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.skill-item span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Timeline Block */
.vb-block.timeline {
    background: #ffffff;
}

.vb-block.timeline.orange-light {
    background: #fff3e0;
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    background: #ffffff;
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    margin-bottom: 8px;
}

.timeline-item.active::before {
    background: #00a3ff; /* shotbysevan blue */
    box-shadow: 0 0 0 4px rgba(0,163,255,0.2);
}

.timeline-item .year {
    font-size: 18px;
    font-weight: 700;
}

.timeline-item .role {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Detail Sections */
.vb-block.detail-section {
    background: #1a1a1a;
    height: 100%;
    color: white;
}

.vb-block.detail-section .block-content {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-icon {
    font-size: 36px;
}

.section-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: -0.02em;
}

/* Trustpilot Section */
.vb-block.trustpilot {
    background: #1a1a1a;
}

/* Add emphasis to key metrics */
.metric-card .metric-number {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.metric-card.highlight .metric-number {
    text-shadow: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.metric-card:hover {
    border-color: #00a3ff;
    background: rgba(255, 255, 255, 0.15);
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-card.highlight {
    background: #00a3ff;
    color: white;
}

.metric-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
}

.metric-card.highlight .metric-number {
    color: white;
}

.metric-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.metric-detail {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.achievement-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.3);
    border-color: #00a3ff;
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.achievement-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* AI Section */
.vb-block.ai-section {
    background: #1a1a1a;
    color: white;
}

.vb-block.ai-section .section-header h3 {
    color: white;
}

/* Add visual hierarchy */
.process-step {
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00a3ff, transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-step:hover::before {
    opacity: 0.3;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: #00a3ff;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 18px;
    margin: 0 0 12px 0;
    color: white;
}

.process-step p {
    font-size: 15px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
}

.process-arrow {
    display: none;
}

/* Knowledge Base Section */
.vb-block.kb-section {
    background: #1a1a1a;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.impact-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transform: translateY(-3px);
    border-color: #00a3ff;
    background: rgba(255, 255, 255, 0.15);
}

.impact-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.impact-item h4 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: white;
    font-weight: 700;
}

.impact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* Training Section */
.vb-block.training-section {
    background: #1a1a1a;
}

.vb-block.training-section .section-header h3 {
    color: white;
}

.training-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.highlight-block:hover {
    border-color: #00a3ff;
    background: rgba(255, 255, 255, 0.15);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.highlight-icon {
    font-size: 32px;
}

.highlight-header h4 {
    font-size: 20px;
    margin: 0;
    color: white;
}

.highlight-block p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px 0;
    font-weight: 500;
}

.highlight-stat {
    background: #00a3ff;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 163, 255, 0.3);
}

/* CTA Block */
.vb-block.cta {
    background: #ff5722;
    color: #ffffff;
}

.vb-block.cta.orange {
    background: #ff5722;
}

.vb-block.cta.blue {
    background: #00a3ff; /* shotbysevan blue */
}

.vb-block.cta.black {
    background: #1a1a1a;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-links {
    display: flex;
    gap: 24px;
}

.cta-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 0;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background: #ffffff;
    color: #ff5722;
    border-color: #ffffff;
}

.vb-block.cta.blue .cta-link:hover {
    color: #00a3ff;
}

.vb-block.cta.black .cta-link:hover {
    color: #1a1a1a;
}

.cta-content .location {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* References Block */
.vb-block.references {
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.ref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 20px;
}

.ref-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ref-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.ref-item span {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ref-item a {
    font-size: 14px;
    color: #ff5722;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ref-item a:hover {
    opacity: 0.7;
}

/* Quote Block */
.vb-block.quote {
    background: #f0f0f0;
}

.vb-block.quote.dark {
    background: #2c2c2c;
    color: #ffffff;
}

.vb-block.quote blockquote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    color: #333;
    margin: 0;
    text-align: center;
}

.vb-block.quote.dark blockquote {
    color: #e0e0e0;
}

/* Tablet Responsive - Under 1200px */
@media (max-width: 1200px) {
    /* Detail sections stack on tablet */
    .vb-block.detail-section[style*="--col: 1 / 11"],
    .vb-block.detail-section[style*="--col: 11 / 21"] {
        grid-column: 1 / 13 !important;
    }
    .company-logo {
        width: 25px;
        height: 25px;
    }

    :root {
        --grid-cols: 12;
        --grid-gap: 10px;
    }
    
    .vb-container {
        padding: 16px;
        padding-top: 90px;
        max-width: 100%;
    }
    
    /* Change to flexbox for better control */
    .vb-grid {
        display: flex;
        flex-wrap: wrap;
        gap: var(--grid-gap);
    }
    
    /* Reset all blocks */
    .vb-block {
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Hero block takes ~66% width */
    .vb-block.hero {
        flex: 0 0 calc(66.666% - 5px);
        order: 1;
    }
    
    .vb-block.hero .title {
        font-size: clamp(40px, 6vw, 72px);
    }
    
    .vb-block.hero .subtitle {
        font-size: 14px;
        margin-top: 16px;
    }
    
    /* Stats take ~33% width each */
    .vb-block.stat.blue[style*="--row: 1 / 2"] { /* 9.1K */
        flex: 0 0 calc(33.333% - 5px);
        order: 2;
    }
    
    .vb-block.stat.green { /* CSAT */
        flex: 0 0 calc(33.333% - 5px);
        order: 3;
    }
    
    /* Profile/Info takes ~66% width */
    .vb-block.info {
        flex: 0 0 calc(66.666% - 5px);
        order: 4;
    }
    
    .vb-block.stat.blue[style*="--row: 3 / 4"] { /* #1 */
        flex: 0 0 calc(33.333% - 5px);
        order: 5;
    }
    
    .vb-block.stat.dark { /* 93.7% */
        flex: 0 0 calc(33.333% - 5px);
        order: 6;
    }
    
    /* Experience blocks - 50% width each */
    .vb-block.exp.blue { /* Support Manager */
        flex: 0 0 calc(50% - 5px);
        order: 7;
    }
    
    .vb-block.exp.dark[style*="--col: 7 / 13"][style*="--row: 3 / 4"] { /* Game Admin */
        flex: 0 0 calc(50% - 5px);
        order: 8;
    }
    
    .vb-block.exp.dark[style*="--col: 1 / 7"] { /* Warzone */
        flex: 0 0 calc(50% - 5px);
        order: 9;
    }
    
    .vb-block.exp.dark[style*="--col: 7 / 13"][style*="--row: 4 / 5"] { /* Service Writer */
        flex: 0 0 calc(50% - 5px);
        order: 10;
    }
    
    /* Skills blocks - 50% width each */
    .vb-block.skills[style*="--row: 3 / 4"] { /* EXPERTISE */
        flex: 0 0 calc(50% - 5px);
        order: 11;
    }
    
    .vb-block.skills[style*="--row: 4 / 5"] { /* Second skills */
        flex: 0 0 calc(50% - 5px);
        order: 12;
    }
    
    /* Contact CTA full width */
    .vb-block.cta {
        flex: 0 0 100%;
        order: 13;
    }
    
    /* Adjust typography */
    .vb-block.exp h3 {
        font-size: 24px;
    }
    
    .vb-block.exp p {
        font-size: 13px;
    }
    
    .number {
        font-size: 48px;
    }
    
    .label {
        font-size: 9px;
    }
    
    .block-content {
        padding: 24px;
    }
    
    /* Fix stat block heights */
    .vb-block.stat {
        min-height: 120px;
    }
    
    /* Skills grid adjustments */
    .skills-grid {
        gap: 16px;
    }
    
    .skill-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .exp-header {
        gap: 12px;
    }
    
    .company-logo {
        width: 20px;
        height: 20px;
    }

    :root {
        --grid-cols: 4;
        --grid-gap: 12px;
    }
    
    .vb-container {
        padding: 16px;
        padding-top: 80px; /* Adjust for mobile nav */
    }
    
    .vb-block {
        grid-column: span 4 !important;
        grid-row: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .block-content {
        padding: 24px;
    }
    
    /* Hero block mobile */
    .vb-block.hero .title {
        font-size: 42px;
        line-height: 0.95;
    }
    
    .vb-block.hero .subtitle {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Stat blocks mobile */
    .number {
        font-size: 42px;
        font-weight: 700;
    }
    
    .vb-block.stat .label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    /* Experience blocks mobile */
    .vb-block.exp h3 {
        font-size: 24px;
    }
    
    .vb-block.exp p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Info/Profile block mobile */
    .vb-block.info p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .info-item {
        padding: 10px 0;
    }
    
    /* Skills block mobile */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .skill-item span {
        font-size: 11px;
    }
    
    .skill-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    /* CTA block mobile */
    .cta-content h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .cta-links {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-link {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 13px;
    }
    
    /* Adjust spacing between blocks on mobile */
    .vb-grid {
        gap: var(--grid-gap);
        grid-auto-rows: auto;
    }
    
    /* Special mobile adjustments for stat blocks */
    .vb-block.stat.blue[style*="--row: 3 / 4"],
    .vb-block.stat.dark[style*="--row: 4 / 5"] {
        margin-bottom: 0;
    }
    
    /* Stack blocks in better order on mobile */
    .vb-block.hero { order: 1; }
    .vb-block.info { order: 2; }
    .vb-block.stat.blue[style*="--col: 17 / 21"][style*="--row: 1 / 2"] { order: 3; } /* 9.1K */
    .vb-block.stat.green { order: 4; } /* 84.4% */
    .vb-block.stat.blue[style*="--row: 3 / 4"] { order: 5; } /* #1 */
    .vb-block.stat.dark { order: 6; } /* 93.7% */
    .vb-block.exp.blue { order: 7; } /* Support Manager */
    .vb-block.exp.dark[style*="--col: 7 / 13"][style*="--row: 3 / 4"] { order: 8; } /* Game Admin */
    .vb-block.exp.dark[style*="--col: 1 / 7"] { order: 9; } /* Warzone */
    .vb-block.exp.dark[style*="--col: 7 / 13"][style*="--row: 4 / 5"] { order: 10; } /* Service Writer */
    .vb-block.skills { order: 11; } /* Skills blocks */
    .vb-block.cta { order: 12; } /* Contact */
    
    /* Make grid use flexbox on mobile for better control */
    .vb-grid {
        display: flex;
        flex-direction: column;
    }
    
    /* Detail sections on mobile */
    .vb-block.detail-section {
        padding: 40px 16px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .section-icon {
        font-size: 36px;
    }
    
    .section-header h3 {
        font-size: 24px;
    }
    
    /* Trustpilot mobile */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-number {
        font-size: 32px;
    }
    
    .achievement-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* AI Section mobile */
    .process-flow {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        width: 100%;
    }
    
    /* Knowledge Base mobile */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-item {
        padding: 24px;
    }
    
    /* Training mobile */
    .training-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlight-block {
        padding: 24px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vb-block {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.vb-block:nth-child(1) { animation-delay: 0.1s; }
.vb-block:nth-child(2) { animation-delay: 0.15s; }
.vb-block:nth-child(3) { animation-delay: 0.2s; }
.vb-block:nth-child(4) { animation-delay: 0.25s; }
.vb-block:nth-child(5) { animation-delay: 0.3s; }
.vb-block:nth-child(6) { animation-delay: 0.35s; }
.vb-block:nth-child(7) { animation-delay: 0.4s; }
.vb-block:nth-child(8) { animation-delay: 0.45s; }
.vb-block:nth-child(9) { animation-delay: 0.5s; }
.vb-block:nth-child(10) { animation-delay: 0.55s; }
.vb-block:nth-child(11) { animation-delay: 0.6s; }
.vb-block:nth-child(12) { animation-delay: 0.65s; }