:root {
    --primary: #10B981;
    --primary-light: #34D399;
    --primary-dark: #059669;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-orange: #F59E0B;
    --accent-rose: #F43F5E;
    --accent-cyan: #06B6D4;
    --ai-gradient: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 50%, #10B981 100%);
    --ai-glow: rgba(139, 92, 246, 0.5);
    --hold-green: #22C55E;
    --sell-red: #EF4444;
    --dark: #0B1120;
    --dark-surface: #111827;
    --dark-card: #1F2937;
    --dark-elevated: #374151;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #10B981 0%, #3B82F6 50%, #8B5CF6 100%);
    --gradient-hold: linear-gradient(135deg, #10B981 0%, #22C55E 100%);
    --gradient-sell: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}


body {
    font-family: var(--font-body) !important;
    background: #0B1120 !important;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(11, 17, 32, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--ai-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text span {
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-badge-nav {
    background: var(--ai-gradient);
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-primary {
    background: var(--ai-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-purple);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--ai-gradient);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ai-chip svg {
    width: 12px;
    height: 12px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 .gradient-text {
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 480px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* AI Search Box */
.search-box {
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
    position: relative;
}

.search-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--ai-gradient);
    border-radius: 2px;
}

.search-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-ai-icon {
    padding: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-ai-icon svg {
    color: var(--accent-purple);
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    padding: 0.5rem;
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-btn {
    background: var(--ai-gradient);
    color: var(--white);
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.search-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.85rem;
    background: rgba(139, 92, 246, 0.05);
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.hero-feature svg {
    color: var(--accent-purple);
    width: 16px;
    height: 16px;
}

/* ========================================
           DASHBOARD ILLUSTRATION
           ======================================== */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.dashboard-illustration {
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Dashboard Header */
.dash-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.dash-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dot.red {
    background: #EF4444;
}

.dash-dot.yellow {
    background: #F59E0B;
}

.dash-dot.green {
    background: #10B981;
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-300);
}

.dash-title svg {
    width: 16px;
    height: 16px;
    color: var(--accent-purple);
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

/* Dashboard Body */
.dash-body {
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
}

/* Left Column */
.dash-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Property Hero Card */
.property-hero-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.property-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.property-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.875rem;
}

.property-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.property-info p {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.property-value {
    text-align: right;
}

.property-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.property-change {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: var(--primary);
}

.property-change svg {
    width: 12px;
    height: 12px;
}

/* Property Image Placeholder */
.property-image {
    height: 80px;
    background: linear-gradient(135deg, var(--dark-elevated) 0%, var(--dark-surface) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.property-image-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.house-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.house-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-purple);
}

.property-badges {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.prop-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    color: var(--gray-400);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.prop-badge svg {
    width: 10px;
    height: 10px;
}

/* Chart Section */
.chart-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.875rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.chart-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chart-title .ai-tag {
    background: var(--ai-gradient);
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.55rem;
    font-weight: 700;
}

.chart-legend {
    display: flex;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    color: var(--gray-500);
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.legend-dot.actual {
    background: var(--primary);
}

.legend-dot.predicted {
    background: var(--accent-purple);
}

/* SVG Chart */
.chart-container {
    height: 100px;
    position: relative;
}

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

.chart-grid-line {
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1;
}

.chart-area {
    fill: url(#areaGradient);
}

.chart-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-line-predicted {
    fill: none;
    stroke: var(--accent-purple);
    stroke-width: 2;
    stroke-dasharray: 4 3;
    stroke-linecap: round;
}

.chart-dot {
    fill: var(--primary);
    stroke: var(--dark-card);
    stroke-width: 2;
}

.chart-dot-predicted {
    fill: var(--accent-purple);
    stroke: var(--dark-card);
    stroke-width: 2;
}

.prediction-zone {
    fill: rgba(139, 92, 246, 0.1);
}

.chart-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent-purple);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
}

/* Right Column */
.dash-right {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

/* AI Recommendation Card */
.ai-rec-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 0.875rem;
    position: relative;
}

.ai-rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.ai-rec-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gradient-hold);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-rec-badge svg {
    width: 14px;
    height: 14px;
}

.ai-confidence {
    text-align: right;
}

.confidence-label {
    font-size: 0.55rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confidence-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.ai-rec-reason {
    font-size: 0.7rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.ai-rec-reason strong {
    color: var(--primary);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem;
    position: relative;
}

.metric-card::before {
    content: 'AI';
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.5rem;
    background: var(--ai-gradient);
    color: white;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: 700;
}

.metric-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.metric-icon svg {
    width: 14px;
    height: 14px;
}

.metric-icon.purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.metric-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary);
}

.metric-icon.blue {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
}

.metric-icon.orange {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
}

.metric-label {
    font-size: 0.6rem;
    color: var(--gray-500);
    margin-bottom: 0.15rem;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
}

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

.metric-value.purple {
    color: var(--accent-purple);
}

.metric-value.blue {
    color: var(--accent-blue);
}

.metric-value.orange {
    color: var(--accent-orange);
}

/* Map Section */
.map-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem;
    flex-grow: 1;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.map-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-300);
}

.map-legend {
    display: flex;
    gap: 0.5rem;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.55rem;
    color: var(--gray-500);
}

.map-legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 2px;
}

.map-legend-dot.res {
    background: var(--primary);
}

.map-legend-dot.com {
    background: var(--accent-blue);
}

.map-legend-dot.dev {
    background: var(--accent-orange);
}

/* SVG Map */
.map-container {
    height: 80px;
    position: relative;
}

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

.map-grid {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 0.5;
}

.map-zone {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.map-zone:hover {
    opacity: 1;
}

.map-zone.residential {
    fill: var(--primary);
}

.map-zone.commercial {
    fill: var(--accent-blue);
}

.map-zone.development {
    fill: var(--accent-orange);
}

.map-marker {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.map-marker-ring {
    fill: none;
    stroke: var(--accent-purple);
    stroke-width: 1;
    opacity: 0.5;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        r: 8;
        opacity: 0.5;
    }

    50% {
        r: 12;
        opacity: 0;
    }
}

/* Bottom Stats Row */
.dash-bottom {
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-stats {
    display: flex;
    gap: 1.5rem;
}

.bottom-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bottom-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-stat-icon svg {
    width: 14px;
    height: 14px;
}

.bottom-stat-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
}

.bottom-stat-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
}

.bottom-stat-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
}

.bottom-stat-content {
    display: flex;
    flex-direction: column;
}

.bottom-stat-value {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.bottom-stat-label {
    font-size: 0.6rem;
    color: var(--gray-500);
}

.ai-powered-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--accent-purple);
}

.ai-powered-tag svg {
    width: 14px;
    height: 14px;
    animation: aiPulse 2s ease-in-out infinite;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.1);
    animation: floatElement 5s ease-in-out infinite;
}

.floating-element.el-1 {
    top: -15px;
    right: -15px;
    animation-delay: 0s;
}

.floating-element.el-2 {
    bottom: 60px;
    left: -25px;
    animation-delay: -2s;
}

.floating-element.el-3 {
    bottom: -10px;
    right: 100px;
    animation-delay: -3.5s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.float-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.float-icon {
    width: 24px;
    height: 24px;
    background: var(--ai-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.float-tag {
    background: var(--ai-gradient);
    color: white;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 700;
}

.float-label {
    font-size: 0.6rem;
    color: var(--gray-500);
}

.float-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
}

.float-value.green {
    color: var(--primary);
}

.float-value.purple {
    color: var(--accent-purple);
}

.float-value.blue {
    color: var(--accent-blue);
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent-purple);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 650px;
    margin: 0 auto;
}

/* AI Features Section */
.ai-features {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.ai-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.ai-feature-card {
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ai-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ai-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.ai-feature-card:hover::before {
    transform: scaleX(1);
}

.ai-feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ai-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    color: var(--accent-purple);
}

.ai-feature-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
    color: var(--accent-cyan);
}

.ai-feature-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    color: var(--primary);
}

.ai-feature-icon.orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    color: var(--accent-orange);
}

.ai-feature-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    color: var(--accent-blue);
}

.ai-feature-icon.rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.05));
    color: var(--accent-rose);
}

.ai-tag {
    background: var(--ai-gradient);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ai-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ai-feature-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-feature-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.ai-stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-purple);
}

.ai-stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: var(--dark-surface);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
}

/* CTA */
.cta {
    padding: 8rem 2rem;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ai-gradient);
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: var(--ai-gradient);
    filter: blur(100px);
    opacity: 0.2;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--ai-gradient);
    border-color: transparent;
    color: var(--white);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

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

    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .search-inner {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .floating-element {
        display: none;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .bottom-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
}