/* ============================================
   UTMIQ Landing Page Styles - Enhanced
   Dark/Light mode toggle, animations, modern design
   ============================================ */

/* ============================================
   CSS Variables - Theme Colors
   ============================================ */
:root[data-theme="dark"] {
    --bg-primary: #0a0e1a;
    --bg-secondary: #14182b;
    --bg-tertiary: #1e2439;
    --text-primary: #ffffff;
    --text-secondary: #e4e6eb;
    --text-tertiary: #a8adb7;
    --text-muted: #6b7280;
    --accent-primary: #5b8bd6;
    --accent-hover: #7ea8e8;
    --accent-glow: rgba(91, 139, 214, 0.3);
    --border-color: #1e2439;
    --border-hover: #2d3654;
    --success: #10b981;
    --shadow: rgba(0, 0, 0, 0.5);
}

:root[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #0a0e1a;
    --text-secondary: #1a1a1a;
    --text-tertiary: #4b5563;
    --text-muted: #6b7280;
    --accent-primary: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-glow: rgba(37, 99, 235, 0.2);
    --border-color: #e5e7eb;
    --border-hover: #d1d5db;
    --success: #059669;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', 'Roboto', system-ui, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

/* ============================================
   Theme Toggle Button
   ============================================ */
.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--accent-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--accent-primary);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ============================================
   Hero Section - Enhanced
   ============================================ */
.hero {
    position: relative;
    padding: 3rem 2rem 3rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    background: var(--bg-primary);
}

/* Particles Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Grid Background */
.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #06b6d4;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

/* Logo Section */
.hero-logo-wrapper {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-logo {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-primary);
    animation: float 4s ease-in-out infinite;
}

.logo-ring {
    position: absolute;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
}

.logo-ring.ring-1 {
    width: 100%;
    height: 100%;
    animation: pulse 2s ease-in-out infinite;
}

.logo-ring.ring-2 {
    width: 120%;
    height: 120%;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.logo-ring.ring-3 {
    width: 140%;
    height: 140%;
    animation: pulse 2s ease-in-out infinite 1s;
}

/* Title Section */
.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.15em;
    flex-wrap: wrap;
    line-height: 1.1;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 50%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    position: relative;
    transition: transform 0.3s ease;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }
.title-word:nth-child(5) { animation-delay: 0.5s; }

.title-word:hover {
    transform: translateY(-10px) scale(1.1);
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.subtitle-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: lineGrow 1s ease-out 0.8s backwards;
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-description .highlight {
    color: var(--accent-primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hero-description .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.hero-description .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* CTA Area */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--accent-glow);
}

.btn-primary i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.6;
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-tertiary);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    width: 100%;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.stat-card:nth-child(1) { animation-delay: 1.2s; }
.stat-card:nth-child(2) { animation-delay: 1.3s; }
.stat-card:nth-child(3) { animation-delay: 1.4s; }
.stat-card:nth-child(4) { animation-delay: 1.5s; }

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.stat-content p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
}

/* ============================================
   Products Section
   ============================================ */
.products {
    padding: 4rem 2rem;
    flex: 1;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.product-card {
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.product-card[data-animate] {
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.product-card:hover .card-glow {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-glow) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.product-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.coming-soon-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-tertiary);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-badge i {
    font-size: 0.7rem;
}

.product-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-tertiary);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.feature-tag i {
    font-size: 0.75rem;
    color: var(--success);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.product-link:hover::before {
    left: 100%;
}

.product-link:hover {
    background: var(--accent-hover);
    transform: translateX(5px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.product-link i {
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(5px);
}

.product-link.disabled {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: not-allowed;
    pointer-events: none;
}

.product-link.disabled:hover {
    transform: none;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.about-content[data-animate] {
    animation: fadeInUp 0.8s ease-out forwards;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 3rem 2rem 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-brand i {
    color: var(--accent-primary);
    animation: float 3s ease-in-out infinite;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-subtext {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.footer-contact {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-primary);
}

.footer-contact a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--accent-hover);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-subtitle-wrapper {
        gap: 1rem;
    }
    
    .subtitle-line {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .theme-toggle {
        top: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .hero {
        min-height: 100vh;
        padding: 3rem 1.5rem 2rem;
    }
    
    .hero-logo {
        width: 90px;
        height: 90px;
        font-size: 2.75rem;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        gap: 0.1em;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle-wrapper {
        margin-bottom: 1.25rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .stat-content h3 {
        font-size: 0.95rem;
    }
    
    .stat-content p {
        font-size: 0.8rem;
    }
    
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-cta {
        margin-bottom: 2rem;
        gap: 2rem;
    }

    .products {
        padding: 3.5rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .product-card {
        padding: 1.75rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about {
        padding: 3.5rem 1.5rem;
    }

    .about-text {
        font-size: 1.15rem;
    }

    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 100vh;
        padding: 3rem 1rem 2rem;
    }
    
    .hero-logo {
        width: 75px;
        height: 75px;
        font-size: 2.25rem;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .hero-text {
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
        margin-bottom: 0.75rem;
        gap: 0.08em;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
    }

    .hero-subtitle-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .subtitle-line {
        width: 50px;
        height: 1px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0;
    }

    .hero-stats {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 0.75rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-content h3 {
        font-size: 0.9rem;
    }
    
    .stat-content p {
        font-size: 0.75rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .hero-cta {
        margin-bottom: 1rem;
        gap: 1.5rem;
    }

    .products {
        padding: 3rem 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }
    
    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .product-name {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .product-features {
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .product-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .coming-soon-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        top: 1rem;
        right: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .about {
        padding: 3rem 1rem;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-subtext {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact {
        font-size: 0.9rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}