/* codedbythomas garren: CSS file - because plain HTML is like wearing pajamas to a wedding */
/* codedbythomas garren: Let's make this look so professional that even my cat would be impressed */

:root {
    /* codedbythomas garren: CSS variables - updated to match DiagBuddy's exact color scheme */
    --primary-color: #40c9ff;        /* Electric Cyan - accents, CTAs, highlights */
    --secondary-color: #1d3be2;      /* Royal Blue - for gradients */
    --accent-color: #6fd4ff;         /* Sky Blue Accent - hovers/soft glows */
    --dark-bg: #0a1124;              /* Dark Navy Base */
    --dark-bg-secondary: #0d1f3f;    /* Dark Navy Secondary */
    --text-primary: #ffffff;         /* Pure White - primary text */
    --text-secondary: #8a8a8a;       /* Soft Gray - secondary text */
    --text-muted: #b0b0b0;           /* Light Gray for muted text */
    --gradient-primary: linear-gradient(135deg, #1d3be2 0%, #294fff 100%);
    --gradient-secondary: linear-gradient(135deg, #40c9ff 0%, #6fd4ff 100%);
    --gradient-hero: linear-gradient(135deg, #1d3be2 0%, #294fff 50%, #0d1f3f 100%);
    --shadow-soft: 0 4px 6px -1px rgba(64, 201, 255, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(64, 201, 255, 0.2);
    --shadow-large: 0 20px 25px -5px rgba(64, 201, 255, 0.3);
    --shadow-glow: 0 0 20px rgba(64, 201, 255, 0.3);
    --border-radius: 0px;
    --border-radius-large: 0px;

    /* Glass Properties */
    --glass-bg: rgba(13, 31, 63, 0.12);    /* 8-14% opacity for panels */
    --glass-overlay: rgba(13, 31, 63, 0.18); /* 14-20% for overlays */
    --glass-border: rgba(64, 201, 255, 0.22); /* 18-24% cyan border */
    --glass-border-secondary: rgba(29, 59, 226, 0.16); /* 12-16% royal blue */
    --glass-highlight: rgba(255, 255, 255, 0.08); /* 6-10% top highlight */
    --glass-shadow: 0 8px 32px rgba(10, 17, 36, 0.25); /* Wide, low-alpha shadow */

    /* Blur Settings */
    --blur-medium: blur(12px);
    --blur-heavy: blur(20px);

    /* Animation Properties */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* codedbythomas garren: Glass UI Search and FAQ Styles */
.search-input {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);

    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
}

.search-input:focus {
    outline: none;
    background: var(--glass-overlay);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(64, 201, 255, 0.2);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-button {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1rem;

    cursor: pointer;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.search-button:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 212, 255, 0.3);
}

.faq-search {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;

    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.category-btn:hover, .category-btn.active {
    background: var(--glass-overlay);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(64, 201, 255, 0.2);
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);

    margin-bottom: 1rem;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    background: var(--glass-overlay);
    border-color: var(--glass-border-secondary);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(64, 201, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-slow);
    background: rgba(64, 201, 255, 0.02);
    border-top: 1px solid var(--glass-border-secondary);
}

.faq-answer > div {
    padding: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.no-results {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);

    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

/* codedbythomas garren: High-Tech Hero Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(64, 201, 255, 0.1) 0%, transparent 70%);

    animation: hero-glow-pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
}

.circuit-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.3), transparent);

}

.circuit-line.line-1 {
    top: 20%;
    left: 10%;
    width: 80%;
    height: 2px;
    animation: circuit-flow 3s linear infinite;
}

.circuit-line.line-2 {
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    animation: circuit-flow 4s linear infinite reverse;
}

.circuit-line.line-3 {
    top: 80%;
    left: 15%;
    width: 70%;
    height: 2px;
    animation: circuit-flow 5s linear infinite;
}

@keyframes circuit-flow {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);

    box-shadow: 0 0 15px rgba(64, 201, 255, 0.6);
}

.circuit-node.node-a {
    top: 20%;
    left: 50%;
    animation: node-pulse 2s ease-in-out infinite;
}

.circuit-node.node-b {
    top: 50%;
    left: 80%;
    animation: node-pulse 2.5s ease-in-out infinite;
}

.circuit-node.node-c {
    top: 80%;
    left: 30%;
    animation: node-pulse 3s ease-in-out infinite;
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.circuit-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(64, 201, 255, 0.3);

    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.33); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #40c9ff 50%, #1d3be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-glass {
    background: rgba(64, 201, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(64, 201, 255, 0.2);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-glass:hover {
    background: rgba(64, 201, 255, 0.12);
    border-color: rgba(64, 201, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(64, 201, 255, 0.2);
}

.stat-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.2), transparent);
    animation: stat-scan 3s linear infinite;
}

@keyframes stat-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(64, 201, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-cta, .demo-cta {
    position: relative;
    overflow: hidden;
    background: rgba(64, 201, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(64, 201, 255, 0.3);

    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-cta:hover, .demo-cta:hover {
    background: rgba(64, 201, 255, 0.25);
    border-color: rgba(64, 201, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.3);
    color: white;
}

.cta-glow, .demo-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.4), transparent);
    animation: button-glow 2s linear infinite;
}

@keyframes button-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Holographic Panel */
.holographic-panel {
    position: relative;
    width: 400px;
    height: 300px;
    perspective: 1000px;
}

.panel-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(45deg, rgba(64, 201, 255, 0.2), rgba(29, 59, 226, 0.2));

    animation: panel-glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes panel-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.diagnostic-display {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 201, 255, 0.3);

    padding: 1.5rem;
    z-index: 2;
    overflow: hidden;
}

.display-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(64, 201, 255, 0.2);
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;

    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    animation: status-pulse 2s ease-in-out infinite;
}

.status-indicator.active {
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.display-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagnostic-data {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-stream {
    position: relative;
    height: 60px;
    background: rgba(64, 201, 255, 0.05);

    overflow: hidden;
}

.stream-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: stream-flow 2s linear infinite;
}

@keyframes stream-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stream-particles {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);

    box-shadow: 0 0 8px rgba(64, 201, 255, 0.6);
}

.particle.p1 {
    animation: particle-float 3s ease-in-out infinite;
}

.particle.p2 {
    animation: particle-float 2.5s ease-in-out infinite 0.5s;
}

.particle.p3 {
    animation: particle-float 4s ease-in-out infinite 1s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(-50%) translateX(0px); opacity: 0; }
    50% { transform: translateY(-50%) translateX(50px); opacity: 1; }
}

.accuracy-meter {
    position: relative;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);

    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));

    transition: width 2s ease-in-out;
    box-shadow: 0 0 10px rgba(64, 201, 255, 0.5);
}

.meter-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);

    box-shadow: 0 0 20px rgba(64, 201, 255, 0.8);
}

.data-node.node-1 {
    top: 30%;
    left: 20%;
    animation: data-node-orbit 8s linear infinite;
}

.data-node.node-2 {
    top: 60%;
    left: 70%;
    animation: data-node-orbit 6s linear infinite reverse;
}

.data-node.node-3 {
    top: 80%;
    left: 40%;
    animation: data-node-orbit 10s linear infinite;
}

@keyframes data-node-orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.connection-beam {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);

}

.connection-beam.beam-1 {
    top: 35%;
    left: 25%;
    width: 200px;
    animation: beam-pulse 2s ease-in-out infinite;
}

.connection-beam.beam-2 {
    top: 65%;
    left: 45%;
    width: 150px;
    animation: beam-pulse 2.5s ease-in-out infinite 0.5s;
}

@keyframes beam-pulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .holographic-panel {
        width: 300px;
        height: 225px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        min-width: 250px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .holographic-panel {
        width: 250px;
        height: 187px;
    }

    /* Mobile Navigation */
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-primary {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .nav-secondary {
        width: 100%;
    }

    .nav-more-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .nav-dropdown .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
    }

/* About Section Styles */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header .section-title {
    margin-bottom: 1rem;
}

.about-header .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Story & Mission Row */
.story-mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.story-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    transition: var(--transition);
}

.story-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.card-header h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision Stack */
.mission-vision-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(64, 201, 255, 0.2);
}

.mission-card p,
.vision-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.values-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-section .section-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.values-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.value-card h4 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Impact & Technology Row */
.impact-tech-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.impact-section .section-header,
.tech-section .section-header {
    margin-bottom: 2rem;
}

.impact-section .section-header h3,
.tech-section .section-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.impact-section .section-header p,
.tech-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.impact-stat {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.impact-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(64, 201, 255, 0.2);
}

.stat-glass {
    background: rgba(64, 201, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    padding: 1rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Mobile Responsive for About Section */
@media (max-width: 1024px) {
    .story-mission-row,
    .impact-tech-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-header {
        margin-bottom: 2rem;
    }

    .story-mission-row,
    .impact-tech-row {
        gap: 1.5rem;
    }

    .story-card,
    .mission-card,
    .vision-card,
    .value-card,
    .impact-stat {
        padding: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }
}

/* Mobile Page Styles */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(64, 201, 255, 0.1), rgba(29, 59, 226, 0.1));
    border: 2px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.badge-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(64, 201, 255, 0.3) 0%, transparent 70%);
    animation: badge-pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.mobile-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-stat {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    padding: 1rem 1.5rem;
    min-width: 100px;
}

.mobile-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-weight: 500;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.mobile-feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.feature-icon-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(64, 201, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: feature-glow 3s ease-in-out infinite alternate;
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.mobile-notify-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
}

.notify-content h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.notify-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.notify-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.notify-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.notify-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.notify-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 201, 255, 0.4);
}

@keyframes feature-glow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Documentation Page Styles */
.docs-header-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.docs-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.docs-header-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.docs-header-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.docs-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.docs-stat {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    padding: 1rem;
    transition: var(--transition);
}

.docs-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 201, 255, 0.2);
}

.docs-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.docs-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.docs-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.api-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
}

.status-indicator.active {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.action-btn.primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 201, 255, 0.4);
}

.action-btn.secondary {
    background: rgba(64, 201, 255, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.action-btn.secondary:hover {
    background: rgba(64, 201, 255, 0.2);
    transform: translateY(-2px);
}

.action-btn.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(64, 201, 255, 0.3);
}

.action-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.code-preview {
    background: rgba(10, 17, 36, 0.8);
    border: 2px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(64, 201, 255, 0.1);
    border-bottom: 1px solid rgba(64, 201, 255, 0.2);
}

.language {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copy-code {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition);
}

.copy-code:hover {
    color: var(--primary-color);
}

.code-preview pre {
    margin: 0;
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    overflow-x: auto;
}

.code-preview code {
    color: rgba(255, 255, 255, 0.9);
}

.docs-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 36, 0.9) 0%, rgba(29, 59, 226, 0.1) 100%);
    z-index: 1;
}

/* Mobile Responsive for Documentation */
@media (max-width: 1024px) {
    .docs-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .docs-actions {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .docs-header-section {
        padding: 60px 0 40px;
    }

    .docs-header-text h1 {
        font-size: 2.5rem;
    }

    .docs-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
    }

    .code-preview {
        font-size: 0.8rem;
    }
}

/* Advanced Demo Page Styles */
.demo-status {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 0;
    padding: 0.75rem 1.25rem;
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
}

.status-dot.active {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.demo-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.demo-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Scene Styles */
.scene-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(64, 201, 255, 0.2);
}

.scene-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.scene-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.scene-step {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scene-explanation {
    margin-bottom: 2rem;
}

.explanation-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
}

.explanation-panel h4 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.explanation-panel p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.ai-insight {
    background: rgba(64, 201, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.ai-insight strong {
    color: var(--primary-color);
}

/* Appliance Grid */
.appliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.appliance-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.appliance-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.appliance-card.selected {
    border-color: var(--primary-color);
    background: rgba(64, 201, 255, 0.1);
}

.appliance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.appliance-info h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.appliance-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.appliance-stats {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Symptom Analysis */
.symptom-analysis {
    margin-bottom: 2rem;
}

.analysis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.analysis-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.symptom-counter {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.symptom-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
}

.symptom-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(64, 201, 255, 0.2);
}

.symptom-card.selected {
    border-color: var(--primary-color);
    background: rgba(64, 201, 255, 0.1);
}

.symptom-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.symptom-content h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.symptom-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.symptom-frequency {
    margin-top: 1rem;
    text-align: right;
}

.frequency-badge {
    background: rgba(64, 201, 255, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Progress Bar */
.scene-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.5s ease;
}

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

/* Demo Controls */
.demo-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.demo-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
}

.demo-button.primary {
    background: var(--primary-color);
    color: white;
}

.demo-button.primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 201, 255, 0.4);
}

.demo-button.secondary {
    background: rgba(64, 201, 255, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.demo-button.secondary:hover {
    background: rgba(64, 201, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive for Demo */
@media (max-width: 768px) {
    .demo-meta {
        flex-direction: column;
        align-items: center;
    }

    .appliance-grid,
    .symptom-grid {
        grid-template-columns: 1fr;
    }

    .scene-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .demo-controls {
        flex-direction: column;
    }

    .demo-button {
        width: 100%;
        max-width: 300px;
    }

    .analysis-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Investor Page Styles */
.hero-visual {
    margin-bottom: 2rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.highlight-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Problem Slide Styles */
.problem-slide {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(64, 201, 255, 0.1) 100%);
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.stat-data {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card,
.solution-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    transition: var(--transition);
}

.problem-card {
    border-left: 4px solid #ef4444;
}

.solution-card {
    border-left: 4px solid var(--primary-color);
}

.problem-card:hover,
.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 0;
}

.card-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content li strong {
    color: white;
}

.market-potential {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.market-potential h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.market-potential p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Contact Investors Section */
.contact-investors {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.contact-investors h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-investors p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.investor-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.investor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(64, 201, 255, 0.4);
}

.investor-button i {
    font-size: 1.2rem;
}

/* Investment Slide Styles */
.investment-slide {
    background: linear-gradient(135deg, rgba(64, 201, 255, 0.1) 0%, rgba(29, 59, 226, 0.1) 100%);
}

.investment-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.investment-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    transition: var(--transition);
}

.investment-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.investment-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.investment-amount .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.investment-amount .terms {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.market-stats .market-size {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.market-stats .market-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Funds Breakdown */
.funds-breakdown {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    margin: 3rem 0;
}

.funds-breakdown h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.funds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fund-item {
    background: rgba(64, 201, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    padding: 1.5rem;
    transition: var(--transition);
}

.fund-item:hover {
    background: rgba(64, 201, 255, 0.2);
    border-color: var(--primary-color);
}

.fund-percentage {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fund-purpose {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.fund-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Exit Strategy */
.exit-strategy {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    margin-top: 3rem;
}

.exit-strategy h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.exit-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.exit-option {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 1.5rem;
    transition: var(--transition);
}

.exit-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.exit-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.exit-content h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.exit-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Slide Styles */
.cta-slide {
    background: linear-gradient(135deg, rgba(29, 59, 226, 0.15) 0%, rgba(64, 201, 255, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.cta-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(64, 201, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(29, 59, 226, 0.1) 0%, transparent 50%);
    animation: cta-bg-float 20s ease-in-out infinite;
}

@keyframes cta-bg-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.investment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.highlight-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}

.highlight-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.company-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(64, 201, 255, 0.3);
}

.signature-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.signature-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.25rem 0;
}

.signature-content .tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.signature-logo {
    opacity: 0.9;
}

/* Responsive for Investor Page */
@media (max-width: 1024px) {
    .problem-solution {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .investment-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .exit-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .problem-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        margin-bottom: 1rem;
    }

    .contact-investors {
        padding: 1.5rem;
    }

    .contact-investors h3 {
        font-size: 1.5rem;
    }

    .investment-highlights {
        grid-template-columns: 1fr;
    }

    .funds-grid {
        grid-template-columns: 1fr;
    }

    .company-signature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* FAQ Page Styles */
.faq-header {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.faq-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq-header-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.faq-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-stat {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    padding: 1rem 1.5rem;
    min-width: 120px;
}

.faq-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.faq-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.faq-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-search-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 1.5rem;
    transition: var(--transition);
}

.faq-search-box:hover {
    border-color: var(--primary-color);
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    z-index: 3;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.clear-search {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition);
}

.clear-search:hover {
    color: var(--primary-color);
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    flex: 1;
    justify-content: center;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.action-btn.primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 201, 255, 0.4);
}

.action-btn.secondary {
    background: rgba(64, 201, 255, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.action-btn.secondary:hover {
    background: rgba(64, 201, 255, 0.2);
    transform: translateY(-2px);
}

.faq-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 36, 0.9) 0%, rgba(29, 59, 226, 0.1) 100%);
    z-index: 1;
}

/* FAQ Navigation */
.faq-navigation {
    padding: 20px 0;
    background: rgba(10, 17, 36, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(64, 201, 255, 0.1);
    border-bottom: 1px solid rgba(64, 201, 255, 0.1);
}

.nav-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(64, 201, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.2);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-tab:hover {
    background: rgba(64, 201, 255, 0.2);
    color: white;
    border-color: var(--primary-color);
}

.nav-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-tab i {
    font-size: 0.9rem;
}

.nav-tab span {
    font-size: 0.85rem;
}

/* Mobile Responsive for FAQ */
@media (max-width: 1024px) {
    .faq-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .faq-actions {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .faq-header {
        padding: 60px 0 40px;
    }

    .faq-header-text h1 {
        font-size: 2.5rem;
    }

    .faq-stats {
        justify-content: center;
    }

    .quick-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
    }

    .nav-tabs {
        padding: 0 1rem;
    }
}

    /* Mobile About Section */
    .story-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .mission-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-stack {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* codedbythomas garren: Enhanced Glass Effects */
.feature-card, .about-card, .pricing-card, .contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before, .about-card::before, .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.1), transparent);
    animation: card-scan 4s linear infinite;
    z-index: 1;
}

@keyframes card-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.feature-card:hover, .about-card:hover, .pricing-card:hover {
    background: var(--glass-overlay);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(64, 201, 255, 0.2);
}

.feature-icon, .about-icon, .pricing-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #40c9ff 50%, #1d3be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 201, 255, 0.1) 0%, transparent 70%);

    animation: section-glow 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes section-glow {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

/* Enhanced Button Styles */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    border: none;
    padding: 1.2rem 2.5rem;

    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: cta-shine 3s linear infinite;
}

@keyframes cta-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(64, 201, 255, 0.4);
}

.secondary-button {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;

    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.3), transparent);
    animation: secondary-glow 4s linear infinite;
}

@keyframes secondary-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.secondary-button:hover {
    background: rgba(64, 201, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(64, 201, 255, 0.2);
    color: var(--accent-color);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
}

h1::after, h2::after, h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));

}

p, span, li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Enhanced List Styles */
ul, ol {
    color: rgba(255, 255, 255, 0.9);
}

li::marker {
    color: var(--primary-color);
}

/* Form Enhancements */
input, textarea, select {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);

    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(64, 201, 255, 0.2);
    background: var(--glass-overlay);
}

/* Enhanced Footer */
.footer {
    background: var(--glass-overlay);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 201, 255, 0.05), rgba(29, 59, 226, 0.05));
    z-index: -1;
}

/* Tech Stack Styles */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);

    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.1), transparent);
    animation: tech-scan 4s linear infinite;
    z-index: 1;
}

@keyframes tech-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.tech-item:hover {
    background: var(--glass-overlay);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(64, 201, 255, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
    animation: tech-icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes tech-icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.tech-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Pricing Page Styles */
.pricing {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);

    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.1), transparent);
    animation: card-scan 4s linear infinite;
    z-index: 1;
}

.pricing-card:hover {
    background: var(--glass-overlay);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(64, 201, 255, 0.2);
}

.pricing-card.popular {
    background: rgba(64, 201, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(64, 201, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;

    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(64, 201, 255, 0.3);
    z-index: 3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);

    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(64, 201, 255, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.pricing-cta {
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;

    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.pricing-cta.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.pricing-cta:hover {
    background: rgba(64, 201, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.pricing-faq {
    margin-top: 6rem;
    text-align: center;
}

.pricing-faq h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

/* Mobile App Page Styles */
.mobile-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.mobile-hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(64, 201, 255, 0.1);
    padding: 0.75rem 1.25rem;

    border: 1px solid rgba(64, 201, 255, 0.2);
}

.mobile-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.mobile-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);

    border: 8px solid #000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.phone-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--dark-bg);

    overflow: hidden;
}

.phone-reflection {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);

    pointer-events: none;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(64, 201, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.3);
    padding: 0.75rem 1.5rem;

    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.app-button:hover {
    background: rgba(64, 201, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.app-button i {
    font-size: 2rem;
    color: var(--primary-color);
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.app-store {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Parts Integration Page Styles */
.parts-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.parts-hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.parts-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.parts-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(64, 201, 255, 0.1);
    padding: 0.75rem 1.25rem;

    border: 1px solid rgba(64, 201, 255, 0.2);
}

.parts-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.parts-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.parts-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parts-dashboard {
    width: 400px;
    height: 300px;
    background: rgba(10, 17, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 201, 255, 0.3);

    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(64, 201, 255, 0.2);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.parts-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.parts-search-input {
    flex: 1;
    background: rgba(64, 201, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.2);

    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.parts-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.parts-search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;

    cursor: pointer;
    transition: var(--transition);
}

.parts-search-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.parts-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.part-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;

    border: 1px solid rgba(64, 201, 255, 0.1);
    transition: var(--transition);
}

.part-item:hover {
    background: rgba(64, 201, 255, 0.1);
    border-color: rgba(64, 201, 255, 0.3);
}

.part-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.part-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.part-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.part-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.part-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.part-pricing .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.part-pricing .availability {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;

    font-weight: 500;
}

.availability.in-stock {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.availability.limited {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.order-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;

    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
}

.order-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Workflow Styles */
.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);

    padding: 2rem;
    max-width: 200px;
    transition: var(--transition);
}

.workflow-step:hover {
    background: var(--glass-overlay);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(64, 201, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    border: 2px solid rgba(64, 201, 255, 0.2);
}

.workflow-step h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.workflow-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Enhanced About Section Styles */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    gap: 4rem;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(64, 201, 255, 0.3);
}

.story-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
}

.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    background: var(--glass-overlay);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.impact-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-stat {
    flex: 1;
    min-width: 200px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.tech-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.tech-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 160px;
}

.tech-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.tech-item:hover .tech-hover-effect {
    opacity: 1;
    transform: scale(1.05);
}

.tech-item.ai-item {
    background: linear-gradient(135deg, rgba(29, 59, 226, 0.1) 0%, rgba(64, 201, 255, 0.1) 100%);
}

.tech-item.mobile-item {
    background: linear-gradient(135deg, rgba(64, 201, 255, 0.1) 0%, rgba(111, 212, 255, 0.1) 100%);
}

.tech-item.cloud-item {
    background: linear-gradient(135deg, rgba(10, 17, 36, 0.8) 0%, rgba(29, 59, 226, 0.1) 100%);
}

.tech-item.security-item {
    background: linear-gradient(135deg, rgba(64, 201, 255, 0.1) 0%, rgba(29, 59, 226, 0.1) 100%);
}

.tech-item.field-item {
    background: linear-gradient(135deg, rgba(111, 212, 255, 0.1) 0%, rgba(10, 17, 36, 0.8) 100%);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.tech-icon-container {
    position: relative;
    flex-shrink: 0;
}

.tech-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(64, 201, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: icon-glow 3s ease-in-out infinite alternate;
}

.tech-icon {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 3;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: tech-pulse-ring 2s ease-out infinite;
    opacity: 0.6;
}

.tech-content {
    flex: 1;
}

.tech-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-feature {
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(64, 201, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    border: 1px solid rgba(64, 201, 255, 0.2);
    font-weight: 600;
    transition: var(--transition);
}

.tech-feature:hover {
    background: rgba(64, 201, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

.tech-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 201, 255, 0.1), rgba(29, 59, 226, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

@keyframes icon-glow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes tech-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes tech-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}



.about-stats {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.about-stat {
    flex: 1;
    min-width: 150px;
}

.about-mission {
    margin: 3rem 0;
}

.mission-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.1), transparent);
    animation: card-scan 4s linear infinite;
    z-index: 1;
}

.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 201, 255, 0.1), transparent);
    animation: value-scan 5s linear infinite;
    z-index: 1;
}

@keyframes value-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.value-item:hover {
    background: var(--glass-overlay);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(64, 201, 255, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
    animation: value-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes value-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.value-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* codedbythomas garren: Global styles - the foundation of our beautiful mess */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure text contrast and visibility */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
}

p, span, div {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary) !important;
}

/* Section scroll margins to prevent navbar overlap */
section[id] {
    scroll-margin-top: 100px;
}

/* Ensure all interactive elements have proper contrast */
button, .btn, .cta-button, .primary-button, .secondary-button {
    color: var(--text-primary);
}

button:hover, .btn:hover, .cta-button:hover, .primary-button:hover, .secondary-button:hover {
    color: white;
}

/* Fix any potential white-on-white issues */
.feature-card, .faq-item, .glass-bg {
    background: var(--glass-bg) !important;
    color: var(--text-primary) !important;
}

.feature-card h3, .feature-card p,
.faq-item h3, .faq-item p,
.glass-bg h3, .glass-bg p {
    color: var(--text-primary) !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    padding-top: 120px; /* Account for fixed navigation with adequate spacing */
    position: relative;
}

/* Global Animated Circuit Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 25% 25%, rgba(64, 201, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 59, 226, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2340c9ff' fill-opacity='0.03'%3E%3Cpath d='M50 50 L60 40 L70 50 L60 60 Z'/%3E%3Cpath d='M20 20 L30 10 L40 20 L30 30 Z'/%3E%3Cpath d='M80 80 L90 70 L100 80 L90 90 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: circuit-float 25s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2340c9ff' fill-opacity='0.02'%3E%3Ccircle cx='7' cy='7' r='1'/%3E%3Ccircle cx='27' cy='7' r='1'/%3E%3Ccircle cx='47' cy='7' r='1'/%3E%3Ccircle cx='7' cy='27' r='1'/%3E%3Ccircle cx='27' cy='27' r='1'/%3E%3Ccircle cx='47' cy='27' r='1'/%3E%3Ccircle cx='7' cy='47' r='1'/%3E%3Ccircle cx='27' cy='47' r='1'/%3E%3Ccircle cx='47' cy='47' r='1'/%3E%3C/g%3E%3Cg stroke='%2340c9ff' stroke-width='0.5' stroke-opacity='0.1'%3E%3Cline x1='7' y1='7' x2='27' y2='7'/%3E%3Cline x1='27' y1='7' x2='47' y2='7'/%3E%3Cline x1='7' y1='27' x2='27' y2='27'/%3E%3Cline x1='27' y1='27' x2='47' y2='27'/%3E%3Cline x1='7' y1='47' x2='27' y2='47'/%3E%3Cline x1='27' y1='47' x2='47' y2='47'/%3E%3Cline x1='7' y1='7' x2='7' y2='27'/%3E%3Cline x1='7' y1='27' x2='7' y2='47'/%3E%3Cline x1='27' y1='7' x2='27' y2='27'/%3E%3Cline x1='27' y1='27' x2='27' y2='47'/%3E%3Cline x1='47' y1='7' x2='47' y2='27'/%3E%3Cline x1='47' y1='27' x2='47' y2='47'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: circuit-drift 40s linear infinite;
}

/* Circuit Animation Keyframes */
@keyframes circuit-float {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-10px) scale(1.02) rotate(120deg);
        opacity: 0.4;
    }
    66% {
        transform: translateY(5px) scale(0.98) rotate(240deg);
        opacity: 0.35;
    }
}

@keyframes circuit-drift {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-15px) translateY(15px); }
    75% { transform: translateX(10px) translateY(5px); }
    100% { transform: translateX(0px) translateY(0px); }
}

/* codedbythomas garren: Container utilities - because centering things is apparently rocket science */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* codedbythomas garren: Glass UI Navigation - frosted glass pane */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 17, 36, 0.15);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(64, 201, 255, 0.25);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(10, 17, 36, 0.3);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(10, 17, 36, 0.25);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(64, 201, 255, 0.4);
    box-shadow: 0 8px 32px rgba(10, 17, 36, 0.4);
}

/* Disabled Navigation Links */
.nav-link.disabled {
    color: rgba(255, 255, 255, 0.4) !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
}

.nav-link.disabled:hover {
    color: rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
    transform: none !important;
}

/* Mobile Navigation */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 31, 63, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(64, 201, 255, 0.3);
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(10, 17, 36, 0.4);
}

.nav-menu.active .nav-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0;
    border: none;
    margin-bottom: 1rem;
}

.nav-menu.active .nav-group:last-child {
    margin-bottom: 0;
}

/* New Navigation Structure */
.nav-primary {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-secondary {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(64, 201, 255, 0.1);
    border: 1px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-more-btn:hover {
    background: rgba(64, 201, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-more-btn.active i {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(13, 31, 63, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 201, 255, 0.3);
    border-radius: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(10, 17, 36, 0.5);
}

.nav-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .nav-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(64, 201, 255, 0.1);
    transition: var(--transition);
    width: 100%;
    text-align: left;
}

.nav-dropdown .nav-link:last-child {
    border-bottom: none;
}

.nav-dropdown .nav-link:hover {
    background: rgba(64, 201, 255, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo-accent {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 1rem;

    margin: 0 0.25rem;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(64, 201, 255, 0.12);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(64, 201, 255, 0.25);
    border: 1px solid rgba(64, 201, 255, 0.3);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(64, 201, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(64, 201, 255, 0.3);
    border: 1px solid rgba(64, 201, 255, 0.4);
}

.cta-button {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1.5rem;

    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(64, 201, 255, 0.3);
    transition: all 0.2s ease;
}

.cta-button:hover::before {
    left: 0;
}

/* codedbythomas garren: Hero section - sleek gradient with DiagBuddy branding */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;

    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    box-shadow: var(--shadow-glow);
}

.primary-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.4);
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.primary-button:hover::before {
    left: 0;
}

.secondary-button {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.secondary-button:hover {
    background: var(--glass-overlay);
    backdrop-filter: blur(12px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.3);
}

/* codedbythomas garren: Hero visual - fancy graphics that make us look smart */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-circle {
    position: absolute;

    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -20px;
    animation-delay: 4s;
}

.ai-brain {
    position: relative;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    animation: pulse 3s ease-in-out infinite;
}

.brain-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.brain-particles span {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);

    animation: particle-float 8s linear infinite;
}

.brain-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.brain-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.brain-particles span:nth-child(3) { top: 30%; left: 70%; animation-delay: 4s; }
.brain-particles span:nth-child(4) { top: 70%; left: 20%; animation-delay: 1s; }
.brain-particles span:nth-child(5) { top: 40%; left: 90%; animation-delay: 3s; }

/* codedbythomas garren: Background patterns - because plain backgrounds are boring */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    z-index: 1;
}

/* codedbythomas garren: Features section - sleek dark navy with cyan accents */
.features {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(64, 201, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(29, 59, 226, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.features > * {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(64, 201, 255, 0.3);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    padding: 2rem;

    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(64, 201, 255, 0.5);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 201, 255, 0.2);
    border-color: var(--primary-color);
    transition: all 0.2s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* codedbythomas garren: About section - because people need to know we're legit */
.about {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;

    box-shadow: var(--shadow-soft);
    min-width: 120px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;

    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.tech-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tech-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* codedbythomas garren: Glass UI Footer - frosted glass design */
.footer {
    background: var(--glass-overlay);
    backdrop-filter: var(--blur-heavy);
    color: white;
    padding: 60px 0 30px;
    margin-top: 100px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg-secondary);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-logo i {
    font-size: 2rem;
}

.footer-logo .logo-accent {
    color: var(--secondary-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* codedbythomas garren: Animations - because static websites are so last millennium */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes particle-float {
    0% { transform: translateY(0px) translateX(0px) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px) scale(1); opacity: 0; }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle:hover {
    color: var(--primary-color);
}

/* codedbythomas garren: Responsive design - because mobile users exist too */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-container {
        padding: 0;
    }

    .nav-logo span {
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 17, 36, 0.2);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(64, 201, 255, 0.3);
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
        box-shadow: 0 8px 32px rgba(10, 17, 36, 0.4);

    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        background: rgba(10, 17, 36, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(64, 201, 255, 0.25);
        color: var(--text-primary);
        padding: 0.5rem;
    
        transition: var(--transition);
    }

    .nav-toggle:hover {
        background: rgba(64, 201, 255, 0.15);
        color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(64, 201, 255, 0.3);
        border: 1px solid rgba(64, 201, 255, 0.4);
    }

    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .features {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-stack {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .tech-item {
        width: 100%;
        max-width: 400px;
    }

    .tech-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tech-icon-container {
        margin: 0 auto;
    }

    .tech-content {
        text-align: center;
    }

    .tech-features {
        justify-content: center;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 2rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .step-number-faq {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* codedbythomas garren: Scrollbar styling - because even scrollbars need to look fancy */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);

}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
