/* ========================================
   CLARIGEN AI - MODERN CLEAN DESIGN
   Inspired by Razorpay's clean aesthetics
   ======================================== */

/* CSS Variables for Modern Fintech Color Palette */
:root {
    /* Primary Colors - Clean & Modern */
    --primary-blue: #2563EB;
    --primary-indigo: #3B82F6;
    --primary-purple: #7C3AED;
    --primary-dark: #1E293B;
    --primary-black: #0F172A;
    --primary-white: #FFFFFF;
    --primary-gray: #64748B;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-section: linear-gradient(135deg, #FAFAFC 0%, #FFFFFF 100%);

    /* Accent Colors */
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-orange: #F59E0B;
    --accent-blue: #3B82F6;

    /* Neutral Colors */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Animations */
    --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   KARMICDD BRAND HIGHLIGHTING
   ======================================== */

.karmicdd-brand {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
    position: relative;
    padding: 0 4px;
}

.karmicdd-brand::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    border-radius: 1px;
    opacity: 0.7;
}

.karmicdd-highlight {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    padding: 0 4px;
    font-size: 1.1em;
}

.karmicdd-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    border-radius: 2px;
    opacity: 0.8;
}

/* KarmicDD Icon Styling */
.karmicdd-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.karmicdd-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--primary-white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* ========================================
   NAVIGATION - CLEAN & MODERN
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition-all);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-brand {
    text-decoration: none;
}

.nav-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-brand .brand-logo i {
    font-size: 1.4rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.nav-brand .brand-logo img {
    height: 32px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.nav-brand .brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nav-brand .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
    white-space: nowrap;
}

.nav-brand .brand-tagline {
    font-size: 0.6rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: -1px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-all);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-all);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .btn {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-all);
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta .btn:hover {
    background: var(--primary-indigo);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition-all);
}

.nav-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-all);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--gray-200);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
        text-align: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    .nav-cta .btn {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   HERO SECTION - MODERN & CLEAN
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-purple), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-indigo), transparent);
    bottom: 20%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--primary-indigo);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-indigo);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-all);
    border: none;
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--primary-white);
}

.btn-primary:hover {
    background: var(--primary-indigo);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Button Sizes */
.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-medium {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
    border-radius: 7px;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    border-radius: 10px;
}

/* Button Variants */
.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-subtle {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.btn-subtle:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.hero-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-white);
}

.dashboard-title i {
    color: var(--primary-blue);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse 2s infinite;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-all);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.metric-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header span:first-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-white);
}

.chart-trend {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 2rem;
    height: 120px;
}

.bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: var(--transition-all);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
}

.bar.traditional {
    background: linear-gradient(to top, var(--accent-red), #DC2626);
}

.bar.clarigen {
    background: linear-gradient(to top, var(--primary-blue), var(--primary-purple));
}

.bar-label {
    font-size: 0.7rem;
    color: var(--primary-white);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.25rem;
}

.bar-value {
    font-size: 0.8rem;
    color: var(--primary-white);
    font-weight: 700;
    text-align: center;
    align-self: flex-end;
}

/* Dashboard Comparison Chart */
.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-white);
    min-width: 60px;
    text-align: right;
}

.comparison-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-bar {
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.75rem;
    position: relative;
    transition: var(--transition-all);
    min-width: 120px;
}

.comparison-bar.traditional {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.comparison-bar.clarigen {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    animation: highlightPulse 2s ease-in-out infinite;
}

.comparison-bar .bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-white);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    }

    50% {
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.6);
    }
}

/* Enhanced Dashboard Animations */
.metric-card {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-all);
}

.comparison-bar {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.status-indicator.active {
    background: var(--accent-green);
    animation: pulse 2s infinite;
}

/* Dashboard Professional Styling */
.dashboard-header {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ========================================
   SECTION HEADERS - CLEAN & MODERN
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CLARIGEN EDGE SECTION - MODERN CARDS
   ======================================== */

.clarigen-edge {
    padding: 6rem 0;
    background: var(--gray-50);
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.edge-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-all);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.edge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: var(--primary-white);
    font-size: 1.5rem;
}

.edge-card h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.edge-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-highlight {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.benefit-highlight span {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-hero);
    border-radius: 20px;
    color: var(--primary-white);
}

.cta-section h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   ABOUT SECTION - COMPANY INTRO & MISSION
   ======================================== */

.company-intro {
    margin-bottom: 4rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.intro-text>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition-all);
}

.mission-point:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.mission-point i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mission-point div h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.mission-point div p {
    color: var(--gray-600);
    line-height: 1.6;
}

.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarity-diagram {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarity-center {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.clarity-center i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.clarity-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-all);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.orbit-item:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.orbit-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item:nth-child(2) {
    bottom: 20px;
    right: 20px;
}

.orbit-item:nth-child(3) {
    bottom: 20px;
    left: 20px;
}

.orbit-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Flagship Product Section */
.flagship-product {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-white) 100%);
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid var(--gray-200);
}

.flagship-product h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.flagship-product p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   PRODUCT SECTION - CLEAN LAYOUT
   ======================================== */

.product-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.karmicdd-intro {
    margin-bottom: 4rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.value-point i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.intro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.comparison-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.comparison-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.comparison-item.karmicdd h4 {
    color: var(--primary-blue);
}

.comp-stat {
    margin-bottom: 0.75rem;
}

.comp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.comparison-item.traditional .comp-number {
    color: var(--accent-red);
}

.comparison-item.karmicdd .comp-number {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vs-divider {
    background: var(--primary-blue);
    color: var(--primary-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.product-showcase {
    margin: 4rem 0;
}

.product-content {
    display: grid;
    gap: 4rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-all);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.highlight-card {
    border-color: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-all);
}

.feature-icon i {
    color: var(--primary-white);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-timeline {
    margin-top: 3rem;
}

.process-timeline h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--gray-50);
    border-radius: 16px;
    position: relative;
    transition: var(--transition-all);
}

.step:hover {
    background: var(--primary-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.product-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.product-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact .section-badge {
    background: var(--primary-blue);
    color: var(--primary-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    width: 24px;
    text-align: center;
}

.contact-form {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-all);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   ANALYTICS & ENHANCED SECTIONS
   ======================================== */

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--primary-white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-logo img {
    height: 32px;
    width: auto;
}

.footer-brand .brand-text .brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-white);
}

.footer-brand .brand-text .brand-tagline {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 8px;
    color: var(--gray-300);
    transition: var(--transition-all);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition-all);
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-content p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.footer-badges .badge i {
    color: var(--primary-blue);
}

.footer-badges .badge span {
    color: var(--gray-300);
    font-weight: 500;
}

/* Enhanced Contact Section Styles */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    transition: var(--transition-all);
}

.contact-item:hover {
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
}

.item-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    color: var(--primary-white);
    font-size: 1.25rem;
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.item-value {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.info-card,
.form-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: fit-content;
}

.info-card h3,
.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.opportunity-clock {
    margin-top: 2rem;
}

.opportunity-clock h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.clock-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.clock-face {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-hand {
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--primary-blue);
    transform-origin: bottom;
    animation: clockTick 2s linear infinite;
}

.clock-center {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    z-index: 1;
}

@keyframes clockTick {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clock-stats {
    display: flex;
    gap: 1.5rem;
}

.clock-stat {
    text-align: center;
}

.clock-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.clock-stat .stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-cta {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.form-cta p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.form-cta a {
    margin-left: 0.5rem;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition-all);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    color: var(--primary-white);
    font-size: 1.25rem;
}

.feature-card h3 {
    color: var(--gray-900);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.process-timeline {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.process-timeline h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: var(--transition-all);
}

.step:hover {
    background: var(--gray-100);
    transform: translateX(8px);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.step-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
    font-size: 0.875rem;
}

.step-time {
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: auto;
}

.product-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient-hero);
    border-radius: 20px;
    color: var(--primary-white);
}

.product-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CONTACT SECTION - CLEAN FORMS
   ======================================== */

.contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
}

.item-icon i {
    font-size: 1rem;
    color: var(--primary-white);
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.item-value {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.opportunity-clock {
    background: var(--gradient-hero);
    border-radius: 16px;
    padding: 2rem;
    color: var(--primary-white);
    text-align: center;
}

.opportunity-clock h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.clock-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.clock-face {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-indigo);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-hand {
    width: 2px;
    height: 24px;
    background: var(--primary-indigo);
    position: absolute;
    top: 16px;
    left: 50%;
    transform-origin: bottom center;
    animation: clockRotate 2s linear infinite;
}

@keyframes clockRotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.clock-center {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-indigo);
    position: absolute;
}

.clock-stats {
    display: flex;
    gap: 1.5rem;
}

.clock-stat {
    text-align: center;
}

.form-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.form-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-all);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.form-cta p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ========================================
   FOOTER - CLEAN & MINIMAL
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--primary-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .brand-logo i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.footer-brand .brand-logo img {
    height: 32px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.footer-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand .brand-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand .brand-tagline {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-stats {
    display: flex;
    gap: 1.5rem;
}

.footer-stat {
    text-align: center;
}

.footer-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.footer-stat .stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.link-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition-all);
    font-size: 0.875rem;
}

.link-group a:hover {
    color: var(--primary-white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-300);
}

/* ========================================
   PROFESSIONAL MARKETING DASHBOARD
   ======================================== */

.marketing-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 520px;
    box-shadow: var(--shadow-lg);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    transform: scale(1.05);
}

.metric-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    font-weight: 500;
}

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.25rem;
}

.chart-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.chart-wrapper {
    margin-top: 1rem;
    height: 200px;
    position: relative;
}

/* ========================================
   ANALYTICS SECTION - PROFESSIONAL CHARTS
   ======================================== */

.analytics-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-white) 100%);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-top: 3rem;
}

.chart-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-all);
}

.chart-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.chart-card.full-width {
    grid-column: 1 / -1;
}

.chart-card-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-card-header p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.chart-wrapper {
    height: 300px;
    position: relative;
    margin-bottom: 1.5rem;
}

.chart-wrapper.large {
    height: 300px;
}

.chart-insights {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.chart-insights.horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-group {
    display: flex;
    gap: 2rem;
}

.insight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.insight-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.insight-value {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.cost-high {
    color: var(--accent-red);
    background: rgba(239, 68, 68, 0.1);
}

.cost-low {
    color: var(--accent-green);
    background: rgba(34, 197, 94, 0.1);
}

.time-slow {
    color: var(--accent-red);
    background: rgba(239, 68, 68, 0.1);
}

.time-fast {
    color: var(--accent-green);
    background: rgba(34, 197, 94, 0.1);
}

.insight-highlight {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 8px;
    color: var(--primary-white);
}

.insight-highlight strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #22c55e;
}

.coverage-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.coverage-item span {
    color: #fff;
    font-weight: 500;
}

/* Status Indicator Animation */
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    display: inline-block;
    margin-right: 0.5rem;
}

.status-indicator.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* ========================================
   KARMICDD HIGHLIGHTING & BRANDING
   ======================================== */

.karmicdd-highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.karmicdd-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* ========================================
   COMPANY INTRODUCTION SECTION
   ======================================== */

.company-intro {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--gradient-section);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-all);
}

.mission-point:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.mission-point i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mission-point h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.mission-point p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Clarity Diagram */
.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clarity-diagram {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clarity-center {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

.clarity-center i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.clarity-center span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clarity-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-all);
}

.orbit-item:hover {
    transform: scale(1.1);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.orbit-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.orbit-item:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.orbit-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Flagship Product Section */
.flagship-product {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.flagship-product h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.flagship-product p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   KARMICDD PRODUCT SECTION ENHANCEMENTS
   ======================================== */

.karmicdd-intro {
    margin: 3rem 0;
    padding: 3rem 0;
    background: var(--gradient-section);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.value-point i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.value-point span {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Comparison Visual */
.comparison-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.comparison-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition-all);
}

.comparison-item.traditional {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.comparison-item.karmicdd {
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.comparison-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.comp-stat {
    margin-bottom: 1rem;
}

.comp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.comparison-item.traditional .comp-number {
    color: var(--accent-red);
}

.comparison-item.karmicdd .comp-number {
    color: var(--primary-blue);
}

.comp-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Enhanced Feature Cards */
.highlight-card {
    border: 2px solid rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.05);
}

.highlight-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.premium-card {
    border: 2px solid rgba(124, 58, 237, 0.3);
    background: var(--gradient-primary);
    color: white;
}

.premium-card h3,
.premium-card p {
    color: white;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.karmicdd-icon {
    background: var(--gradient-primary);
}

.karmicdd-icon i {
    color: white;
}

.premium-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.premium-icon i {
    color: white;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge.premium {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .intro-content,
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clarity-diagram {
        width: 240px;
        height: 240px;
    }

    .clarity-center {
        width: 100px;
        height: 100px;
    }

    .orbit-item {
        width: 70px;
        height: 70px;
    }

    .comparison-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .vs-divider {
        transform: rotate(90deg);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .mission-points {
        gap: 1rem;
    }

    .mission-point {
        padding: 1rem;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

    .flagship-product h3 {
        font-size: 1.75rem;
    }

    .edge-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .clarity-diagram {
        width: 200px;
        height: 200px;
    }

    .clarity-center {
        width: 80px;
        height: 80px;
    }

    .clarity-center i {
        font-size: 1.5rem;
    }

    .clarity-center span {
        font-size: 0.8rem;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
    }

    .orbit-item i {
        font-size: 1.25rem;
    }

    .orbit-item span {
        font-size: 0.7rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .intro-text h3 {
        font-size: 1.25rem;
    }

    .intro-text p,
    .flagship-product p {
        font-size: 1rem;
    }

    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .mission-point i {
        margin-top: 0;
    }

    .flagship-product h3 {
        font-size: 1.5rem;
    }

    .flagship-product {
        padding: 1.5rem;
    }

    .company-intro,
    .karmicdd-intro {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .comparison-visual {
        padding: 1rem;
    }

    .comparison-item {
        padding: 1rem;
    }

    .comp-number {
        font-size: 1.5rem;
    }

    .value-point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .clarity-diagram {
        width: 180px;
        height: 180px;
    }

    .clarity-center {
        width: 70px;
        height: 70px;
    }

    .clarity-center i {
        font-size: 1.25rem;
    }

    .clarity-center span {
        font-size: 0.7rem;
    }

    .orbit-item {
        width: 50px;
        height: 50px;
    }

    .orbit-item i {
        font-size: 1rem;
    }

    .orbit-item span {
        font-size: 0.6rem;
    }

    .nav-brand .brand-text {
        display: none;
    }

    .nav-brand .brand-logo img {
        height: 28px;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card {
        padding: 1rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .company-intro,
    .karmicdd-intro {
        padding: 1.5rem 0.75rem;
    }

    .flagship-product {
        padding: 1rem;
    }

    .clarity-diagram {
        width: 160px;
        height: 160px;
    }

    .vs-divider {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ========================================
   ANIMATIONS & INTERACTIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-visual {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.section-header {
    animation: fadeInUp 0.6s ease-out;
}

.edge-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.edge-card:nth-child(1) {
    animation-delay: 0.1s;
}

.edge-card:nth-child(2) {
    animation-delay: 0.2s;
}

.edge-card:nth-child(3) {
    animation-delay: 0.3s;
}

.edge-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Enhanced Analytics Section Styling */
.enhanced-analytics {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.enhanced-analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.enhanced-analytics .container {
    position: relative;
    z-index: 1;
}

.enhanced-analytics .section-header h2 {
    color: #fff;
}

.enhanced-analytics .section-header p {
    color: #94a3b8;
}

/* Professional Chart Styling */
.chart-wrapper canvas {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

/* Enhanced Insight Values */
.insight-value.cost-high {
    color: #ef4444;
    font-weight: 700;
}

.insight-value.cost-low {
    color: #22c55e;
    font-weight: 700;
}

.insight-value.time-fast {
    color: #22c55e;
    font-weight: 700;
}

.insight-value.time-slow {
    color: #ef4444;
    font-weight: 700;
}

/* Coverage Item Enhancements */
.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #22c55e;
}

.coverage-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.coverage-item span {
    color: #fff;
    font-weight: 500;
}

/* Chart Card Hover Effects */
.chart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-all);
}

/* Animated Metrics */
.chart-insights .insight-value {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Typography for Charts */
.chart-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-card-header p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Mobile Styles (320px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation Responsive */
    .nav-container {
        padding: 0 1rem;
    }

    .nav-brand .brand-text {
        display: none;
    }

    .nav-brand .brand-logo img {
        height: 28px;
    }

    /* Hero Section Responsive */
    .hero {
        min-height: 100vh;
        padding: 72px 0 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        min-width: auto;
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Hero Dashboard Responsive */
    .hero-dashboard {
        max-width: 100%;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .metric-card {
        padding: 0.75rem;
    }

    .comparison-chart {
        gap: 1rem;
    }

    .comparison-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .comparison-label {
        text-align: left;
        min-width: auto;
    }

    .comparison-bar {
        min-width: 100%;
        height: 28px;
    }

    .comparison-bar .bar-label {
        font-size: 0.7rem;
    }

    /* Section Headers Responsive */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* About Section Responsive */
    .clarigen-edge {
        padding: 3rem 0;
    }

    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-visual {
        order: -1;
    }

    .clarity-diagram {
        transform: scale(0.8);
    }

    .mission-points {
        gap: 1rem;
    }

    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .edge-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .edge-card {
        padding: 1.5rem;
    }

    /* Product Section Responsive */
    .product-section {
        padding: 3rem 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .vs-divider {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        padding: 0.5rem;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    /* Contact Section Responsive */
    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form {
        order: -1;
    }

    .info-card,
    .form-card {
        padding: 1.5rem;
    }

    .clock-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer Responsive */
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-badges {
        justify-content: center;
    }

    /* Enhanced Orbit Diagram Mobile */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-visual {
        order: -1;
        margin-bottom: 1rem;
    }

    .clarity-diagram {
        transform: scale(0.8);
        margin: 0 auto;
    }

    /* Analytics Section Mobile */
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chart-card.full-width {
        grid-column: 1;
    }

    .insight-group {
        flex-direction: column;
        gap: 1rem;
    }

    .chart-wrapper.large {
        height: 250px;
    }

    .enhanced-analytics {
        padding: 3rem 0;
    }
}

/* Tablet Styles (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .edge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .nav-brand .brand-tagline {
        font-size: 0.55rem;
    }
}

/* Large Screen Adjustments (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .edge-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .nav-brand .brand-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .karmicdd-brand::before,
    .karmicdd-highlight::after {
        height: 1px;
        transform: scaleY(2);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gradient-orb {
        animation: none;
    }

    .status-indicator {
        animation: none;
    }

    .clarity-orbit {
        animation: none;
    }
}

/* Touch Devices Support */
@media (hover: none) and (pointer: coarse) {

    .edge-card:hover,
    .feature-card:hover,
    .mission-point:hover {
        transform: none;
    }

    .edge-card.touch-active,
    .feature-card.touch-active {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: translateY(2px);
    }

    /* Increase touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 44px;
    }

    .contact-item {
        min-height: 60px;
    }
}

/* Skip Link Accessibility */
.skip-link:focus {
    top: 6px !important;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0056b3;
        --gray-600: #000000;
        --gray-700: #000000;
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .edge-card,
    .feature-card,
    .contact-form,
    .info-card {
        border: 2px solid var(--gray-700);
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .nav-toggle,
    .hero-buttons,
    .cta-section,
    .contact-form {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 1rem 0;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section-header h2,
    .hero-title {
        color: #000;
    }
}