/* Custom Dashboards Page - Complete Override Styles */

/* Important overrides to ensure our styles take precedence */
.custom-dashboards-page {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6 !important;
    color: #1d0c46 !important;
    background: #ffffff !important;
}

/* Override any conflicting container styles */
.custom-dashboards-page .container {
    max-width: 1800px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
}

/* Override any conflicting main content styles */
.custom-dashboards-page .main-content {
    margin: 0 !important;
    padding: 0 !important;
}

.custom-dashboards-page * {
    box-sizing: border-box;
}

/* Hero Section */
.custom-dashboards-page .dashboard-hero {
    background: linear-gradient(135deg, #ffffff 0%, #DDE2EE 50%, #ffffff 100%) !important;
    padding: 120px 0 80px !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

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

.dashboard-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

.dashboard-hero .hero-text {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1d0c46;
    text-align: center;
}

.dashboard-hero .hero-text .hero-subheadline {
    font-size: 1.25rem;
    color: #6b5b7a;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Hero Visual - Data Flow Animation */
.hero-visual {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 60px;
    overflow: hidden;
}

.data-flow-animation {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 700px;
    overflow: hidden;
}

/* Data Sources */
.data-source {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.data-source.source-1 {
    top: 0%;
    left: 0%;
}

.data-source.source-2 {
    top: 0%;
    right: 0%;
}

.data-icon {
    width: 50px;
    height: 50px;
    background: rgba(29, 12, 70, 0.1);
    border: 2px solid #1d0c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
}

.data-icon i {
    font-size: 20px;
    color: #1d0c46;
}

.data-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #1d0c46;
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 10%;
    animation-delay: 2s;
}

.source-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b5b7a;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(29, 12, 70, 0.1);
}

/* Central Processor */
.central-processor {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.processor-core {
    width: 100px;
    height: 100px;
    background: rgba(29, 12, 70, 0.05);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: rotate 8s linear infinite;
}

.processor-core i {
    font-size: 40px;
    color: rgba(29, 12, 70, 0.15);
}

.processing-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 1px solid rgba(29, 12, 70, 0.08);
    border-radius: 50%;
    animation: expand 4s infinite ease-in-out;
}

.ring-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: 1s;
}

.ring-3 {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    animation-delay: 2s;
}

/* Flow Lines - Hidden */
.flow-line {
    display: none;
}

/* Chart Outputs */
.chart-output {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.chart-output.chart-1 {
    bottom: 0%;
    left: 0%;
    animation-delay: 1.5s;
    animation-fill-mode: both;
}

.chart-output.chart-2 {
    bottom: 0%;
    right: 0%;
    animation-delay: 2s;
    animation-fill-mode: both;
}

.chart-output.chart-3 {
    bottom: 0%;
    left: 30%;
    transform: translateX(-50%);
    animation-delay: 2.5s;
    animation-fill-mode: both;
}

.chart-output.chart-4 {
    bottom: 0%;
    left: 70%;
    transform: translateX(-50%);
    animation-delay: 3s;
    animation-fill-mode: both;
}

.chart-container {
    width: 100px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: end;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(29, 12, 70, 0.1);
}

.chart-label {
    font-size: 10px;
    font-weight: 500;
    color: #6b5b7a;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(29, 12, 70, 0.1);
}

/* Chart Types */
.chart-bars {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 100%;
    width: 100%;
}

.bar {
    flex: 1;
    background: #1d0c46;
    border-radius: 1px;
    animation: growUp 1s ease-out;
}

.line-chart {
    position: relative;
    width: 100%;
    height: 100%;
}

.line-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #1d0c46;
    transform: translateY(-50%);
    animation: drawLine 1s ease-out;
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.point {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #1d0c46;
    border-radius: 50%;
    animation: appear 0.5s ease-out;
}

.point:nth-child(1) { top: 20%; left: 10%; animation-delay: 0.2s; }
.point:nth-child(2) { top: 40%; left: 30%; animation-delay: 0.4s; }
.point:nth-child(3) { top: 60%; left: 50%; animation-delay: 0.6s; }
.point:nth-child(4) { top: 30%; left: 70%; animation-delay: 0.8s; }
.point:nth-child(5) { top: 50%; left: 90%; animation-delay: 1s; }

.pie-chart {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: conic-gradient(
        #1d0c46 0deg 120deg,
        rgba(29, 12, 70, 0.6) 120deg 240deg,
        rgba(29, 12, 70, 0.3) 240deg 360deg
    );
    animation: rotate 2s linear infinite;
}

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

.kpi-value {
    font-size: 16px;
    font-weight: 700;
    color: #1d0c46;
    line-height: 1;
}

.kpi-label {
    font-size: 10px;
    color: #6b5b7a;
    margin-top: 2px;
}

.kpi-trend {
    font-size: 10px;
    color: #4ade80;
    font-weight: 600;
    margin-top: 2px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    25% { transform: translateY(-10px) translateX(5px); opacity: 1; }
    50% { transform: translateY(-5px) translateX(-5px); opacity: 0.8; }
    75% { transform: translateY(-15px) translateX(3px); opacity: 0.9; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes expand {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes flow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

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

@keyframes growUp {
    from { height: 0; }
    to { height: 100%; }
}

@keyframes drawLine {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes appear {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}



/* Content Sections */
.custom-dashboards-page .track-everything,
.custom-dashboards-page .intelligence-engine,
.custom-dashboards-page .empower-teams,
.custom-dashboards-page .effortless-creation {
    padding: 100px 0 !important;
    margin: 0 !important;
}

.custom-dashboards-page .track-everything {
    background: #ffffff !important;
}

.custom-dashboards-page .intelligence-engine {
    background: #DDE2EE !important;
}

.custom-dashboards-page .effortless-creation {
    background: #ffffff !important;
}

.custom-dashboards-page .empower-teams {
    background: #DDE2EE !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    overflow: hidden;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1d0c46;
    line-height: 1.3;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    hyphens: auto;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b5b7a;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tracking Columns */
.tracking-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.tracking-column {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
    overflow: hidden;
    word-wrap: break-word;
}

.tracking-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d0c46;
}

.tracking-column p {
    color: #6b5b7a;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.tracking-column ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.tracking-column li {
    color: #6b5b7a;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.tracking-column li::before {
    content: "•";
    color: #1d0c46;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tracking Visuals */
.tracking-visual {
    margin-top: 24px;
}

.heatmap-visual {
    background: rgba(29, 12, 70, 0.05);
    border-radius: 12px;
    padding: 24px;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    height: 80px;
}

.heatmap-cell {
    border-radius: 4px;
}

.heatmap-cell.high {
    background: #1d0c46;
}

.heatmap-cell.medium {
    background: rgba(29, 12, 70, 0.5);
}

.heatmap-cell.low {
    background: rgba(29, 12, 70, 0.2);
}

.sankey-visual {
    background: rgba(29, 12, 70, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    min-width: 400px;
    overflow-x: visible;
}

.sankey-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
}

.flow-node {
    background: #1d0c46;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.flow-path {
    width: 16px;
    height: 2px;
    background: #1d0c46;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.flow-path::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #1d0c46;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Intelligence Features */
.intelligence-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intelligence-feature {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.intelligence-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 12, 70, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #1d0c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.intelligence-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d0c46;
}

.intelligence-feature p {
    color: #6b5b7a;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Cards */
.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 12, 70, 0.15);
}

.team-icon {
    width: 60px;
    height: 60px;
    background: #1d0c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.team-icon i {
    font-size: 24px;
    color: white;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d0c46;
}

.team-card p {
    color: #6b5b7a;
    line-height: 1.6;
    font-size: 1rem;
}

/* Creation Content */
.creation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.creation-visual {
    display: flex;
    justify-content: center;
}

.drag-drop-demo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.sidebar {
    background: rgba(29, 12, 70, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    font-size: 14px;
    color: #6b5b7a;
    cursor: grab;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(2px);
}

.sidebar-item i {
    color: #1d0c46;
}

.canvas {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-placeholder {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(29, 12, 70, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b5b7a;
    font-size: 14px;
    transition: all 0.3s ease;
}

.widget-placeholder:hover {
    border-color: #1d0c46;
    background: rgba(29, 12, 70, 0.02);
}

.widget-placeholder i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1d0c46;
}

/* Creation Steps */
.creation-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1d0c46;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 16px;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d0c46;
}

.step-content p {
    color: #6b5b7a;
    line-height: 1.6;
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1d0c46;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.125rem;
    color: #6b5b7a;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #1d0c46;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 12, 70, 0.3);
}

.cta-button:hover {
    background: #2d1c56;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 12, 70, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tracking-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    
    .creation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-hero .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .data-source.source-1 {
        left: 8%;
        top: 5%;
    }
    
    .data-source.source-2 {
        right: 8%;
        top: 5%;
    }
    
    .chart-output.chart-1 {
        left: 0%;
        bottom: 12%;
    }
    
    .chart-output.chart-2 {
        right: 0%;
        bottom: 12%;
    }
    
    .chart-output.chart-3 {
        left: 40%;
        bottom: 0%;
    }
    
    .chart-output.chart-4 {
        left: 60%;
        bottom: 0%;
    }
}

@media (max-width: 768px) {
    .dashboard-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .dashboard-hero .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .dashboard-hero .hero-text .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .data-source {
        transform: scale(0.6);
    }
    
    .data-source.source-1 {
        left: 0%;
        top: 0%;
    }
    
    .data-source.source-2 {
        right: 0%;
        top: 0%;
    }
    
    .chart-output {
        transform: scale(0.5);
    }
    
    .chart-output.chart-1 {
        left: 0%;
        bottom: 0%;
    }
    
    .chart-output.chart-2 {
        right: 0%;
        bottom: 0%;
    }
    
    .chart-output.chart-3 {
        left: 30%;
        bottom: 0%;
    }
    
    .chart-output.chart-4 {
        left: 70%;
        bottom: 0%;
    }
    
    .central-processor {
        transform: translate(-50%, -50%) scale(0.6);
    }
    
    .data-icon {
        width: 35px;
        height: 35px;
    }
    
    .data-icon i {
        font-size: 14px;
    }
    
    .processor-core {
        width: 40px;
        height: 40px;
    }
    
    .processor-core i {
        font-size: 16px;
    }
    
    .chart-container {
        width: 60px;
        height: 45px;
    }
    
    .chart-label {
        font-size: 8px;
    }
    
    .track-everything,
    .intelligence-engine,
    .empower-teams,
    .effortless-creation {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .intelligence-features,
    .team-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tracking-column,
    .intelligence-feature,
    .team-card {
        padding: 20px;
    }
    
    .sankey-visual {
        padding: 8px;
        height: 40px;
        min-width: 280px;
        overflow-x: auto;
        width: 100%;
    }
    
    .sankey-flow {
        gap: 4px;
        flex-wrap: nowrap;
        min-width: 260px;
        width: 100%;
    }
    
    .flow-node {
        padding: 1px 3px;
        font-size: 7px;
        border-radius: 3px;
        flex-shrink: 0;
    }
    
    .flow-path {
        width: 4px;
        flex-shrink: 0;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .drag-drop-demo {
        grid-template-columns: 1fr;
        height: 400px;
    }
    
    .sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding: 16px;
    }
    
    .sidebar-item {
        flex-shrink: 0;
        min-width: 120px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .dashboard-hero .container,
    .section-header,
    .tracking-columns,
    .intelligence-features,
    .team-cards,
    .creation-content,
    .cta-content {
        padding: 0 16px;
    }
    
    .dashboard-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .dashboard-hero .hero-text .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 350px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .data-source {
        transform: scale(0.5);
    }
    
    .data-source.source-1 {
        left: 0%;
        top: 0%;
    }
    
    .data-source.source-2 {
        right: 0%;
        top: 0%;
    }
    
    .chart-output {
        transform: scale(0.4);
    }
    
    .chart-output.chart-1 {
        left: 0%;
        bottom: 0%;
    }
    
    .chart-output.chart-2 {
        right: 0%;
        bottom: 0%;
    }
    
    .chart-output.chart-3 {
        left: 30%;
        bottom: 0%;
    }
    
    .chart-output.chart-4 {
        left: 70%;
        bottom: 0%;
    }
    
    .central-processor {
        transform: translate(-50%, -50%) scale(0.5);
    }
    
    .data-icon {
        width: 30px;
        height: 30px;
    }
    
    .data-icon i {
        font-size: 12px;
    }
    
    .processor-core {
        width: 35px;
        height: 35px;
    }
    
    .processor-core i {
        font-size: 14px;
    }
    
    .chart-container {
        width: 45px;
        height: 30px;
    }
    
    .tracking-column,
    .intelligence-feature,
    .team-card {
        padding: 16px;
    }
    
    .sankey-visual {
        padding: 6px;
        height: 35px;
        min-width: 250px;
        overflow-x: auto;
        width: 100%;
    }
    
    .sankey-flow {
        gap: 3px;
        flex-wrap: nowrap;
        min-width: 230px;
        width: 100%;
    }
    
    .flow-node {
        padding: 1px 2px;
        font-size: 6px;
        border-radius: 2px;
        flex-shrink: 0;
    }
    
    .flow-path {
        width: 3px;
        flex-shrink: 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .chart-widget,
    .table-widget {
        grid-column: span 1;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}