/* Angatech - Optimized Professional CSS */
/* No animations, unified colors, mobile-first, fast loading */

/* ========================================
   CSS RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Static background - no animations */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0a0a0a, #1a1a2e, #16213e, #0f3460);
    z-index: -1;
}

/* ========================================
   COLOR VARIABLES
======================================== */

:root {
    --primary-cyan: #00ffff;
    --electric-blue: #0099ff;
    --neon-purple: #9d00ff;
    --pure-white: #ffffff;
    --dark-space: #000000;
    --deep-void: #0a0a0a;
    
    --gradient-primary: linear-gradient(135deg, #00ffff 0%, #0099ff 50%, #9d00ff 100%);
    --gradient-accent: linear-gradient(135deg, #0088ff 0%, #00ffff 100%);
    
    --text-bright: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --text-accent: #00ffff;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--primary-cyan);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-bright);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-cyan);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-cyan);
    border-radius: 3px;
}

/* ========================================
   BUTTONS
======================================== */

.btn, button, .cta-button, .cta-primary, .cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary, .cta-primary {
    background: linear-gradient(135deg, #0099ff 0%, #00ffff 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 153, 255, 0.3);
}

.btn-primary:hover, .cta-primary:hover {
    box-shadow: 0 6px 24px rgba(0, 153, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary, .cta-secondary {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: var(--primary-cyan) !important;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover, .cta-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.btn:hover, .cta-button:hover {
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, #0099ff 0%, #00ffff 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 153, 255, 0.3);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
}

.hero-title, .static-text {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SECTIONS
======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1rem;
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #00ffff 0%, #0099ff 50%, #9d00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ========================================
   CARDS & GRIDS
======================================== */

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

.card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(16, 21, 40, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 
                0 1px 2px rgba(0, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 
                0 4px 12px rgba(0, 255, 255, 0.2);
}

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

.card-title {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--text-muted);
}

/* ========================================
   FORMS
======================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.form-control, input, textarea, select {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.form-control:focus, input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(26, 26, 46, 0.8);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(0, 255, 255, 0.8);
}

/* ========================================
   HOME PAGE SPECIFIC GRIDS
======================================== */

/* Hero Metrics - 3 columns */
.hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Credibility Stats - 4 columns */
.credibility-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.credibility .stat {
    text-align: center;
    padding: 1rem 0.75rem;
}

.credibility .stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    /* Removed gradient effect for better visibility */
}

.credibility .stat p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* Services Grid - 3 columns */
.services-grid,
.services-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Products Preview - 3 columns */
.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Testimonials - 3 columns */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
}

.client-info {
    flex: 1;
}

.client-info h4 {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.client-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.testimonial-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.testimonial-metrics .metric {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    font-weight: 500;
}

.testimonial-metrics .metric i {
    font-size: 0.9rem;
}

/* Case Studies Stats - 4 columns */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.featured-highlight {
    text-align: center;
    max-width: 900px;
    margin: 1.5rem auto;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
}

.featured-highlight h3 {
    color: var(--primary-cyan);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.featured-highlight p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.project-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.75rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    /* Removed gradient effect for better visibility */
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Service Images */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Product Images */
.product-image-small {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-preview-card:hover .product-preview-img {
    transform: scale(1.05);
}

/* About Page Hero */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.90), rgba(26, 26, 46, 0.95));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Grids */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.opportunity-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.opportunity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.opportunity-card:hover .opportunity-image img {
    transform: scale(1.08);
}

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

.metric-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.metric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.metric-card:hover .metric-image img {
    transform: scale(1.08);
}

.opportunity-card,
.metric-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

/* Contact CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-cyan);
    font-size: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* Responsive adjustments for grids */
@media (max-width: 1200px) {
    .services-grid,
    .services-grid-3col,
    .products-preview-grid,
    .testimonials-grid,
    .opportunity-grid,
    .metrics-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credibility-content,
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-metrics-grid,
    .services-grid,
    .services-grid-3col,
    .products-preview-grid,
    .testimonials-grid,
    .credibility-content,
    .overview-stats,
    .quick-contact,
    .opportunity-grid,
    .metrics-dashboard {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.75rem 2rem;
}

.footer-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-separator {
    color: rgba(0, 255, 255, 0.3);
}

.footer-minimal .brand-text {
    font-weight: 600;
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ========================================
   MOBILE RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .footer-minimal {
        font-size: 0.85rem;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .container {
        padding: 1rem 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .footer-minimal {
        font-size: 0.8rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn, .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

/* Our Story Section */
.our-story {
    padding: 2rem 0;
    background: transparent;
}

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

.story-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

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

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.story-stat {
    text-align: center;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
}

.story-stat .stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    order: 1;
}

.story-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    order: 2;
    margin-top: 0.5rem;
    color: var(--primary-cyan);
    /* Removed gradient effect for better visibility */
}

/* Differentiators Section */
.differentiators {
    padding: 2rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.diff-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.diff-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Mission Banner */
.mission-banner {
    padding: 2rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 46, 0.95));
    text-align: center;
}

.mission-banner h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-banner p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--primary-cyan);
    font-weight: 500;
}

/* Credibility Grid */
.credibility {
    padding: 2rem 0;
    background: transparent;
}

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

.cred-card {
    text-align: center;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}

.cred-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    order: 1;
}

.cred-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    order: 2;
    margin-top: 0.75rem;
    color: var(--primary-cyan);
    /* Removed gradient effect for better visibility */
}

/* Team Section */
.team-section {
    padding: 2rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(0, 255, 255, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary-cyan);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-linkedin {
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-linkedin:hover {
    color: #ffffff;
}

/* Backed by Results */
.backed-results {
    padding: 2rem 0;
    background: transparent;
}

.results-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.result-card {
    text-align: center;
    padding: 1.5rem;
}

.result-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.result-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Partnership CTA */
.partnership-cta {
    padding: 2rem 2rem;
    text-align: center;
    background: rgba(26, 26, 46, 0.5);
}

.partnership-cta h2 {
    margin-bottom: 1.5rem;
}

.partnership-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.partnership-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Tagline Section */
.tagline-section {
    padding: 2rem 0;
    background: transparent;
    text-align: center;
}

.tagline-text {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* About Page Responsive */
@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .credibility-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* ========================================
   SERVICES PAGE STYLES
======================================== */

/* Services Hero */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 46, 0.90));
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-stats .stat {
    text-align: center;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    order: 1;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    order: 2;
    margin-top: 0.5rem;
    color: var(--primary-cyan);
    /* Gradient effect with proper fallback */
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

/* Detailed Services */
.detailed-services {
    padding: 1rem 0;
}

.service-detail {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.service-detail.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.service-detail.reverse .service-content {
    order: 2;
}

.service-detail.reverse .service-visual {
    order: 1;
}

.service-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.service-detail h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.service-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-category h3 {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.feature-category ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

.service-outcomes h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.outcome {
    background: rgba(26, 26, 46, 0.5);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    text-align: center;
}

.outcome h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.outcome p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-visual {
    position: sticky;
    top: 100px;
}

.service-image-large {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.service-large-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Responsive */
@media (max-width: 968px) {
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail.reverse .service-content,
    .service-detail.reverse .service-visual {
        order: initial;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .service-visual {
        position: relative;
        top: 0;
    }
    
    .service-image-large {
        height: 300px;
    }
}

/* Services Overview */
.services-overview {
    padding: 1rem 0;
}

/* Process Section */
.process-section {
    padding: 1.5rem 0;
    background: rgba(26, 26, 46, 0.3);
}

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

.process-section h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-cyan) 0%, 
        var(--primary-cyan) 20%,
        transparent 20%,
        transparent 40%,
        var(--primary-cyan) 40%,
        var(--primary-cyan) 60%,
        transparent 60%,
        transparent 80%,
        var(--primary-cyan) 80%,
        var(--primary-cyan) 100%
    );
    z-index: 0;
}

.process-step {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 153, 255, 0.1));
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Responsive */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 1rem 0;
}

/* Why Choose Section */
.why-choose {
    padding: 1rem 0;
    background: rgba(26, 26, 46, 0.3);
}

/* CTA Section */
.services-cta {
    padding: 1.5rem 0;
    background: transparent;
}

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

.services-cta h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn-secondary {
        width: 100%;
    }
}

/* ========================================
   PRODUCTS PAGE
======================================== */

/* Products Hero */
.products-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem 2rem;
}

.products-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.products-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 46, 0.9));
    z-index: 1;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

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

.products-hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.products-hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.products-hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.payment-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-cyan);
}

/* Featured Products Section */
.featured-products {
    padding: 2rem 0;
}

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

.products-bottom-info {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.success-metrics-section h3,
.faq-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.metrics-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(16, 21, 40, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 
                0 4px 12px rgba(0, 255, 255, 0.2);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    /* Removed gradient effect for better visibility */
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-align: center;
}

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

.faq-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(16, 21, 40, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 
                0 4px 12px rgba(0, 255, 255, 0.2);
}

.faq-card h4 {
    color: var(--primary-cyan);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.faq-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(16, 21, 40, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.featured {
    border-color: rgba(0, 255, 255, 0.4);
}

.service-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 
                0 4px 12px rgba(0, 255, 255, 0.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #0099ff 0%, #00ffff 100%);
    color: #000;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-image-compact {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.product-header h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-pricing-compact {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1rem 0;
}

.price {
    color: var(--primary-cyan);
    font-size: 1.5rem;
    font-weight: 700;
}

.price-usd {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.product-features-compact,
.service-features-compact {
    margin: 1rem 0;
}

.product-features-compact ul,
.service-features-compact ul {
    list-style: none;
    padding: 0;
}

.product-features-compact li,
.service-features-compact li {
    padding: 0.375rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.product-features-compact li::before,
.service-features-compact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 600;
}

.service-pricing-compact {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1rem 0;
}

.product-actions-compact {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.product-actions-compact .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Consultation CTA */
.consultation-cta {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5), rgba(16, 21, 40, 0.5));
}

.consultation-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.consultation-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.consultation-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.consultation-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.consultation-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.consultation-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Products Page Responsive */
@media (max-width: 1024px) {
    .all-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid-horizontal,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-hero {
        min-height: 50vh;
        padding: 3rem 1rem 2rem;
    }
    
    .products-hero .hero-actions {
        flex-direction: column;
    }
    
    .products-hero .hero-actions .btn-secondary {
        width: 100%;
    }
    
    .payment-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .all-products-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid-horizontal,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consultation-cta .cta-buttons {
        flex-direction: column;
    }
    
    .consultation-cta .cta-buttons .btn-secondary {
        width: 100%;
    }
    
    .consultation-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
======================================== */

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hardware acceleration for smooth scrolling */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize image loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   MODAL POPUPS
======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(14, 23, 85, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    max-width: 500px;
    width: 90%;
    margin: 20px;
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.modal-icon {
    font-size: 3rem;
    color: #00ffff;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 0 20px 30px 20px;
    text-align: center;
}

.modal-body h3 {
    color: #ffffff;
    margin: 0 0 15px 0;
    font-size: 1.8rem;
}

.modal-body p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.modal-actions {
    margin-top: 20px;
}

.loading-modal .modal-header {
    justify-content: center;
    padding: 30px 20px;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 255, 255, 0.2);
    border-left: 4px solid #00ffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.success-modal .modal-icon {
    color: #00ff00;
}

.error-modal .modal-icon {
    color: #ff4444;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Auto-close notifications */
.notification-auto-close {
    animation: fadeOut 0.3s ease 3s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}
