/* DataNXT Website - Home Page Specific Styles */



/* Partners Section - Home Specific */
.partners {
    background: #f8fafc;             /* Subtle background like Unique.ai */
    padding: var(--space-12) 0;       /* 96px - Unique.ai level prominence */
    position: relative;
    margin: var(--space-8) 0;         /* Additional visual separation */
}

.partners-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 2.5rem;                    /* Slightly tighter gap for better centering */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: float 20s ease-in-out infinite;
    width: 100%;                    /* Full width to ensure proper centering */
    padding: 0 1rem;                /* Add padding to prevent edge cutoff */
}

.partner-logo {
    opacity: 1;                     /* Fully visible - no transparency */
    transition: var(--transition);
    height: 80px;                   /* Even bigger for better visibility */
    display: flex;
    align-items: center;
    justify-content: center;        /* Center the content inside each logo */
    padding: var(--space-3);        /* 24px - generous padding */
    border-radius: 12px;            /* Rounder, more modern */
    background: rgba(255, 255, 255, 0.1);  /* Light background for contrast */
    filter: none;                   /* Remove grayscale - show full colors */
    min-width: 120px;               /* Minimum width for consistent sizing */
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);          /* Slightly more pronounced hover */
    background: rgba(255, 255, 255, 0.2);  /* Brighter hover background */
    box-shadow: var(--shadow-medium);
}

.partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);          /* Show full colors - no graying out */
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Solutions Section - Home Specific */
.solutions {
    background: var(--white);
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));  /* Wider cards like Unique.ai */
    gap: var(--space-5);               /* 40px - Unique.ai generous spacing */
    margin-top: var(--space-10);       /* 80px - dramatic section separation */
}

/* Solution Icon - Home Specific */
.solution-icon {
    width: 64px;                        /* Increased size for better visibility */
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
    flex-shrink: 0;
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.solution-icon:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white) !important;
    fill: var(--white) !important;
    stroke: var(--white) !important;
    z-index: 2;
    position: relative;
    display: block;
    margin: auto;
}

.solution-icon svg * {
    stroke: var(--white) !important;
    fill: none !important;
    color: var(--white) !important;
}

/* Enhanced solution cards with blue line hover effect */
.solution-card {
    background: var(--white);
    padding: var(--space-6);           /* 48px - Unique.ai generous padding */
    border-radius: 16px;               /* Premium radius for luxury feel */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);  /* Softer, more expensive shadow */
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);  /* Subtle border */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

.solution-card:hover::before {
    opacity: 1;
}

/* Stats Section - Home Specific */
.stats {
    background: var(--white);
    padding: var(--space-6) 0;        /* 48px - consistent section spacing */
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 3rem 2rem;                /* Increased from 48px - much larger frame */
    border-radius: 16px;               /* Premium radius */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);  /* Luxury shadow like Unique.ai */
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 180px;                 /* Added minimum height to prevent cutoff */
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;                /* Increased from 1.875rem - much larger text */
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;              /* Increased margin */
    display: block;
    line-height: 1.2;                 /* Better line height for larger text */
}

.stat-label {
    font-size: 1.125rem;              /* Slightly increased from 1rem */
    color: var(--deep-atlantic-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;                 /* Better spacing */
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Market Applications Section */
.market-applications {
    background: var(--mist-grey);
    padding: var(--space-6) 0;
    position: relative;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.market-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

.market-card:hover::before {
    opacity: 1;
}

.market-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.market-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-atlantic-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.market-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.market-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(23, 104, 212, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.market-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--deep-atlantic-blue);
    margin-bottom: 1rem;
}

.market-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Research Background Section - Home Specific */
.research-background {
    background: linear-gradient(135deg, var(--deep-atlantic-blue) 0%, var(--royal-wave-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.research-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 145, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.research-background .section-header {
    position: relative;
    z-index: 2;
}

.research-background .section-title {
    color: var(--white);
}

.research-background .section-title::after {
    background: var(--gold-signal);
}

.research-background .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.research-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.research-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.research-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.research-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.3);
}

.research-card:hover::before {
    opacity: 1;
}

.research-icon {
    width: 32px;                    /* Research-validated icon size */
    height: 32px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.research-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.research-icon:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.research-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.research-card h3 {
    color: var(--deep-atlantic-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.research-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Value Proposition Section - Home Specific */
.value-prop {
    background: var(--white);
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-content h2 {
    font-size: 1.625rem;              /* 26px - balanced H2 hierarchy */
    margin-bottom: 1.5rem;
    color: var(--deep-atlantic-blue);
}

.value-list {
    list-style: none;
    margin: 1.5rem 0;
}

.value-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-light);
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verdant-rise-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.value-cta {
    margin-top: 2rem;
}

.value-image {
    position: relative;
}

.value-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Platform Mockup Styles - Home Specific */
.platform-mockup {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    border: 1px solid rgba(0, 188, 212, 0.1);
    transition: var(--transition);
}

.platform-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 58, 116, 0.2);
}

.mockup-header {
    background: linear-gradient(135deg, var(--deep-atlantic-blue) 0%, var(--royal-wave-blue) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-dots span:first-child {
    background: var(--alert-red);
}

.mockup-dots span:nth-child(2) {
    background: var(--gold-signal);
}

.mockup-dots span:last-child {
    background: var(--verdant-rise-green);
}

.mockup-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    background: var(--mist-grey);
    width: 120px;
    padding: 1rem 0;
    border-right: 1px solid rgba(23, 104, 212, 0.1);
}

.sidebar-item {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-item.active {
    background: rgba(23, 104, 212, 0.1);
    color: var(--royal-wave-blue);
    border-left-color: var(--royal-wave-blue);
    font-weight: 500;
}

.sidebar-item:hover {
    background: rgba(23, 104, 212, 0.05);
    color: var(--royal-wave-blue);
}

.mockup-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-placeholder {
    text-align: center;
    width: 100%;
}

.chart-bars {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    justify-content: center;
    height: 120px;
    margin-bottom: 1rem;
}

.bar {
    width: 20px;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    animation: growBar 1.5s ease-out;
}

.bar:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

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

/* Graph Network Visualization */
.graph-network-container {
    position: relative;
    padding: 2.5rem 2rem;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 166, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 159, 28, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.99) 100%);
    border-radius: 16px;
    min-height: 360px;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(23, 104, 212, 0.08);
}

/* Graph Connections */
.graph-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Graph Labels */
.graph-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--deep-atlantic-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 3;
    padding: 0.3rem 0.6rem;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.95));
    border-radius: 12px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(23, 104, 212, 0.08);
    backdrop-filter: blur(5px);
}

.label-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.label-text {
    font-size: 0.7rem;
}

/* Graph Nodes */
.graph-node {
    position: absolute;
    width: 95px;
    height: 75px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid rgba(23, 104, 212, 0.12);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.graph-node:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.graph-node.active {
    border-color: var(--success-color);
    background: linear-gradient(135deg, rgba(45, 166, 110, 0.05), var(--white));
}

.graph-node.ready {
    border-color: var(--success-color);
    background: linear-gradient(135deg, rgba(45, 166, 110, 0.08), var(--white));
}

.graph-node.generating {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.08), var(--white));
    animation: nodeGlow 2s infinite ease-in-out;
}

.graph-node.processing {
    border-color: var(--royal-wave-blue);
    background: linear-gradient(135deg, rgba(23, 104, 212, 0.08), var(--white));
}

/* Node Glow Effects */
.node-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.graph-node.active .node-glow {
    background: linear-gradient(135deg, rgba(45, 166, 110, 0.3), rgba(45, 166, 110, 0.1));
    opacity: 1;
}

.graph-node.ready .node-glow {
    background: linear-gradient(135deg, rgba(45, 166, 110, 0.4), rgba(45, 166, 110, 0.1));
    opacity: 1;
}

.graph-node.generating .node-glow {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.4), rgba(255, 159, 28, 0.1));
    opacity: 1;
    animation: glowPulse 2s infinite ease-in-out;
}

.graph-node:hover .node-glow {
    opacity: 1;
}

/* Node Content */
.node-content {
    padding: 0.6rem 0.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.node-icon {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.node-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--deep-atlantic-blue);
    margin-bottom: 0.15rem;
    line-height: 1.1;
}

.node-metric, .node-status {
    font-size: 0.6rem;
    font-weight: 500;
}

.node-metric {
    color: var(--success-color);
    background: rgba(45, 166, 110, 0.1);
    padding: 0.1rem 0.3rem;
    border-radius: 6px;
}

.node-status {
    color: var(--text-light);
}

.output-node.ready .node-status {
    color: var(--success-color);
}

.output-node.generating .node-status {
    color: var(--accent-color);
}

/* AI Processing Node */
.ai-node {
    width: 130px;
    height: 110px;
    border-color: var(--royal-wave-blue);
    background: 
        radial-gradient(circle at center, rgba(23, 104, 212, 0.05) 0%, rgba(23, 104, 212, 0.02) 50%, var(--white) 100%);
    box-shadow: 
        0 12px 35px rgba(23, 104, 212, 0.15),
        0 4px 15px rgba(23, 104, 212, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

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

.ai-ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border: 2px solid rgba(23, 104, 212, 0.15);
    border-radius: 50%;
    border-top-color: var(--royal-wave-blue);
    border-right-color: rgba(45, 166, 110, 0.4);
    animation: rotateRing 4s linear infinite;
}

.ai-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 159, 28, 0.2);
    border-radius: 50%;
    border-bottom-color: var(--accent-color);
    border-left-color: rgba(23, 104, 212, 0.3);
    animation: rotateRing 6s linear infinite reverse;
}

.ai-center {
    position: relative;
    width: 50px;
    height: 50px;
    background: 
        linear-gradient(135deg, var(--gradient-primary), var(--royal-wave-blue)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(23, 104, 212, 0.4),
        0 2px 8px rgba(23, 104, 212, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-icon {
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-icon img {
    width: 32px;
    height: auto;
    max-height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.ai-label {
    font-size: 0.48rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1;
    letter-spacing: 0.02em;
}

.ai-modules {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    z-index: 4;
}

.module-tag {
    position: absolute;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
    border-radius: 10px;
    border: 1.5px solid rgba(23, 104, 212, 0.08);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.module-tag.active {
    color: var(--success-color);
    border-color: rgba(45, 166, 110, 0.2);
    background: 
        linear-gradient(135deg, rgba(45, 166, 110, 0.08), rgba(255, 255, 255, 0.95));
    box-shadow: 
        0 4px 12px rgba(45, 166, 110, 0.1),
        0 1px 3px rgba(45, 166, 110, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.module-tag.processing {
    color: var(--accent-color);
    border-color: rgba(255, 159, 28, 0.25);
    background: 
        linear-gradient(135deg, rgba(255, 159, 28, 0.08), rgba(255, 255, 255, 0.95));
    animation: moduleGlow 2s infinite ease-in-out;
    box-shadow: 
        0 4px 12px rgba(255, 159, 28, 0.15),
        0 1px 3px rgba(255, 159, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.module-tag:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Graph Network Animations */
@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes nodeGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 159, 28, 0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(255, 159, 28, 0.3);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes moduleGlow {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(255, 159, 28, 0.15),
            0 1px 3px rgba(255, 159, 28, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    50% {
        box-shadow: 
            0 6px 18px rgba(255, 159, 28, 0.25),
            0 2px 6px rgba(255, 159, 28, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
}


@keyframes growBar {
    from {
        height: 0;
    }
    to {
        height: inherit;
    }
}

/* Use Cases Section - Home Specific */
.use-cases {
    background: var(--white);
    position: relative;
}

.use-cases-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced timeline items with same styling as solution cards */
.use-cases-timeline .timeline-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(23, 104, 212, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 420px;
}

.use-cases-timeline .timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 8px 8px 0 0;
}

.use-cases-timeline .timeline-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

.use-cases-timeline .timeline-item:hover::before {
    opacity: 1;
}

.use-cases-timeline .timeline-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-cases-timeline .timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(23, 104, 212, 0.2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.use-cases-timeline .timeline-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.use-cases-timeline .timeline-item:hover .timeline-number::before {
    transform: translateX(100%);
}

.use-cases-timeline .timeline-title {
    font-size: 1.4rem;
    color: var(--deep-atlantic-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.use-cases-timeline .timeline-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}



/* Animations - Home Specific */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hero Scroll Indicator - Home Specific */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--white);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    border-color: var(--gold-signal);
    transform: rotate(-45deg) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

.scroll-arrow:hover {
    animation-play-state: paused;
}



/* Responsive Design for Home Page */
@media (max-width: 1200px) {
    .use-cases-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 800px;
    }
    
    .use-cases-timeline .timeline-item {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .market-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-cases-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-cases-timeline .timeline-item {
        padding: 2rem 1.5rem;
    }
    
    .use-cases-timeline .timeline-title {
        font-size: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partners-track {
        gap: 2rem;
    }
    
    .research-content {
        grid-template-columns: 1fr;
    }
    
    .platform-mockup {
        margin: 0 -1rem;
    }
    
    .mockup-content {
        flex-direction: column;
        min-height: 250px;
    }
    
    .mockup-sidebar {
        width: 100%;
        padding: 0.5rem 0;
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(0, 188, 212, 0.1);
    }
    
    .sidebar-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.5rem 1rem;
    }
    
    .sidebar-item.active {
        border-left: none;
        border-bottom-color: var(--royal-wave-blue);
    }
    
    .mockup-main {
        padding: 1.5rem;
    }
    
    .chart-bars {
        height: 80px;
    }

    /* Graph Network Mobile Styles */
    .graph-network-container {
        padding: 1rem 0.75rem;
        min-height: 250px;
    }

    .graph-connections {
        transform: scale(0.85);
        transform-origin: center;
    }

    .graph-node {
        width: 75px;
        height: 60px;
    }

    .node-icon {
        font-size: 1.1rem;
        margin-bottom: 0.15rem;
    }

    .node-label {
        font-size: 0.65rem;
        margin-bottom: 0.1rem;
    }

    .node-metric, .node-status {
        font-size: 0.55rem;
    }

    .ai-node {
        width: 95px;
        height: 75px;
    }

    .ai-ring {
        width: 42px;
        height: 42px;
    }

    .ai-center {
        width: 35px;
        height: 35px;
    }

    .ai-icon {
        font-size: 1rem;
    }

    .ai-icon img {
        width: 28px;
        max-height: 28px;
    }

    .ai-label {
        font-size: 0.45rem;
    }

    .module-tag {
        font-size: 0.5rem;
        padding: 0.1rem 0.25rem;
    }

    .graph-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    
    .container {
        padding: 0 1rem;
    }
    
    .solution-card,
    .research-card {
        padding: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .market-card {
        padding: 2rem 1.5rem;
    }
    
    .market-cta {
        padding: 2rem 1.5rem;
    }
    
    .market-cta h3 {
        font-size: 1.5rem;
    }
    
    .platform-mockup {
        margin: 0 -0.5rem;
    }
    
    .mockup-header {
        padding: 0.75rem 1rem;
    }
    
    .mockup-title {
        font-size: 0.8rem;
    }
    
    .chart-bars {
        height: 60px;
        gap: 0.25rem;
    }
    
    .bar {
        width: 16px;
    }

    /* Graph Network Ultra Mobile Styles */
    .graph-network-container {
        padding: 0.75rem 0.5rem;
        min-height: 220px;
    }

    .graph-connections {
        transform: scale(0.75);
    }

    .graph-node {
        width: 65px;
        height: 50px;
    }

    .node-content {
        padding: 0.4rem 0.3rem;
    }

    .node-icon {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }

    .node-label {
        font-size: 0.6rem;
        margin-bottom: 0.05rem;
    }

    .node-metric, .node-status {
        font-size: 0.5rem;
    }

    .ai-node {
        width: 85px;
        height: 65px;
    }

    .ai-ring {
        width: 38px;
        height: 38px;
    }

    .ai-center {
        width: 30px;
        height: 30px;
    }

    .ai-icon {
        font-size: 0.9rem;
        margin-bottom: 0.05rem;
    }

    .ai-icon img {
        width: 24px;
        max-height: 24px;
    }

    .ai-label {
        font-size: 0.4rem;
    }

    .ai-modules {
        top: -6px;
        gap: 0.2rem;
    }

    .module-tag {
        font-size: 0.45rem;
        padding: 0.08rem 0.2rem;
    }

    .graph-label {
        font-size: 0.65rem;
    }
} 