/* Walmart Brand Colors */
:root {
    --walmart-blue: #0071ce;
    --walmart-yellow: #ffc220;
    --walmart-dark-blue: #004c91;
    --walmart-light-blue: #75b9f0;
    --text-dark: #2d3e50;
    --text-light: #666;
    --background-light: #f8f9fa;
    --success-green: #5cb85c;
    --warning-orange: #f0ad4e;
    --danger-red: #d9534f;
    --white: #ffffff;
    --gray-light: #e9ecef;
    --gray-medium: #6c757d;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation Header */
.nav-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 30px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    height: 60px;
    width: auto;
}

.logo-divider {
    width: 1px;
    height: 30px;
    background: var(--gray-light);
}

.pharma-text {
    font-size: 1.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: var(--walmart-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    color: var(--walmart-dark-blue);
    margin: 40px 0 20px;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Navigation */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--walmart-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--walmart-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--walmart-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--walmart-yellow);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Cards */
.stat-card,
.feature-card,
.format-card,
.support-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.stat-card h2 {
    font-size: 3rem;
    color: var(--walmart-blue);
    margin: 0;
}

.stat-card p {
    color: var(--text-light);
    margin: 10px 0 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--walmart-blue) 0%, var(--walmart-dark-blue) 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--walmart-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--walmart-blue);
    margin: 0 20px;
}

/* Features Grid */
.features-grid,
.formats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Support Pyramid */
.support-pyramid {
    margin: 40px 0;
}

.support-level {
    padding: 25px;
    margin: 10px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.level-1 {
    background: var(--walmart-light-blue);
    color: var(--white);
    border: 2px solid var(--walmart-blue);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.level-1 h3,
.level-1 p {
    color: var(--white);
}

.level-2 {
    background: var(--walmart-blue);
    color: var(--white);
    margin-left: 50px;
    margin-right: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.level-2 h3,
.level-2 p {
    color: var(--white);
}

.level-3 {
    background: var(--walmart-dark-blue);
    color: var(--white);
    margin-left: 100px;
    margin-right: 100px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.level-3 h3,
.level-3 p {
    color: var(--white);
}

/* Checklist Styles */
.checklist-container {
    margin: 40px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.check-number {
    background: var(--walmart-yellow);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 30px;
    flex-shrink: 0;
}

.check-content {
    flex: 1;
}

.check-content ul {
    list-style: none;
    margin: 15px 0;
}

.check-content li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.check-content li:before {
    content: "•";
    color: var(--walmart-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.time-indicator {
    background: var(--gray-light);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Risk Grid */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.risk-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.risk-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 10px;
}

.flow-step.success {
    background: var(--success-green);
    color: var(--white);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--walmart-blue);
    margin: 0 10px;
}

/* Installation Demo Styles */
.step-container {
    margin: 40px 0;
}

.step-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-card.success {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border: 2px solid var(--success-green);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-shrink: 0;
    gap: 20px;
}

.step-number {
    background: var(--walmart-yellow);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
    white-space: nowrap;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--walmart-yellow);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.step-card.success .step-number {
    background: var(--success-green);
    color: var(--white);
}

.step-card.success .step-number::after {
    display: none;
}

.step-time {
    color: var(--text-light);
    font-size: 1rem;
    background: var(--background-light);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content>p {
    margin-bottom: 20px;
}

/* Browser Mockup */
.screenshot-placeholder {
    margin: 20px 0;
}

.browser-mockup {
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.browser-bar {
    background: var(--gray-light);
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
}

.browser-url {
    margin-left: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.browser-content {
    padding: 40px;
    background: var(--white);
    text-align: center;
}

/* Demo Elements */
.demo-btn {
    background: var(--walmart-blue);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
}

.search-demo {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    margin: 20px 0;
}

.search-demo input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--walmart-blue);
    border-radius: 5px;
    font-size: 1rem;
}

.search-results {
    margin-top: 10px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
}

.result-item {
    padding: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.result-item.selected {
    background: var(--walmart-light-blue);
    color: var(--white);
}

/* Download Demo */
.download-demo {
    margin: 30px 0;
    text-align: center;
}

.download-btn {
    background: var(--walmart-yellow);
    color: var(--text-dark);
    padding: 20px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.download-icon {
    font-size: 2rem;
}

.file-info {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-top: 5px;
}

/* Installer Window */
.installer-window {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.next-steps {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.next-steps h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--walmart-blue);
}

.progress-container {
    margin: 30px 0;
}

.progress-bar {
    background: var(--gray-light);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--walmart-blue) 0%, var(--walmart-light-blue) 100%);
    height: 100%;
    width: 75%;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 75%;
    }
}

.installer-details {
    text-align: left;
    margin-top: 20px;
}

.installer-details p {
    padding: 5px 0;
    color: var(--success-green);
}

.installer-details p.current {
    color: var(--walmart-blue);
    font-weight: bold;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 10px;
    margin: 20px 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Info Box */
.info-box {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid var(--walmart-blue);
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--walmart-blue);
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

.info-box li {
    padding: 5px 0;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

.feature-list {
    margin: 15px 0;
}

.feature-list li,
.next-steps li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.feature-list li:before,
.next-steps li:before {
    content: "✓";
    color: var(--success-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Monitoring Section */
.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.monitor-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-mockup {
    background: var(--text-dark);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.status-item {
    padding: 10px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-item.success .status-dot {
    background: var(--success-green);
    animation: pulse 2s infinite;
}

.status-item.warning .status-dot {
    background: var(--warning-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Timeline Vertical */
.timeline-vertical {
    position: relative;
    padding-left: 50px;
    margin: 40px 0;
}

.timeline-vertical:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--walmart-blue);
}

.timeline-event {
    position: relative;
    margin: 40px 0;
}

.timeline-event:before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--walmart-yellow);
    border: 3px solid var(--walmart-blue);
}

.timeline-time {
    font-weight: bold;
    color: var(--walmart-blue);
    margin-bottom: 10px;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Notification Demo */
.notification-demo {
    margin: 20px 0;
}

.notification {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification.success {
    background: var(--success-green);
    color: var(--white);
}

.notification-icon {
    font-size: 2rem;
}

/* Welcome Package */
.welcome-package {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Support Assignment */
.support-assignment {
    margin: 20px 0;
}

.rep-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rep-avatar {
    font-size: 3rem;
    background: var(--walmart-blue);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.day-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.day-card h3 {
    color: var(--walmart-blue);
    margin-bottom: 15px;
}

/* Activation Options */
.activation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.option-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.option-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--walmart-blue);
    margin: 10px 0;
}

.metric-value.good {
    color: var(--success-green);
}

/* Support Timeline */
.support-timeline {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.support-phase {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    margin: 10px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Success Rate Visualization */
.success-visualization {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.success-chart {
    display: flex;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.chart-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.chart-segment.success {
    background: var(--success-green);
    color: var(--white);
}

.chart-segment.issues {
    background: var(--warning-orange);
    color: var(--white);
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.legend-color.success {
    background: var(--success-green);
}

.legend-color.issues {
    background: var(--warning-orange);
}

/* Scenario Grid */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.scenario-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scenario-card.success {
    border-left: 5px solid var(--success-green);
}

.scenario-flow {
    background: var(--background-light);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-family: monospace;
}

.outcome {
    margin-top: 15px;
    font-weight: bold;
    color: var(--success-green);
}

/* Case Study */
.case-study {
    background: var(--white);
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.case-header {
    background: var(--warning-orange);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-header.warning {
    background: var(--warning-orange);
}

.frequency {
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.case-content {
    padding: 30px;
}

.case-section {
    margin: 20px 0;
}

.case-section h4 {
    color: var(--walmart-blue);
    margin-bottom: 10px;
}

.case-section ol {
    padding-left: 20px;
}

.case-section ol li {
    padding: 5px 0;
}

.resolution-time {
    font-size: 1.5rem;
    color: var(--success-green);
    font-weight: bold;
}

/* Response Tiers */
.response-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tier-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tier-stat {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--walmart-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Improvement Cycle */
.improvement-cycle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cycle-step {
    text-align: center;
    padding: 20px;
}

.cycle-arrow {
    font-size: 2rem;
    color: var(--walmart-blue);
    margin: 0 20px;
}

/* Story Header */
.story-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--walmart-blue) 0%, var(--walmart-dark-blue) 100%);
    color: var(--white);
    border-radius: 15px;
    margin-bottom: 40px;
}

.story-header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.story-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-badge {
    text-align: center;
}

.stat-badge .stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-badge .stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white
}

/* Quote Box */
.quote-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    position: relative;
}

.quote-box:before {
    content: "";
    font-size: 4rem;
    color: var(--walmart-blue);
    position: absolute;
    top: 10px;
    left: 20px;
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    padding-left: 40px;
}

cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    color: var(--text-light);
}

/* Journey Timeline */
.journey-timeline {
    margin: 40px 0;
}

.journey-phase {
    background: var(--white);
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.phase-header {
    background: var(--walmart-blue);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phase-header h3 {
    color: var(--white);
}

.phase-time {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.phase-content {
    padding: 30px;
}

.outcome-box {
    background: var(--success-green);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.strategy-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Results Container */
.results-container {
    margin: 40px 0;
}

.result-metric {
    margin: 30px 0;
}

.metric-visual {
    background: var(--gray-light);
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    margin: 10px 0;
}

.metric-bar {
    background: linear-gradient(90deg, var(--walmart-blue) 0%, var(--walmart-light-blue) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.lesson-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--walmart-yellow);
}

/* Testimonials */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial:before {
    content: "" ";
 font-size: 3rem;
    color: var(--walmart-blue);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Story Title Section */
.story-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.wholehealth-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .wholehealth-logo {
        height: 60px;
    }

    .story-title-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Walmart Benefits */
.walmart-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit-card.primary {
    border-top: 5px solid var(--walmart-yellow);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--background-light);
    border-radius: 15px;
    margin: 60px 0;
}

.cta-section.final {
    background: linear-gradient(135deg, var(--walmart-blue) 0%, var(--walmart-dark-blue) 100%);
    color: var(--white);
}

.cta-section.final h2 {
    color: var(--white);
}

.cta-section.final p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--gray-light);
    color: var(--text-light);
}

footer p {
    margin: 5px 0;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: inline-block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid var(--gray-light);
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close {
    color: var(--gray-medium);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--text-dark);
    text-decoration: none;
}

.webinar-schedule {
    margin: 30px 0;
}

.schedule-week {
    margin-bottom: 40px;
}

.schedule-week h3 {
    color: var(--walmart-blue);
    margin-bottom: 20px;
}

.webinar-item {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: var(--background-light);
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid var(--walmart-yellow);
}

.webinar-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}

.webinar-date .day {
    display: block;
    font-weight: bold;
    color: var(--walmart-blue);
}

.webinar-date .date {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 5px;
}

.webinar-details {
    flex: 1;
}

.webinar-details h4 {
    margin: 0 0 10px 0;
    color: var(--walmart-dark-blue);
}

.webinar-details p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.webinar-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.webinar-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
    margin-top: 30px;
}

.webinar-footer p {
    margin-bottom: 20px;
}

/* Screenshot Styles */
.screenshot-placeholder {
    margin: 20px 0;
    text-align: center;
}

.screenshot-placeholder a {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

.screenshot-placeholder a:hover {
    transform: scale(1.02);
}

.screenshot-image {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.screenshot-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--walmart-blue);
    text-decoration: none;
    font-style: italic;
}

.screenshot-placeholder a:hover .screenshot-caption {
    text-decoration: underline;
}

/* Features Page Styles */
.features-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--walmart-blue) 0%, var(--walmart-dark-blue) 100%);
    color: var(--white);
    border-radius: 15px;
    margin-bottom: 40px;
}

.features-header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.features-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.features-stats {
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--walmart-yellow);
}

.stat-label {
    color: var(--text-light);
    margin-top: 10px;
}

/* Feature Categories */
.feature-category {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.category-header:hover {
    background: var(--background-light);
}

.category-info h3 {
    color: var(--walmart-blue);
    margin-bottom: 10px;
}

.category-info p {
    color: var(--text-light);
    margin: 0;
}

.category-toggle {
    font-size: 1.5rem;
    color: var(--walmart-blue);
    transition: transform 0.3s ease;
}

.category-content {
    display: none;
    padding: 0 30px 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.feature-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.feature-card.highlight {
    border: 2px solid var(--walmart-yellow);
    background: linear-gradient(135deg, #fffef5 0%, #fff9e6 100%);
}

.highlight-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--walmart-yellow);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-card h4 {
    color: var(--walmart-dark-blue);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.show-more {
    text-align: center;
    margin-top: 20px;
}

/* Screenshot Modal */
.screenshot-modal {
    max-width: 90%;
    max-height: 90vh;
    overflow: auto;
}

#screenshotContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    min-height: 400px;
    position: relative;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    max-height: 70vh;
    object-fit: contain;
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    /* Space for indicators */
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    display: none;
    width: 100%;
    text-align: center;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide.loading {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.loading::after {
    content: "Loading...";
    color: var(--text-light);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-indicator.active {
    background: var(--walmart-blue);
}

.error-message {
    color: var(--error-color, #ff4444);
    padding: 20px;
    font-style: italic;
}

.url-container {
    padding: 40px;
}

.url-preview {
    text-align: center;
}

.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--walmart-blue);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px 30px;
    border: 2px solid var(--walmart-blue);
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.demo-link:hover {
    background: var(--walmart-blue);
    color: white;
}

/* Search Container in Features */
.features-header .search-container {
    max-width: 600px;
    margin: 30px auto 0;
}

/* No screenshot indicator */
.no-screenshot {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-nav {
        font-size: 18px;
        padding: 8px 12px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .screenshot-carousel {
        min-height: 300px;
    }
}

/* Responsive Features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        padding: 20px;
    }

    .category-content {
        padding: 0 20px 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .timeline-arrow,
    .flow-arrow,
    .cycle-arrow {
        display: none;
    }

    .process-timeline,
    .flow-diagram,
    .improvement-cycle {
        flex-direction: column;
    }

    .level-2,
    .level-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-stats-inline {
        flex-direction: column;
        gap: 20px;
    }

    .support-timeline {
        flex-direction: column;
    }

    .step-card {
        padding: 25px;
        min-height: auto;
    }

    .step-header {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .step-number {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .step-number::after {
        right: -8px;
        border-left: 8px solid var(--walmart-yellow);
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }

    .download-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }

    .webinar-item {
        flex-direction: column;
        gap: 15px;
    }

    .webinar-date {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .webinar-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Training & Support Hub Styles */
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-icon {
    background: var(--walmart-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: var(--text-dark);
}

.user-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hub Header */
.hub-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--background-light);
    border-radius: 20px;
}

.overall-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percent {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--walmart-blue);
}

.progress-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.progress-stats {
    display: flex;
    gap: 40px;
}

.progress-stats .stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--walmart-blue);
}

.progress-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Hub Grid */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.hub-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 71, 206, 0.1);
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--walmart-blue) 0%, var(--walmart-light-blue) 100%);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 71, 206, 0.2);
    position: relative;
    overflow: hidden;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.icon-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.card-content {
    padding: 0 30px 30px;
}

.card-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.quick-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.quick-stat .icon {
    font-size: 1.3rem;
    color: var(--walmart-blue);
}

/* Role Selector */
.role-selector {
    margin: 30px 0;
}

.role-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.role-btn {
    background: var(--background-light);
    border: 2px solid transparent;
    padding: 25px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 130px;
}

.role-btn:hover {
    background: var(--white);
    border-color: var(--walmart-light-blue);
}

.role-btn.active {
    background: var(--walmart-blue);
    color: var(--white);
    border-color: var(--walmart-blue);
}

.role-icon {
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

/* Support Channels */
.support-channels {
    margin: 20px 0;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin: 10px 0;
    background: var(--background-light);
    border-radius: 10px;
}

.channel-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.channel-status.online {
    background: var(--success-green);
    animation: pulse 2s infinite;
}

.channel-status.scheduled {
    background: var(--warning-orange);
}

.channel-status.offline {
    background: var(--gray-medium);
}

.channel-icon {
    font-size: 2rem;
    display: inline-block;
}

.channel-info h4 {
    margin: 0;
    font-size: 1rem;
}

.availability {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Recent Activity */
.recent-activity {
    margin: 60px 0;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.activity-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.activity-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.activity-icon.completed {
    background: var(--success-green);
    color: var(--white);
}

.activity-icon.in-progress {
    background: var(--warning-orange);
    color: var(--white);
}

.activity-icon.achievement {
    background: var(--walmart-yellow);
    color: var(--text-dark);
}

.activity-info {
    flex: 1;
}

.activity-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.activity-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.xp-earned,
.xp-potential {
    font-weight: bold;
    color: var(--walmart-blue);
    font-size: 0.9rem;
}

.xp-potential {
    color: var(--text-light);
}

/* Quick Links */
.quick-links {
    margin: 60px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quick-link-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.link-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--walmart-blue);
}

.quick-link-card h3 {
    margin: 10px 0;
    color: var(--walmart-blue);
}

.quick-link-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-large {
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-top: 20px;
}

/* Training Center Styles */
.training-header {
    text-align: center;
    margin-bottom: 40px;
}

.training-progress-bar {
    margin: 40px auto;
    max-width: 800px;
}

.progress-bar-container {
    position: relative;
    height: 30px;
    background: var(--gray-light);
    border-radius: 15px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--walmart-blue) 0%, var(--walmart-light-blue) 100%);
    transition: width 0.5s ease;
}

.progress-milestones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.milestone {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-light);
    padding: 2px 8px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--gray-light);
}

.milestone.completed {
    background: var(--success-green);
    color: var(--white);
    border-color: var(--success-green);
}

.milestone.active {
    background: var(--walmart-blue);
    color: var(--white);
    border-color: var(--walmart-blue);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Achievements */
.achievements-banner {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.achievements-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.achievement-badge {
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-badge:hover {
    transform: scale(1.1);
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: var(--walmart-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 10px;
    text-align: center;
    padding: 8px;
}

.achievement-badge.locked .badge-icon {
    background: var(--gray-light);
    color: var(--gray-medium);
}

/* Missions */
.missions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mission-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--gray-light);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--walmart-blue);
}

.filter-btn.active {
    background: var(--walmart-blue);
    color: var(--white);
    border-color: var(--walmart-blue);
}

.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .missions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .mission-card {
        margin: 0 10px;
    }

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

    .level-badge {
        right: 10px;
        top: 10px;
    }
}

.mission-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.mission-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: var(--walmart-blue);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.mission-info {
    flex: 1;
}

.mission-info h3 {
    margin: 0 0 10px 0;
}

.mission-tags {
    display: flex;
    gap: 10px;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.required-tag {
    background: var(--danger-red);
    color: var(--white);
}

.optional-tag {
    background: var(--walmart-light-blue);
    color: var(--white);
}

.special-tag {
    background: var(--walmart-yellow);
    color: var(--text-dark);
}

.difficulty-tag {
    background: var(--gray-light);
    color: var(--text-dark);
}

.time-tag {
    background: var(--warning-orange);
    color: var(--white);
}

.mission-xp {
    font-weight: bold;
    color: var(--walmart-blue);
}

.mission-content {
    padding: 0 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mission-tasks {
    margin: 15px 0;
}

.task {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.task-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.task.completed .task-check {
    background: var(--success-green);
    color: var(--white);
    border-color: var(--success-green);
}

.task.locked .task-check {
    background: var(--gray-light);
    color: var(--gray-medium);
}

.mission-progress {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.progress-bar-small {
    flex: 1;
    height: 8px;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill-small {
    height: 100%;
    background: var(--success-green);
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.mission-unlock {
    background: var(--background-light);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.unlock-icon {
    font-size: 0.8rem;
    background: var(--gray-medium);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
}

.mission-footer {
    padding: 20px;
    background: var(--background-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission-status {
    font-weight: 600;
}

.completed-status {
    color: var(--success-green);
}

.in-progress-status {
    color: var(--warning-orange);
}

.available-status {
    color: var(--walmart-blue);
}

.locked-status {
    color: var(--gray-medium);
}

.special-status {
    color: var(--walmart-yellow);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mission-challenge {
    background: var(--background-light);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.challenge-icon {
    font-size: 3rem;
}

.challenge-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.challenge-progress {
    font-weight: bold;
    color: var(--text-dark);
}

.challenge-time {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Learning Path */
.learning-paths {
    margin: 60px 0;
}

.path-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .path-visualization {
        margin: 20px 0;
        gap: 15px;
    }

    .path-step {
        margin: 10px 5px;
    }

    .path-connector {
        display: none;
    }
}

.path-node {
    background: var(--white);
    border: 3px solid var(--gray-light);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.path-node.completed {
    background: var(--success-green);
    border-color: var(--success-green);
    color: var(--white);
}

.path-node.active {
    background: var(--walmart-blue);
    border-color: var(--walmart-blue);
    color: var(--white);
}

.node-icon {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.path-connector {
    width: 60px;
    height: 3px;
    background: var(--gray-light);
    margin: 0 -10px;
    z-index: 1;
}

.path-connector.active {
    background: var(--walmart-blue);
}

/* Support Center Styles */
.support-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-container {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    gap: 15px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--walmart-blue);
}

.search-btn {
    background: var(--walmart-blue);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--walmart-dark-blue);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.channel-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.channel-header {
    padding: 25px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-header .channel-icon {
    font-size: 2.5rem;
}

.channel-header h3 {
    flex: 1;
    margin: 0;
}

.status-badge {
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.status-badge.online {
    background: var(--success-green);
    color: var(--white);
}

.status-badge.scheduled {
    background: var(--warning-orange);
    color: var(--white);
}

.channel-content {
    padding: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Featured Articles */
.articles-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--gray-light);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--walmart-blue);
}

.tab-btn.active {
    background: var(--walmart-blue);
    color: var(--white);
    border-color: var(--walmart-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.article-embed {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.article-embed h3 {
    margin-bottom: 20px;
    color: var(--walmart-blue);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.article-link {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

.article-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.article-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.article-link h4 {
    color: var(--walmart-blue);
    margin: 10px 0;
}

.article-link p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.integration-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

/* Removed duplicate step-number style - using main style at line 455 */

.step-content h4 {
    margin: 0 0 5px 0;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

/* Knowledge Base */
.kb-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.kb-category {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-header {
    padding: 25px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    flex: 1;
    margin: 0;
}

.article-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-list {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
}

.article-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-list a:hover {
    color: var(--walmart-blue);
}

.view-all-link {
    display: block;
    padding: 20px 25px;
    background: var(--background-light);
    text-align: center;
    color: var(--walmart-blue);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-all-link:hover {
    background: var(--gray-light);
}

/* Contact Section */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin: 15px 0 10px;
}

.contact-card p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: var(--walmart-blue);
}

.response-time {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Help Article Styles */
.help-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-toc {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.article-toc h3 {
    margin-bottom: 15px;
}

.article-toc ul {
    list-style: none;
    padding: 0;
}

.article-toc li {
    padding: 8px 0;
}

.article-toc a {
    color: var(--walmart-blue);
    text-decoration: none;
}

.article-toc a:hover {
    text-decoration: underline;
}

.article-section {
    margin: 50px 0;
}

.info-box,
.success-box,
.warning-box {
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-box {
    background: var(--walmart-light-blue);
    color: var(--white);
}

.success-box {
    background: var(--success-green);
    color: var(--white);
}

.warning-box {
    background: var(--warning-orange);
    color: var(--white);
}

.info-icon,
.success-icon,
.warning-icon {
    font-size: 1.5rem;
}

.numbered-steps {
    margin: 20px 0;
    padding-left: 20px;
}

.numbered-steps li {
    margin: 10px 0;
}

.screenshot-placeholder {
    margin: 30px 0;
}

.screenshot-box {
    background: var(--gray-light);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed var(--gray-medium);
}

.screenshot-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.form-guide {
    margin: 30px 0;
}

.form-field {
    margin: 25px 0;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
}

.form-field label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: var(--walmart-blue);
}

.example-box {
    background: var(--white);
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-family: monospace;
}

.url-example {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.url-display {
    flex: 1;
    background: var(--background-light);
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
}

.url-prefix {
    color: var(--text-light);
}

.url-custom {
    color: var(--walmart-blue);
    font-weight: bold;
}

.copy-btn {
    background: var(--walmart-blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.sharing-method {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.method-icon {
    font-size: 2rem;
}

.code-snippet {
    background: var(--text-dark);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.9rem;
}

.signature-example,
.sms-example,
.social-example {
    background: var(--background-light);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.hours-grid {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.day-schedule {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.day-schedule:last-child {
    border-bottom: none;
}

.services-setup {
    margin: 30px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-item {
    background: var(--background-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.role-descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.role-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.availability-example {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.time-blocks {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.available-block {
    background: var(--success-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
}

.break-block {
    background: var(--gray-medium);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checklist li {
    padding: 10px 0;
}

.branding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.brand-item {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
}

.brand-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.metric-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--walmart-blue);
    display: block;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.utm-examples {
    background: var(--background-light);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.utm-example {
    margin: 10px 0;
}

.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.practice-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.practice-card h3 {
    margin-bottom: 20px;
}

.tip-cards {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--background-light);
    padding: 20px;
    border-radius: 10px;
}

.tip-icon {
    font-size: 1.5rem;
}

.story-box {
    background: var(--walmart-light-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.story-box blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0 0 15px 0;
}

.story-box cite {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.9;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.action-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.action-card h3 {
    color: var(--walmart-blue);
    margin-bottom: 10px;
}

.help-footer {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Main Navigation Styles */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-logo img {
    height: 40px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--walmart-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px 0;
}

.nav-item:hover {
    color: var(--walmart-blue);
}

.nav-dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1001;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--background-light);
    color: var(--walmart-blue);
}

.dropdown-content a:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 10px 10px;
}

.nav-cta {
    margin-left: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--walmart-blue) 0%, var(--walmart-dark-blue) 100%);
    color: var(--white);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-image {
    display: none;
}

/* Quick Access Section */
.quick-access {
    padding: 80px 20px;
    background: var(--background-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--walmart-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.access-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--walmart-yellow);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.access-card:hover::before {
    transform: translateX(0);
}

.access-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.access-card h3 {
    color: var(--walmart-blue);
    margin-bottom: 15px;
}

.access-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.access-link {
    color: var(--walmart-blue);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    color: var(--walmart-blue);
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* Process Overview */
.process-overview {
    padding: 80px 20px;
    background: var(--background-light);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
    position: relative;
}

/* Removed another duplicate step-number style - using main style at line 455 */
margin: 0 auto 20px;
}

.process-connector {
    width: 60px;
    height: 3px;
    background: var(--walmart-blue);
    margin: 0 20px;
}

.step-link {
    color: var(--walmart-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* Training Preview */
.training-preview {
    padding: 80px 20px;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.training-left,
.training-right {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.support-preview {
    margin: 20px 0 30px;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.support-channel .channel-icon {
    font-size: 2rem;
}

/* Help Articles Preview */
.help-articles {
    padding: 80px 20px;
    background: var(--background-light);
}

.articles-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.article-preview {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: center;
}

.article-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.article-preview .article-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.article-preview h4 {
    color: var(--walmart-blue);
    margin-bottom: 10px;
}

.articles-cta {
    text-align: center;
}

/* Main Footer */
.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--walmart-yellow);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    padding: 5px 0;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--walmart-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--walmart-dark-blue);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: var(--background-light);
        margin: 10px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .process-connector {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .container {
        max-width: 100%;
    }

    .btn,
    .cta-section,
    footer {
        display: none;
    }
}