/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Aeonik', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

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

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}

.nav-cta {
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #333;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Three-Card Hero Section */
.hero-redesign {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Headline Section */
.headline-section {
    text-align: center;
    margin-bottom: 30px;
}

.main-headline {
    font-size: 3.5rem;
    margin-top: 1em;
    font-weight: 700;
    line-height: 1.1;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 8px 20px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 980px;
    font-size: 18px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    margin-top: 1em;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #1a1a1a;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: #86868b;
    margin: 0;
}

/* Triptych Grid */
.triptych-grid {
    display: flex;
    gap: 16px;
    margin-top: 60px;
    justify-content: center;
}

/* Glass-Morphism Panels */
.triptych-panel {
    position: relative;
    border-radius: 0px;
    padding: 32px;
    min-height: 500px;
    overflow: hidden;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-01{
    width: 330px;
    background-image: url('./assets/panel-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-02{
    width: 430px;
    background-image: url('./assets/panel-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.panel-03{
    width: 600px;
    background-image: url('./assets/panel-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for better text contrast */
.panel-01::before,
.panel-02::before,
.panel-03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.triptych-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.panel-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-content {
    position: relative;
    z-index: 2;
}

.panel-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 436px;
}

/* Panel 01 Styles */
.panel-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    display: block;
}

.panel-heading {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
}

.panel-description {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 24px;
    color: white;
}

/* Panel 01 - Absolute positioning */
.panel-01 .panel-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.panel-01 .panel-heading {
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin: 0 0 12px 0;
    font-size: 1.5rem;
}

.panel-01 .panel-description {
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin: 0 0 20px 0;
    max-width: 280px;
    font-size: 1rem;
    line-height: 1.4;
}

.panel-01 .panel-ctas {
    margin: 0;
}

.panel-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    font-size: 1rem;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-label {
    margin-left: 12px;
    font-size: 0.75rem;
    opacity: 0.7;
}

.panel-ctas {
    display: flex;
    gap: 12px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    background: transparent;
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .feature-visual-dashboard {
      margin-left: -1em;
    }
  }

/* Panel 02 Styles */
.panel-02 .panel-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 436px;
}

.feature-links {
    margin-top: 100px;
    list-style: none;
    padding: 0;
}

.feature-links li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 0.9rem;
    font-weight: 400 !important;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Panel 03 Styles */
.stat-display {
    margin-top: auto;
}

.stat-value {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
    color: white;
}

.stat-label {
    font-size: 1.125rem;
    margin-top: 8px;
    color: white;
}

.stat-detail {
    font-size: 0.875rem;
    margin-top: 4px;
    opacity: 0.7;
    color: white;
}

/* Gradient Overlays */
.panel-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gradient-01 {
    background: radial-gradient(60% 80% at 0% 0%, rgba(255, 255, 255, 0.7), transparent),
                radial-gradient(80% 60% at 100% 100%, rgba(216, 180, 254, 0.4), transparent);
}

.gradient-02 {
    background: conic-gradient(from 180deg at 50% 50%,
                rgba(253, 186, 116, 0.25),
                rgba(147, 197, 253, 0.25),
                rgba(216, 180, 254, 0.25),
                transparent);
}

.gradient-03 {
    background: radial-gradient(80% 60% at 70% 30%, rgba(147, 197, 253, 0.35), transparent),
                radial-gradient(70% 80% at 30% 70%, rgba(216, 180, 254, 0.35), transparent);
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Card Specific Styling */
.card-01 {
    background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
}

.card-02 {
    background: linear-gradient(135deg, #ffe4e6 0%, #fef2f2 100%);
}

.card-03 {
    background: linear-gradient(135deg, #f3e8ff 0%, #faf5ff 100%);
}

.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.card-visual {
    margin: 30px 0;
    position: relative;
    min-height: 200px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.card-features span {
    font-size: 0.875rem;
    color: #666;
    padding: 4px 0;
}

/* Card Visual Styles */
.data-sources-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.source-icon {
    font-size: 2rem;
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.source-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.mini-metric {
    text-align: center;
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
}

.mini-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
}

.mini-label {
    font-size: 0.75rem;
    color: #666;
}

.mini-chart {
    height: 60px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    padding: 8px;
}

.trend-line {
    width: 100%;
    height: 100%;
}

.alerts-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-icon {
    font-size: 1.25rem;
}

.alert-text {
    font-size: 0.875rem;
    color: #1d1d1f;
    font-weight: 500;
}

/* Metrics Overlay */
.metrics-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    display: block;
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: #86868b;
    margin-top: 4px;
}

.feature-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-display.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.feature-display.exiting {
    opacity: 0;
    transform: scale(1.05) translateY(-20px);
}

/* Dashboard Feature Styles */
.dashboard-preview {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
}

.charts-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.chart-area, .heatmap-area {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 240px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto repeat(4, 1fr);
    gap: 4px;
    flex: 1;
}

.heatmap-day {
    font-size: 10px;
    color: #6b7280;
    text-align: center;
    padding: 4px;
}

.heatmap-cell {
    height: 16px;
    border-radius: 2px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.heatmap-cell.animate {
    opacity: 1;
    transform: scale(1);
}

.heatmap-cell.low { background: #22c55e; }
.heatmap-cell.medium { background: #eab308; }
.heatmap-cell.high { background: #f59e0b; }

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

.metric-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: none;
    transform: translateY(20px);
    opacity: 0;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.metric-trend {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.metric-trend.down {
    background: #fee2e2;
    color: #dc2626;
}

.metric-trend.stable {
    background: #f3f4f6;
    color: #6b7280;
}

.chart-area {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-container {
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
}

.performance-chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease;
}

.chart-line.animate {
    stroke-dashoffset: 0;
}

/* Chat Feature Styles */
.chat-preview {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.charts-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profit-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.profit-label, .expense-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.profit-value, .expense-value {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.revenue-sources {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.donut-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
}

.donut-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 6px solid;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.donut-ring.animate {
    opacity: 1;
    transform: scale(1);
}

.donut-ring.teal { border-color: #14b8a6; }
.donut-ring.blue { border-color: #3b82f6; }
.donut-ring.purple { border-color: #a855f7; }

.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #000;
}

.revenue-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.legend-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.teal {
    background: #14b8a6;
}

.legend-dot.blue {
    background: #3b82f6;
}

.legend-dot.purple {
    background: #a855f7;
}

.legend-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.margin-breakdown {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.margin-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.margin-bar {
    height: 12px;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s ease;
}

.margin-bar.animate {
    opacity: 1;
    transform: scaleX(1);
}

.margin-bar.purple { background: #a855f7; width: 24%; }
.margin-bar.green { background: #10b981; width: 28%; }
.margin-bar.blue { background: #3b82f6; width: 64%; }

.margin-label {
    font-size: 11px;
    color: #6b7280;
}

.chat-header {
    display: grid;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.chat-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.chat-status {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.user-message {
    background: #3b82f6;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.ai-message {
    background: #f1f5f9;
    color: #000;
    align-self: flex-start;
}

.chat-input {
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.chat-input input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    background: #f8fafc;
}

/* Context Feature Styles */
.context-preview {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-sources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
}

.data-source-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.data-source-card.animate {
    transform: translateY(0);
    opacity: 1;
}

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

.source-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.source-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.source-desc {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}

.context-header {
    text-align: center;
}

.context-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.context-header p {
    font-size: 14px;
    color: #666;
}

.context-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
}

.focus-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip.selected {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Feed Feature Styles */
.feed-preview {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.feed-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.alert-badge {
    background: #ef4444;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

.alert-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    transform: translateX(20px);
    opacity: 0;
}

.alert-item.high-priority {
    border-left-color: #ef4444;
}

.alert-item.medium-priority {
    border-left-color: #f59e0b;
}

.alert-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.alert-desc {
    font-size: 12px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .monitor-screen {
        width: 99vw;
        margin: 0 0.5vw;
    }
    
    .screen-content {
        grid-template-rows: auto 1fr;
    }
    
    .top-content {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .bottom-showcase {
        min-height: 400px;
    }
    
    .data-sources-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
    }
    
    .chart-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-preview,
    .chat-preview,
    .context-preview,
    .feed-preview {
        padding: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .monitor-screen {
        width: 99vw;
        margin: 0 0.5vw;
    }
    
    .left-content {
        padding: 30px 15px;
    }
    
    .dashboard-preview,
    .chat-preview,
    .context-preview,
    .feed-preview {
        padding: 15px;
    }
}

.hero-content {
    max-width: 1500px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
    display: inline-block;
}

.highlight {
    color: #667eea !important;
    font-weight: 700;
}

.ml4 {
    position: relative;
    font-weight: 700;
    font-size: inherit;
    display: inline-block;
    min-height: 1em; /* ensure container has height for absolutely-positioned children */
}

/* Ensure dynamic hero text doesn't overflow on small screens */
.hero-title .ml4 {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    height: 1.2em; /* match approx line height so text is visible */
}

.ml4 .letters {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    right: 0;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #000;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 8px 20px;
    background: #f5f5f5;
    color: #000;
    text-decoration: none;
    border-radius: 980px;
    font-size: 18px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #000;
    cursor: pointer;
    margin-top: 1em;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #e5e5e5;
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-white {
    background: white;
    color: #000;
    border: 2px solid white;
}

.btn-white:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.hero-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
    font-weight: 300;
}


/* Animation Components */
.dashboard-animation {
    background: transparent;
    padding: 0;
    min-height: 400px;
    position: relative;
}

.live-feed-animation {
    background: transparent;
    border-radius: 20px;
    padding: 30px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.ai-chat-animation {
    background: transparent;
    border-radius: 20px;
    min-height: 750px;
    position: relative;
    overflow: hidden;
}

.context-ai-animation {
    background: transparent;
    border-radius: 20px;
    padding: 30px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Live Feed Animation Styles */
.live-feed-container {
    max-width: 500px;
    margin: 0 auto;
}

.alert-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #facc15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.alert-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.status-pills {
    display: flex;
    gap: 8px;
}

.status-pill {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.status-pill.animate {
    opacity: 1;
    transform: scale(1);
}

.status-pill.alert {
    background: #facc15;
    color: #000;
}

.status-pill.high {
    background: #ec4899;
    color: white;
}

.status-pill.medium {
    background: #f97316;
    color: white;
}

.alert-time {
    font-size: 11px;
    color: #999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alert-time.animate {
    opacity: 1;
}

.alert-category {
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alert-category.animate {
    opacity: 1;
}

.alert-title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.alert-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.alert-description {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.alert-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.alert-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.stat-badge.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-badge.current {
    background: #fef3c7;
    color: #92400e;
}

.stat-badge.avg {
    background: #e5e7eb;
    color: #374151;
}

.health-score {
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.health-score.animate {
    opacity: 1;
}

.health-score-title {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
}

.health-score-desc {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
}

.health-score-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.health-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.health-tag.animate {
    opacity: 1;
    transform: scale(1);
}

.health-tag.current {
    background: #ef4444;
    color: white;
}

.health-tag.avg {
    background: #6b7280;
    color: white;
}

.why-matters {
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-matters.animate {
    opacity: 1;
}

.why-matters-title {
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}

.why-matters-desc {
    font-size: 13px;
    color: #000;
}

.next-steps {
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.next-steps.animate {
    opacity: 1;
}

.next-steps-title {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
}

.next-steps-list {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
}

.next-step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.next-step-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.next-step-title {
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}

.next-step-desc {
    font-size: 12px;
    color: #000;
    margin-bottom: 8px;
}

.explore-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.explore-btn.animate {
    opacity: 1;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-tags.animate {
    opacity: 1;
}

.footer-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.footer-tag.animate {
    opacity: 1;
    transform: scale(1);
}

.footer-tag.white {
    background: white;
    color: #333;
}

.footer-tag.blue {
    background: #3b82f6;
    color: white;
}

/* Alert Progress Indicators */
.alert-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: #3b82f6;
    transform: scale(1.3);
}

.progress-dot:hover {
    background: rgba(59, 130, 246, 0.6);
}

/* AI Chat Animation Styles */
.ai-chat-container {
    display: flex;
    gap: 24px;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.charts-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.charts-row {
    display: flex;
    gap: 12px;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease;
}

.chart-container.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.chart-title {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
}

.performance-chart {
    height: 200px;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-width: 2;
    fill: none;
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: all 1.5s ease;
}

.chart-line.animate {
    opacity: 1;
    stroke-dashoffset: 0;
}

.chart-line.yellow {
    stroke: #facc15;
}

.chart-line.pink {
    stroke: #ec4899;
}

.chart-point {
    opacity: 0;
    transition: all 0.2s ease;
}

.chart-point.animate {
    opacity: 1;
}

.month-labels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #999;
    padding: 0 4px;
}

.month-label {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.month-label.animate {
    opacity: 1;
}

.profit-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease;
}

.profit-card.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.profit-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.profit-value {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.expense-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.expense-value {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.revenue-sources {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease;
}

.revenue-sources.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.donut-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
}

.donut-chart {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 1;
}

.donut-segment {
    opacity: 0;
    transform-origin: center;
    transition: all 1s ease;
}

.donut-segment.animate {
    opacity: 1;
}

.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #000;
    z-index: 2;
    pointer-events: none;
}

.margin-breakdown {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease;
}

.margin-breakdown.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.margin-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.margin-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.margin-bar {
    height: 16px;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s ease;
}

.margin-bar.animate {
    opacity: 1;
    transform: scaleX(1);
}

.margin-bar.purple {
    background: #a855f7;
    width: 24%;
}

.margin-bar.green {
    background: #10b981;
    width: 28%;
}

.margin-bar.blue {
    background: #3b82f6;
    width: 64%;
}

.margin-label {
    font-size: 11px;
    color: #999;
}

.chat-column-placeholder {
    flex: 2;
    min-height: 600px;
    visibility: hidden;
}

.chat-column {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 2;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease;
    height: fit-content;
}

.chat-column.initial-position {
    position: absolute;
    left: 30%;
    top: 0;
    width: 256px;
    height: auto;
    max-height: 90vh;
    transform: translate(-130%, 0) scale(1);
    opacity: 0;
    z-index: 100;
    transition: all 0.8s ease;
    overflow-y: auto;
    overflow-x: visible;
}

.chat-column.pop-in {
    animation: popIn 0.6s ease-out forwards;
}


.chat-column.slide-right {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0) scale(1);
    opacity: 1;
    z-index: 1;
}

.chat-column.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.chat-header {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 12px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.chat-header.animate {
    opacity: 1;
    transform: translateX(0);
}

.chat-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.chat-subtitle {
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.chat-time {
    font-size: 11px;
    color: #666;
}

.user-query {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin-left: 16px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.user-query.animate {
    opacity: 1;
    transform: translateY(0);
}

.query-text {
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.query-time {
    font-size: 10px;
    color: #666;
}

.analysis-section {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 12px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.analysis-section.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.analysis-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.analysis-icon.blue {
    background: #3b82f6;
}

.analysis-icon.green {
    background: #10b981;
}

.analysis-title {
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.analysis-text {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.analysis-text.animate {
    opacity: 1;
}

.chat-input {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 12px;
    margin-top: auto;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.chat-input.animate {
    opacity: 1;
    transform: translateY(0);
}

.input-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-field {
    flex: 1;
    background: transparent;
    border: none;
    color: #000;
    font-size: 12px;
    outline: none;
}

.input-field::placeholder {
    color: #999;
}

.send-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
}


/* Context AI Animation Styles */
.context-ai-container {
    max-width: 700px;
    margin: 0 auto;
}

.arrow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    padding-top: 8px;
}

.arrow-label {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}

.arrow-label.animate {
    opacity: 1;
    transform: translateY(0);
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #a855f7;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.2s ease;
}

.arrow-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.arrow-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #a855f7, #3b82f6, #a855f7);
    border-radius: 1px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.35s ease;
}

.arrow-line.animate {
    opacity: 1;
    transform: scaleY(1);
}

/* Tile Grid Styles */
.tile-grid-container {
    padding-top: 8px;
}

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

.context-tile {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.context-tile.animate {
    opacity: 1;
    transform: translateY(0);
}

.context-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tile-header {
    margin-bottom: 12px;
}

.tile-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tile-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    font-size: 10px;
    color: #666;
    text-transform: capitalize;
}

.tile-content {
    margin-bottom: 12px;
    flex-grow: 1;
}

.tile-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tile-description {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.tile-files {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.tile-file {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.file-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
}

.file-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.file-icon.pdf {
    background: rgba(239, 68, 68, 0.15);
}

.file-icon.pdf::before {
    background: #ef4444;
}

.file-icon.text {
    background: rgba(34, 197, 94, 0.15);
}

.file-icon.text::before {
    background: #22c55e;
}

.file-icon.image {
    background: rgba(59, 130, 246, 0.15);
}

.file-icon.image::before {
    background: #3b82f6;
}

.file-name {
    font-size: 11px;
    color: #444;
    font-family: 'Monaco', 'Courier New', monospace;
}

.tile-footer {
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tile-date {
    font-size: 10px;
    color: #999;
}




/* Dashboard Animation Styles */
.dashboard-grid {
    display: grid;
    gap: 20px;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.metric-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.metric-name {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.metric-value {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.dashboard-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    margin-bottom: 20px;
}

.labour-chart {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.labour-chart.animate {
    opacity: 1;
    transform: translateY(0);
}

.labour-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.labour-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.labour-bar {
    background: #3b82f6;
    border-radius: 4px 4px 0 0;
    width: 32px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s ease;
}

.labour-bar.animate {
    opacity: 1;
    transform: scaleY(1);
}

.heatmap {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.heatmap.animate {
    opacity: 1;
    transform: translateY(0);
}

.heatmap-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto repeat(3, 1fr);
    gap: 4px;
}

.heatmap-day {
    font-size: 10px;
    color: #999;
    text-align: center;
    margin-bottom: 4px;
}

.heatmap-cell {
    height: 16px;
    border-radius: 2px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.heatmap-cell.animate {
    opacity: 1;
    transform: scale(1);
}

.heatmap-cell.low { background: #22c55e; }
.heatmap-cell.medium { background: #eab308; }
.heatmap-cell.high { background: #f59e0b; }

.trend-analysis {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.trend-analysis.animate {
    opacity: 1;
    transform: translateY(0);
}

.trend-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.trend-chart {
    height: 60px;
    position: relative;
    margin-top: 10px;
}

.trend-svg {
    width: 100%;
    height: 100%;
}

.trend-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.5s ease;
}

.trend-line.animate {
    stroke-dashoffset: 0;
}

.trend-line.revenue {
    stroke: #facc15;
}

.trend-line.transactions {
    stroke: #ec4899;
}

.trend-line.upsell {
    stroke: #a855f7;
}


.top-products {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.top-products.animate {
    opacity: 1;
    transform: translateY(0);
}

.products-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.product-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.product-name {
    font-size: 12px;
    color: #666;
    flex: 1;
    margin-right: 10px;
}

.product-units {
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

/* Data Analysis Section */
.data-analysis {
    padding: 120px 0;
    background: #ffff;
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-out;
}

.data-analysis.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.data-analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.data-analysis-image {
    height: 800px;
    width: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.data-analysis-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, #f0f0f0, transparent);
    z-index: 2;
    pointer-events: none;
}

.data-analysis-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to top, #f0f0f0, transparent);
    z-index: 2;
    pointer-events: none;
}

.data-analysis-text {
    text-align: left;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.data-analysis-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Aeonik', 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.data-analysis-bg {
    position: absolute;
    top: -8%;
    left: 0;
    width: 100%;
    height: 222%;
    background: url('assets/mobile-dash.png');
    background-size: 100% 150%;
    background-position: center 0%;
    background-repeat: no-repeat;
    will-change: background-position;
    border-radius: 20px;
}

.data-analysis-video {
    height: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto;
    order: 2;
}

.data-analysis-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-analysis-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

/* Video Section Styles */
.video-section {
    padding: 120px 0;
    background: #f0f0f0;
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-out;
}

.video-section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-section-text {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    order: 1;
}

.video-section-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.video-section-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 20px 0 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-section-video {
    height: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto;
    order: 2;
}

.video-section-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-section-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

/* Mission Control Video Styles */
.mission-control-video-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.mission-control-video-container video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}


.data-analysis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

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

/* Supplier Insights Section */
.supplier-insights {
    padding: 100px 0;
    background: #f8fafc;
}

.supplier-insights-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: headerFadeIn 0.8s ease-out forwards;
}

@keyframes headerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.supplier-insights-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.supplier-insights-header h3 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.supplier-insights-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.supplier-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card entrance animation */
.supplier-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeInUp 0.8s ease-out forwards;
}

.supplier-card:nth-child(1) {
    animation-delay: 0.1s;
}

.supplier-card:nth-child(2) {
    animation-delay: 0.2s;
}

.supplier-card:nth-child(3) {
    animation-delay: 0.3s;
}

.supplier-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.supplier-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.supplier-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.08);
}

.supplier-card.highlight-card {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(16, 185, 129, 0.1);
}

.supplier-card.highlight-card:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25), 0 4px 12px rgba(16, 185, 129, 0.15);
    border-color: #059669;
}

.card-header {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.card-value {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

.savings-value {
    color: #10b981;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    font-weight: 500;
}

.trend-chart {
    width: 100%;
    height: 80px;
    margin: 16px 0;
    overflow: visible;
}

.trend-line {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Graph Animation Styles */
.trend-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    opacity: 0;
    transition: all 0.3s ease;
}

.trend-path.animate {
    animation: drawLine 1.5s ease-out forwards;
}

.supplier-card:hover .trend-path {
    filter: drop-shadow(0 0 4px currentColor);
    opacity: 1;
}

.trend-area {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trend-area.animate {
    animation: fadeInArea 1s ease-out 0.5s forwards;
}

.supplier-card:hover .trend-area {
    opacity: 0.15 !important;
}

.trend-dot {
    opacity: 0;
    transform-origin: center;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.trend-dot.animate {
    animation: dotFadeInUp 0.6s ease-out forwards;
}

.supplier-card:hover .trend-dot {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: translateY(0) scale(1.1);
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

@keyframes dotFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-metric {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    font-variant-numeric: tabular-nums;
}

.metric-period {
    font-size: 14px;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 4px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    transition: color 0.3s ease;
}

.supplier-card:hover .card-title {
    color: #1f2937;
}

/* Responsive Design for Supplier Cards */
@media (max-width: 1200px) {
    .supplier-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .supplier-insights {
        padding: 60px 0;
    }
    
    .supplier-insights-header h2 {
        font-size: 36px;
    }
    
    .supplier-insights-header h3 {
        font-size: 24px;
    }
    
    .supplier-insights-header p {
        font-size: 16px;
    }
    
    .supplier-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-value {
        font-size: 40px;
    }
}

/* Rewards Section */
.rewards-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.rewards-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: headerFadeIn 0.8s ease-out 0.2s forwards;
}

.rewards-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rewards-description {
    font-size: 20px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.6;
    font-weight: 500;
}

.rewards-subtext {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Rewards Cards Grid */
.rewards-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.reward-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 480px;
}

.reward-card.points-card {
    animation: cardSlideUp 0.8s ease-out 0.4s forwards;
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.reward-card.credits-card {
    animation: cardSlideUp 0.8s ease-out 0.6s forwards;
}

.reward-card.perks-card {
    animation: cardSlideUp 0.8s ease-out 0.8s forwards;
}

.reward-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.reward-card.points-card:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

/* Reward Icon */
.reward-icon-wrapper {
    margin-bottom: 24px;
    position: relative;
}

.reward-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.reward-icon svg {
    width: 32px;
    height: 32px;
}

.reward-card:hover .reward-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.credits-card .reward-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.credits-card:hover .reward-icon {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.perks-card .reward-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.perks-card:hover .reward-icon {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

/* Reward Content */
.reward-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.reward-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Reward List Section */
.reward-list-section {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.reward-list-title {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 12px;
}

.reward-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.reward-list li {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    padding: 8px 0 8px 24px;
    position: relative;
    transition: all 0.2s ease;
}

.reward-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

.reward-card:hover .reward-list li {
    color: #374151;
}

.reward-card:hover .reward-list li:before {
    transform: scale(1.2);
}

.credits-card .reward-list li:before {
    color: #3B82F6;
}

.perks-card .reward-list li:before {
    color: #F59E0B;
}

/* Reward Badge */
.reward-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Integrations Section within Rewards */
.rewards-integrations {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.integrations-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.integration-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.integration-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-badge:hover {
    background: white;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Animations */
@keyframes cardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .rewards-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .rewards-section {
        padding: 60px 0;
    }
    
    .rewards-header h2 {
        font-size: 36px;
    }
    
    .rewards-description {
        font-size: 18px;
    }
    
    .reward-card {
        padding: 32px 24px;
    }
    
    .reward-title {
        font-size: 20px;
    }
    
    .example-value {
        font-size: 28px;
    }
}

/* Real Results Section */
.results-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: headerFadeIn 0.8s ease-out 0.2s forwards;
}

.results-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.result-item:nth-child(1) {
    animation: resultFadeIn 0.6s ease-out 0.4s forwards;
}

.result-item:nth-child(2) {
    animation: resultFadeIn 0.6s ease-out 0.6s forwards;
}

.result-item:nth-child(3) {
    animation: resultFadeIn 0.6s ease-out 0.8s forwards;
}

.result-item:nth-child(4) {
    animation: resultFadeIn 0.6s ease-out 1s forwards;
}

.result-item:hover {
    transform: translateX(5px);
}

.result-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.result-icon svg {
    width: 24px;
    height: 24px;
}

.result-item:hover .result-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.result-text {
    font-size: 18px;
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    padding-top: 12px;
}

@keyframes resultFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Automation Section */
.automation-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.automation-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: headerFadeIn 0.8s ease-out 0.2s forwards;
}

.automation-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.automation-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

/* Product Card Simple */
.product-card-simple {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideUp 0.8s ease-out 0.4s forwards;
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.trend-icon {
    width: 60px;
    height: 40px;
    flex-shrink: 0;
}

.product-name {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Price Info */
.price-info {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.average-cost {
    color: #ca4f30;
}

.current-price {
    color: #000;
}

/* Suppliers List */
.suppliers-list {
    margin-top: 32px;
}

.suppliers-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.supplier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.supplier-item:last-child {
    margin-bottom: 0;
}

.supplier-item.best-deal {
    background: #d1fae5;
    border: 1px solid #10b981;
}

.supplier-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.supplier-price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.supplier-price {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
    font-variant-numeric: tabular-nums;
}

.supplier-item:not(.best-deal) .supplier-price {
    color: #000;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
}

/* Responsive Design for Results and Automation */
@media (max-width: 768px) {
    .results-section {
        padding: 60px 0;
    }
    
    .results-header h2 {
        font-size: 36px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .result-text {
        font-size: 16px;
    }
    
    .automation-section {
        padding: 60px 0;
    }
    
    .automation-header h2 {
        font-size: 32px;
    }
    
    .automation-header p {
        font-size: 16px;
    }
    
    .product-card-simple {
        padding: 24px;
    }
    
    .product-name {
        font-size: 24px;
    }
    
    .price-value {
        font-size: 20px;
    }
    
    .supplier-name {
        font-size: 16px;
    }
    
    .supplier-price {
        font-size: 18px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.feature-section {
    margin-bottom: 120px;
}

.feature-section:last-child {
    margin-bottom: 0;
}

/* AI Brain Diagram */
.ai-brain-diagram {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
}

.data-container {
    position: absolute;
    background: white;
    border: 1px solid;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 3;
    width: 120px;
    height: 40px;
}


.csv-container {
    border-color: #ef4444;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-140px);
}

.excel-container {
    border-color: #3b82f6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(100px, -100px);
}

.goals-container {
    border-color: #10b981;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(140px);
}

.events-container {
    border-color: #f59e0b;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-100px, -100px);
}

.weather-container {
    border-color: #8b5cf6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(100px, 100px);
}

.traffic-container {
    border-color: #06b6d4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-100px, 100px);
}

.container-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    white-space: nowrap;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ai-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    width: 120px;
}

.brain-circle {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.brain-icon {
    position: relative;
    z-index: 2;
}

.brain-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.ai-brain-diagram {
    position: relative;
    border: 1px solid transparent;
    background: conic-gradient(
        from 0deg,
        #20B2AA,
        #40E0D0,
        #8A2BE2,
        #20B2AA,
        #40E0D0,
        #8A2BE2,
        #20B2AA
    );
    background-clip: border-box;
    border-radius: 50%;
    padding: 2px;
}

.ai-brain-diagram::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: conic-gradient(
        from 0deg,
        #20B2AA,
        #40E0D0,
        #8A2BE2,
        #20B2AA,
        #40E0D0,
        #8A2BE2,
        #20B2AA
    );
    border-radius: 50%;
    animation: rotateGlow 4s linear infinite;
    z-index: -1;
}

.ai-brain-diagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 50%;
    z-index: 2;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 80vw;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.feature-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-content.reverse .feature-text {
    order: 2;
}

.feature-content.reverse .feature-visual {
    order: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Prevent shifting during AI chat animation */
.feature-content.ai-chat-section {
    position: relative;
}

.feature-content.ai-chat-section .feature-text {
    position: relative;
    z-index: 5;
}

.feature-content.ai-chat-section .feature-visual {
    position: relative;
    min-height: 600px;
}

.feature-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}


/* Customer Profile Visual */
.customer-profile {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin: 0 auto;
}

.profile-image {
    text-align: center;
    margin-bottom: 20px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.tag-engaged {
    background: #10b981;
}

.tag-weekend {
    background: #6b7280;
}

.tag-frequent {
    background: #8b5cf6;
}

.tag-visa {
    background: #3b82f6;
}

.order-history {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.order-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-name {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.order-price {
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

.order-custom {
    font-size: 12px;
    color: #64748b;
}

/* Chat Conversation Visual */
.chat-conversation {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    max-width: 80%;
    padding: 16px 20px;
    border-radius: 20px;
    position: relative;
}

.chat-left {
    background: #f1f5f9;
    align-self: flex-start;
    border-bottom-left-radius: 8px;
}

.chat-right {
    background: #14b8a6;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Mission Control Dashboard Visual */
.mission-control-dashboard {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 24px;
}

.dashboard-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

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

.insight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.insight-card.positive {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.insight-card.warning {
    background: #fffbeb;
    border-color: #fed7aa;
}

.insight-card.info {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.insight-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.insight-title {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.insight-desc {
    font-size: 12px;
    color: #64748b;
}

/* Focus Section */
.focus {
    padding: 100px 0;
    background: #fafafa;
}

.focus-content {
    max-width: 1200px;
    margin: 0 auto;
}

.focus-header {
    text-align: left;
    margin-bottom: 40px;
}

.focus-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.focus-text {
    text-align: right;
    margin-bottom: 60px;
}

.focus-text p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
}

/* Search Interface */
.search-interface {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.search-header {
    margin-bottom: 30px;
}

.brand-logo {
    margin-bottom: 16px;
}

.logo-icon {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.search-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.search-bar-container {
    margin-bottom: 30px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #000;
    background: transparent;
}

.search-input::placeholder {
    color: #64748b;
}

.search-icon {
    font-size: 18px;
    color: #64748b;
    margin-left: 12px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-result {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.search-result:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.result-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.result-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.result-icon.linkedin {
    background: #0077b5;
    color: white;
}

.result-icon.gmail {
    background: #ea4335;
    color: white;
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.result-title {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.result-preview {
    height: 2px;
    background: #e2e8f0;
    border-radius: 1px;
    width: 100%;
}

.result-time {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    flex-shrink: 0;
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: #fafafa;
}

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

.integrations-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.integrations-text p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.integrations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

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

.logo-square {
    font-size: 18px;
    font-weight: 700;
    color: #00d4aa;
}

.logo-xero {
    font-size: 18px;
    font-weight: 700;
    color: #13b5ea;
}

.logo-google {
    font-size: 18px;
    font-weight: 700;
    color: #4285f4;
}

.logo-weather {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.logo-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: #f8fafc;
}

.brands .section-header h2 {
    font-size: 2rem;
    color: #64748b;
    font-weight: 500;
}

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

.brand-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-name {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.brand-location {
    display: block;
    font-size: 14px;
    color: #64748b;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.cta .btn-primary {
    background: #2563eb;
    color: white;
}

.cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #475569;
}

.cta .btn-outline:hover {
    background: #475569;
    border-color: #64748b;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .context-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .context-tile {
        aspect-ratio: auto;
        min-height: 200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
        height: 6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        max-width: 92vw;
        margin: 0 auto;
    }
    
    .feature-content.reverse {
        grid-template-columns: 1fr !important;
    }
    
    .feature-content.reverse .feature-text,
    .feature-content.reverse .feature-visual {
        order: unset;
    }
    
    .feature-text h2 {
        font-size: 2rem;
    }
    
    /* AI Chat Mobile Layout */
    .ai-chat-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .charts-column {
        flex: none;
        width: 100%;
    }
    
    .charts-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .chart-container {
        width: 100%;
    }
    
    .profit-card {
        width: 100%;
    }
    
    .chat-column {
        flex: none;
        width: 100%;
    }
    
    /* Animation containers mobile styles */
    .live-feed-animation,
    .context-ai-animation {
        padding: 20px;
        min-height: auto;
    }
    
    .live-feed-container,
    .context-ai-container {
        max-width: 100%;
        padding: 0;
    }
    
    .context-tiles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .context-tile {
        padding: 16px;
        min-height: 180px;
    }
    
    .customer-profile {
        max-width: 100%;
        padding: 20px;
    }
    
    .chat-conversation {
        max-width: 100%;
    }
    
    .mission-control-dashboard {
        max-width: 100%;
        padding: 20px;
    }
    
    .integrations-logos {
        gap: 20px;
    }
    
    .integration-logo {
        min-width: 100px;
        padding: 15px;
    }
    
    .focus-header h2 {
        font-size: 2rem;
    }
    
    .focus-text {
        text-align: left;
    }
    
    .focus-text p {
        max-width: 100%;
        margin-left: 0;
    }
    
    .search-interface {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    
    .data-analysis {
        padding: 60px 0;
    }
    
    .data-analysis-text h2 {
        font-size: 2.5rem;
        letter-spacing: 0;
        text-align: center;
    }
    
    .data-analysis-image {
        height: 400px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0;
        max-width: 90%;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        height: 4.8rem;
    }
    
    .data-analysis {
        padding: 80px 0;
    }
    
    .data-analysis-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .data-analysis-text {
        order: 1;
        text-align: center;
    }
    
    .data-analysis-image {
        order: 2;
        height: 600px;
        width: 110%;
        aspect-ratio: 9/16;
        margin: 0 -5%;
    }
    
    .data-analysis-bg {
        background-size: contain;
        background-position: center top;
    }
    
    .data-analysis-text h2 {
        font-size: 2.5rem;
        letter-spacing: -0.01em;
        text-align: center;
    }
    
    .features, .brands, .cta {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Mobile-specific adjustments for animation sections */
    .live-feed-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .alert-card {
        padding: 16px;
    }
    
    .ai-chat-container {
        gap: 12px;
    }
    
    .chart-container,
    .profit-card,
    .revenue-sources,
    .margin-breakdown {
        padding: 16px;
    }
    
    .chat-column {
        padding: 16px;
    }
    
    .context-ai-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .context-tiles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .context-tile {
        padding: 16px;
        aspect-ratio: auto;
        min-height: 180px;
    }
    
    .tile-title {
        font-size: 14px;
    }
    
    .tile-description {
        font-size: 11px;
    }
    
    /* Animation containers mobile styles */
    .live-feed-animation,
    .context-ai-animation {
        padding: 20px;
        min-height: auto;
    }
    
    .live-feed-container,
    .context-ai-container {
        max-width: 100%;
        padding: 0;
    }
    
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .brand-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.feature-card, .brand-item, .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Three-Card Hero Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .main-headline {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .triptych-grid {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
    }
    
    .triptych-panel {
        padding: 24px;
        min-height: 400px;
    }
    
    .panel-01,
    .panel-02,
    .panel-03 {
        width: 100% !important;
    }
    
    .panel-heading {
        font-size: 1.875rem;
    }
    
    .stat-value {
        font-size: 4rem;
    }
    
    .journey-card {
        min-height: 400px;
        padding: 30px;
    }
    
    .data-sources-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .mini-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .metrics-overlay {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 2rem;
    }
    
    .journey-card {
        padding: 20px;
        min-height: 350px;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .data-sources-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .source-icon {
        font-size: 1.5rem;
        padding: 12px;
    }
}

/* ============================================
   SUPPLIERS PAGE STYLES
   ============================================ */

/* Suppliers Hero Section */
.suppliers-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.suppliers-hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.suppliers-hero-subheading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.suppliers-cta {
    display: inline-block;
    padding: 16px 32px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 980px;
    font-size: 18px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.suppliers-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #1a1a1a;
}

/* Suppliers Section Styles */
.suppliers-what-section,
.suppliers-workflow-section {
    padding: 100px 0;
    background: #ffffff;
}

.suppliers-what-content,
.suppliers-workflow-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.suppliers-section-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.suppliers-section-subheading {
    font-size: 1.375rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.suppliers-section-body {
    font-size: 1.125rem;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section */
.suppliers-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.suppliers-benefits-section .suppliers-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.suppliers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.supplier-benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.supplier-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.supplier-benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.benefit-card-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefit-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.benefit-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card-list li {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.benefit-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

/* How it Works Section */
.suppliers-how-section {
    padding: 100px 0;
    background: #ffffff;
}

.suppliers-how-section .suppliers-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.suppliers-steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.supplier-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
}

.supplier-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 80px;
    width: 2px;
    height: calc(100% + 48px);
    background: linear-gradient(180deg, #667eea 0%, transparent 100%);
    opacity: 0.3;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.step-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

/* Venues Section */
.suppliers-venues-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.suppliers-venues-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.suppliers-venues-content .suppliers-section-heading {
    margin-bottom: 24px;
}

.suppliers-venues-content .suppliers-section-subheading {
    margin-bottom: 48px;
}

.insights-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.insight-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.insight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

.insight-icon svg {
    width: 24px;
    height: 24px;
}

.insight-item span {
    font-size: 0.9375rem;
    color: #333;
    text-align: center;
    font-weight: 500;
}

/* Workflow Section */
.suppliers-workflow-section {
    background: #ffffff;
}

/* Succeed Section */
.suppliers-succeed-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.suppliers-succeed-section .suppliers-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.suppliers-succeed-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.succeed-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.succeed-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.succeed-icon svg {
    width: 20px;
    height: 20px;
}

.succeed-item span {
    font-size: 1.125rem;
    color: #333;
    font-weight: 500;
}

/* Partner Section */
.suppliers-partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
    color: #ffffff;
}

.suppliers-partner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.suppliers-partner-section .suppliers-section-heading {
    color: #ffffff;
    margin-bottom: 24px;
}

.suppliers-partner-section .suppliers-section-subheading {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.suppliers-partner-section .suppliers-cta {
    background: #ffffff;
    color: #000000;
}

.suppliers-partner-section .suppliers-cta:hover {
    background: #f5f5f5;
    transform: translateY(-2px) scale(1.02);
}

/* Responsive Design for Suppliers Page */
@media (max-width: 1024px) {
    .suppliers-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-examples {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .suppliers-succeed-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .suppliers-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .suppliers-hero-heading {
        font-size: 2.5rem;
    }
    
    .suppliers-hero-subheading {
        font-size: 1.25rem;
    }
    
    .suppliers-section-heading {
        font-size: 2rem;
    }
    
    .suppliers-section-subheading {
        font-size: 1.125rem;
    }
    
    .suppliers-what-section,
    .suppliers-workflow-section,
    .suppliers-benefits-section,
    .suppliers-how-section,
    .suppliers-venues-section,
    .suppliers-succeed-section,
    .suppliers-partner-section {
        padding: 60px 0;
    }
    
    .supplier-benefit-card {
        padding: 32px 24px;
    }
    
    .suppliers-steps-container {
        gap: 40px;
    }
    
    .supplier-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .supplier-step:not(:last-child)::after {
        display: none;
    }
    
    .insights-examples {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .suppliers-hero-heading {
        font-size: 2rem;
    }
    
    .suppliers-hero-subheading {
        font-size: 1.125rem;
    }
    
    .suppliers-section-heading {
        font-size: 1.75rem;
    }
    
    .benefit-card-title {
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .supplier-benefit-card {
        padding: 24px 20px;
    }
}

/* Terms and Conditions Page */
.terms-section {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 100vh;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.terms-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 50px;
    margin-bottom: 24px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.terms-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.terms-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-top: 32px;
    margin-bottom: 16px;
}

.terms-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.terms-content .terms-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.terms-content .terms-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.terms-content .terms-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.terms-content strong {
    font-weight: 600;
    color: #1d1d1f;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-content {
        padding: 0 20px;
    }
    
    .terms-content h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .terms-content h2 {
        font-size: 1.5rem;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .terms-content h3 {
        font-size: 1.125rem;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .terms-content p,
    .terms-content .terms-list li {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .terms-content h1 {
        font-size: 1.75rem;
    }
    
    .terms-content h2 {
        font-size: 1.25rem;
    }
    
    .terms-content h3 {
        font-size: 1rem;
    }
}
